Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
laragon /
bin /
python /
python-3.10 /
Lib /
distutils /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxrwxrwx
command
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
README
255
B
-rw-rw-rw-
__init__.py
561
B
-rw-rw-rw-
_msvccompiler.py
20.06
KB
-rw-rw-rw-
archive_util.py
8.62
KB
-rw-rw-rw-
bcppcompiler.py
14.93
KB
-rw-rw-rw-
ccompiler.py
47.4
KB
-rw-rw-rw-
cmd.py
18.05
KB
-rw-rw-rw-
config.py
4.84
KB
-rw-rw-rw-
core.py
8.9
KB
-rw-rw-rw-
cygwinccompiler.py
16.39
KB
-rw-rw-rw-
debug.py
144
B
-rw-rw-rw-
dep_util.py
3.5
KB
-rw-rw-rw-
dir_util.py
7.8
KB
-rw-rw-rw-
dist.py
50.43
KB
-rw-rw-rw-
errors.py
3.59
KB
-rw-rw-rw-
extension.py
10.52
KB
-rw-rw-rw-
fancy_getopt.py
17.81
KB
-rw-rw-rw-
file_util.py
8.19
KB
-rw-rw-rw-
filelist.py
12.85
KB
-rw-rw-rw-
log.py
2
KB
-rw-rw-rw-
msvc9compiler.py
30.51
KB
-rw-rw-rw-
msvccompiler.py
23.62
KB
-rw-rw-rw-
spawn.py
4.68
KB
-rw-rw-rw-
sysconfig.py
12.6
KB
-rw-rw-rw-
text_file.py
12.47
KB
-rw-rw-rw-
unixccompiler.py
14.79
KB
-rw-rw-rw-
util.py
21.09
KB
-rw-rw-rw-
version.py
12.56
KB
-rw-rw-rw-
versionpredicate.py
5.17
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : log.py
"""A simple log mechanism styled after PEP 282.""" # The class here is styled after PEP 282 so that it could later be # replaced with a standard Python logging implementation. DEBUG = 1 INFO = 2 WARN = 3 ERROR = 4 FATAL = 5 import sys class Log: def __init__(self, threshold=WARN): self.threshold = threshold def _log(self, level, msg, args): if level not in (DEBUG, INFO, WARN, ERROR, FATAL): raise ValueError('%s wrong log level' % str(level)) if level >= self.threshold: if args: msg = msg % args if level in (WARN, ERROR, FATAL): stream = sys.stderr else: stream = sys.stdout try: stream.write('%s\n' % msg) except UnicodeEncodeError: # emulate backslashreplace error handler encoding = stream.encoding msg = msg.encode(encoding, "backslashreplace").decode(encoding) stream.write('%s\n' % msg) stream.flush() def log(self, level, msg, *args): self._log(level, msg, args) def debug(self, msg, *args): self._log(DEBUG, msg, args) def info(self, msg, *args): self._log(INFO, msg, args) def warn(self, msg, *args): self._log(WARN, msg, args) def error(self, msg, *args): self._log(ERROR, msg, args) def fatal(self, msg, *args): self._log(FATAL, msg, args) _global_log = Log() log = _global_log.log debug = _global_log.debug info = _global_log.info warn = _global_log.warn error = _global_log.error fatal = _global_log.fatal def set_threshold(level): # return the old threshold for use from tests old = _global_log.threshold _global_log.threshold = level return old def set_verbosity(v): if v <= 0: set_threshold(WARN) elif v == 1: set_threshold(INFO) elif v >= 2: set_threshold(DEBUG)
Close