Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.60
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python39 /
lib64 /
python3.9 /
test /
support /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-05-01 04:20
__init__.py
109.64
KB
-rw-r--r--
2025-06-03 22:17
bytecode_helper.py
1.57
KB
-rw-r--r--
2025-06-03 22:17
hashlib_helper.py
1.86
KB
-rw-r--r--
2025-06-03 22:17
logging_helper.py
916
B
-rw-r--r--
2025-06-03 22:17
script_helper.py
10.32
KB
-rw-r--r--
2025-06-03 22:17
socket_helper.py
11.18
KB
-rw-r--r--
2025-06-03 22:17
testresult.py
5.49
KB
-rw-r--r--
2025-06-03 22:17
warnings_helper.py
6.45
KB
-rw-r--r--
2025-06-03 22:17
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