Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
python3 /
dist-packages /
numpy /
distutils /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
checks
[ DIR ]
drwxr-xr-x
command
[ DIR ]
drwxr-xr-x
fcompiler
[ DIR ]
drwxr-xr-x
mingw
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
__config__.py
3.99
KB
-rw-r--r--
__init__.py
1.52
KB
-rw-r--r--
__init__.pyi
119
B
-rw-r--r--
_shell_utils.py
2.55
KB
-rw-r--r--
ccompiler.py
26.91
KB
-rw-r--r--
ccompiler_opt.py
94.54
KB
-rw-r--r--
conv_template.py
9.31
KB
-rw-r--r--
core.py
7.97
KB
-rw-r--r--
cpuinfo.py
22.13
KB
-rw-r--r--
exec_command.py
10.11
KB
-rw-r--r--
extension.py
3.28
KB
-rw-r--r--
from_template.py
7.73
KB
-rw-r--r--
intelccompiler.py
4.13
KB
-rw-r--r--
lib2def.py
3.56
KB
-rw-r--r--
line_endings.py
1.98
KB
-rw-r--r--
log.py
2.5
KB
-rw-r--r--
mingw32ccompiler.py
24.82
KB
-rw-r--r--
misc_util.py
85.18
KB
-rw-r--r--
msvc9compiler.py
2.14
KB
-rw-r--r--
msvccompiler.py
1.88
KB
-rw-r--r--
npy_pkg_config.py
12.67
KB
-rw-r--r--
numpy_distribution.py
634
B
-rw-r--r--
pathccompiler.py
713
B
-rw-r--r--
setup.py
634
B
-rw-r--r--
system_info.py
107.05
KB
-rw-r--r--
unixccompiler.py
5.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : log.py
# Colored log import sys from distutils.log import * # noqa: F403 from distutils.log import Log as old_Log from distutils.log import _global_log from numpy.distutils.misc_util import (red_text, default_text, cyan_text, green_text, is_sequence, is_string) def _fix_args(args,flag=1): if is_string(args): return args.replace('%', '%%') if flag and is_sequence(args): return tuple([_fix_args(a, flag=0) for a in args]) return args class Log(old_Log): def _log(self, level, msg, args): if level >= self.threshold: if args: msg = msg % _fix_args(args) if 0: if msg.startswith('copying ') and msg.find(' -> ') != -1: return if msg.startswith('byte-compiling '): return print(_global_color_map[level](msg)) sys.stdout.flush() def good(self, msg, *args): """ If we log WARN messages, log this message as a 'nice' anti-warn message. """ if WARN >= self.threshold: if args: print(green_text(msg % _fix_args(args))) else: print(green_text(msg)) sys.stdout.flush() _global_log.__class__ = Log good = _global_log.good def set_threshold(level, force=False): prev_level = _global_log.threshold if prev_level > DEBUG or force: # If we're running at DEBUG, don't change the threshold, as there's # likely a good reason why we're running at this level. _global_log.threshold = level if level <= DEBUG: info('set_threshold: setting threshold to DEBUG level,' ' it can be changed only with force argument') else: info('set_threshold: not changing threshold from DEBUG level' ' %s to %s' % (prev_level, level)) return prev_level def get_threshold(): return _global_log.threshold def set_verbosity(v, force=False): prev_level = _global_log.threshold if v < 0: set_threshold(ERROR, force) elif v == 0: set_threshold(WARN, force) elif v == 1: set_threshold(INFO, force) elif v >= 2: set_threshold(DEBUG, force) return {FATAL:-2,ERROR:-1,WARN:0,INFO:1,DEBUG:2}.get(prev_level, 1) _global_color_map = { DEBUG:cyan_text, INFO:default_text, WARN:red_text, ERROR:red_text, FATAL:red_text } # don't use INFO,.. flags in set_verbosity, these flags are for set_threshold. set_verbosity(0, force=True)
Close