Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.11 /
test /
support /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-07 20:15
__init__.py
73.46
KB
-rw-r--r--
2024-11-30 21:22
bytecode_helper.py
1.61
KB
-rw-r--r--
2024-11-30 21:22
hashlib_helper.py
1.86
KB
-rw-r--r--
2024-11-30 21:22
import_helper.py
8.56
KB
-rw-r--r--
2024-11-30 21:22
interpreters.py
5.69
KB
-rw-r--r--
2024-11-30 21:22
logging_helper.py
916
B
-rw-r--r--
2024-11-30 21:22
os_helper.py
22.1
KB
-rw-r--r--
2024-11-30 21:22
script_helper.py
11.44
KB
-rw-r--r--
2024-11-30 21:22
socket_helper.py
11.33
KB
-rw-r--r--
2024-11-30 21:22
testresult.py
5.88
KB
-rw-r--r--
2024-11-30 21:22
threading_helper.py
7.57
KB
-rw-r--r--
2024-11-30 21:22
warnings_helper.py
6.7
KB
-rw-r--r--
2024-11-30 21:22
Save
Rename
import logging.handlers class TestHandler(logging.handlers.BufferingHandler): def __init__(self, matcher): # BufferingHandler takes a "capacity" argument # so as to know when to flush. As we're overriding # shouldFlush anyway, we can set a capacity of zero. # You can call flush() manually to clear out the # buffer. logging.handlers.BufferingHandler.__init__(self, 0) self.matcher = matcher def shouldFlush(self): return False def emit(self, record): self.format(record) self.buffer.append(record.__dict__) def matches(self, **kwargs): """ Look for a saved dict whose keys/values match the supplied arguments. """ result = False for d in self.buffer: if self.matcher.matches(d, **kwargs): result = True break return result