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.10
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 : __init__.py
from _ctypes.dummy import resize from _ctypes.basics import _CData, sizeof, alignment, byref, addressof,\ ArgumentError, COMError from _ctypes.primitive import _SimpleCData from _ctypes.pointer import _Pointer, _cast_addr from _ctypes.pointer import POINTER, pointer, _pointer_type_cache from _ctypes.function import CFuncPtr, call_function from _ctypes.dll import dlopen from _ctypes.structure import Structure from _ctypes.array import Array from _ctypes.builtin import ( _memmove_addr, _memset_addr, _string_at_addr, _wstring_at_addr, set_conversion_mode) from _ctypes.union import Union import os as _os if _os.name in ("nt", "ce"): from _rawffi import FormatError from _rawffi import check_HRESULT as _check_HRESULT try: from __pypy__ import builtinify except ImportError: builtinify = lambda f: f @builtinify def CopyComPointer(src, dst): from ctypes import c_void_p, cast if src: hr = src[0][0].AddRef(src) if hr & 0x80000000: return hr dst[0] = cast(src, c_void_p).value return 0 del builtinify LoadLibrary = dlopen from _rawffi import FUNCFLAG_STDCALL, FUNCFLAG_CDECL, FUNCFLAG_PYTHONAPI from _rawffi import FUNCFLAG_USE_ERRNO, FUNCFLAG_USE_LASTERROR from _ctypes.builtin import get_errno, set_errno if _os.name in ("nt", "ce"): from _ctypes.builtin import get_last_error, set_last_error __version__ = '1.1.0' #XXX platform dependant? RTLD_LOCAL = 0 RTLD_GLOBAL = 256
Close