Linux biogene 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache
: 46.101.124.208 | : 3.144.224.216
Cant Read [ /etc/named.conf ]
5.6.40-0+deb8u12
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 /
python2.7 /
dist-packages /
setuptools /
[ HOME SHELL ]
Name
Size
Permission
Action
command
[ DIR ]
drwxr-xr-x
extern
[ DIR ]
drwxr-xr-x
__init__.py
4.92
KB
-rw-r--r--
archive_util.py
6.46
KB
-rw-r--r--
cli-32.exe
64
KB
-rw-r--r--
cli-64.exe
73
KB
-rw-r--r--
cli.exe
64
KB
-rw-r--r--
config.py
16.03
KB
-rw-r--r--
depends.py
5.7
KB
-rw-r--r--
dist.py
36.67
KB
-rw-r--r--
extension.py
1.69
KB
-rw-r--r--
glob.py
5.08
KB
-rw-r--r--
gui-32.exe
64
KB
-rw-r--r--
gui-64.exe
73.5
KB
-rw-r--r--
gui.exe
64
KB
-rw-r--r--
launch.py
787
B
-rw-r--r--
lib2to3_ex.py
1.97
KB
-rw-r--r--
monkey.py
5.31
KB
-rw-r--r--
msvc.py
36.22
KB
-rw-r--r--
namespaces.py
3.14
KB
-rw-r--r--
package_index.py
39.03
KB
-rw-r--r--
py26compat.py
679
B
-rw-r--r--
py27compat.py
583
B
-rw-r--r--
py31compat.py
1.61
KB
-rw-r--r--
py33compat.py
998
B
-rw-r--r--
py36compat.py
2.82
KB
-rw-r--r--
sandbox.py
14.02
KB
-rw-r--r--
script (dev).tmpl
201
B
-rw-r--r--
script.tmpl
138
B
-rw-r--r--
site-patch.py
2.25
KB
-rw-r--r--
ssl_support.py
8.03
KB
-rw-r--r--
unicode_utils.py
996
B
-rw-r--r--
version.py
144
B
-rw-r--r--
windows_support.py
714
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : py33compat.py
import dis import array import collections from setuptools.extern import six OpArg = collections.namedtuple('OpArg', 'opcode arg') class Bytecode_compat(object): def __init__(self, code): self.code = code def __iter__(self): """Yield '(op,arg)' pair for each operation in code object 'code'""" bytes = array.array('b', self.code.co_code) eof = len(self.code.co_code) ptr = 0 extended_arg = 0 while ptr < eof: op = bytes[ptr] if op >= dis.HAVE_ARGUMENT: arg = bytes[ptr + 1] + bytes[ptr + 2] * 256 + extended_arg ptr += 3 if op == dis.EXTENDED_ARG: long_type = six.integer_types[-1] extended_arg = arg * long_type(65536) continue else: arg = None ptr += 1 yield OpArg(op, arg) Bytecode = getattr(dis, 'Bytecode', Bytecode_compat)
Close