Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.10 /
test /
support /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-sr-x
2025-06-04 09:23
__init__.py
69.69
KB
-rw-r--r--
2025-06-04 09:23
bytecode_helper.py
1.61
KB
-rw-r--r--
2025-06-04 09:23
hashlib_helper.py
1.86
KB
-rw-r--r--
2025-06-04 09:23
import_helper.py
7.55
KB
-rw-r--r--
2025-06-04 09:23
interpreters.py
5.69
KB
-rw-r--r--
2025-06-04 09:23
logging_helper.py
916
B
-rw-r--r--
2025-06-04 09:23
os_helper.py
19.5
KB
-rw-r--r--
2025-06-04 09:23
script_helper.py
11.14
KB
-rw-r--r--
2025-06-04 09:23
socket_helper.py
11.21
KB
-rw-r--r--
2025-06-04 09:23
testresult.py
5.86
KB
-rw-r--r--
2025-06-04 09:23
threading_helper.py
6.49
KB
-rw-r--r--
2025-06-04 09:23
warnings_helper.py
6.44
KB
-rw-r--r--
2025-06-04 09:23
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