Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
tuned /
Delete
Unzip
Name
Size
Permission
Date
Action
admin
[ DIR ]
drwxr-xr-x
2024-06-16 05:57
daemon
[ DIR ]
drwxr-xr-x
2024-06-16 05:57
exports
[ DIR ]
drwxr-xr-x
2024-06-16 05:57
hardware
[ DIR ]
drwxr-xr-x
2024-06-16 05:57
monitors
[ DIR ]
drwxr-xr-x
2024-06-16 05:57
plugins
[ DIR ]
drwxr-xr-x
2024-06-16 05:57
profiles
[ DIR ]
drwxr-xr-x
2024-06-16 05:57
storage
[ DIR ]
drwxr-xr-x
2024-06-16 05:57
units
[ DIR ]
drwxr-xr-x
2024-06-16 05:57
utils
[ DIR ]
drwxr-xr-x
2024-06-16 05:57
__init__.py
953
B
-rw-r--r--
2019-03-22 02:40
__init__.pyc
301
B
-rw-r--r--
2022-09-21 16:18
__init__.pyo
301
B
-rw-r--r--
2022-09-21 16:18
consts.py
4.4
KB
-rw-r--r--
2019-03-22 02:40
consts.pyc
4.67
KB
-rw-r--r--
2022-09-21 16:18
consts.pyo
4.67
KB
-rw-r--r--
2022-09-21 16:18
exceptions.py
568
B
-rw-r--r--
2019-03-22 02:40
exceptions.pyc
1.22
KB
-rw-r--r--
2022-09-21 16:18
exceptions.pyo
1.22
KB
-rw-r--r--
2022-09-21 16:18
logs.py
3.75
KB
-rw-r--r--
2019-03-22 02:40
logs.pyc
5.6
KB
-rw-r--r--
2022-09-21 16:18
logs.pyo
5.56
KB
-rw-r--r--
2022-09-21 16:18
patterns.py
335
B
-rw-r--r--
2019-03-22 02:40
patterns.pyc
937
B
-rw-r--r--
2022-09-21 16:18
patterns.pyo
937
B
-rw-r--r--
2022-09-21 16:18
version.py
73
B
-rw-r--r--
2019-03-22 02:40
version.pyc
245
B
-rw-r--r--
2022-09-21 16:18
version.pyo
245
B
-rw-r--r--
2022-09-21 16:18
Save
Rename
import tuned.logs import sys import traceback exception_logger = tuned.logs.get() class TunedException(Exception): """ """ def log(self, logger = None): if logger is None: logger = exception_logger logger.error(str(self)) self._log_trace(logger) def _log_trace(self, logger): (exc_type, exc_value, exc_traceback) = sys.exc_info() if exc_value != self: logger.debug("stack trace is no longer available") else: exception_info = "".join(traceback.format_exception(exc_type, exc_value, exc_traceback)).rstrip() logger.debug(exception_info)