Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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