Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
opt /
cloudlinux /
venv /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
Activate.ps1
8.82
KB
-rw-r--r--
activate
1.65
KB
-rw-r--r--
activate.csh
915
B
-rw-r--r--
activate.fish
2.14
KB
-rw-r--r--
alembic
229
B
-rwxr-xr-x
chardetect
237
B
-rwxr-xr-x
cl_sysctl
4.51
KB
-rwxr-xr-x
clcpapi
3.64
KB
-rwxr-xr-x
coverage
231
B
-rwxr-xr-x
coverage-3.11
231
B
-rwxr-xr-x
coverage3
231
B
-rwxr-xr-x
cpanel-dbmapping
3.83
KB
-rwxr-xr-x
da_suid_caller.py
686
B
-rw-r--r--
detect-requirements
238
B
-rwxr-xr-x
dodgy
224
B
-rwxr-xr-x
epylint
235
B
-rwxr-xr-x
f2py
232
B
-rwxr-xr-x
f2py3
232
B
-rwxr-xr-x
f2py3.11
232
B
-rwxr-xr-x
flake8
230
B
-rwxr-xr-x
futurize
231
B
-rwxr-xr-x
get_gprof
1.84
KB
-rwxr-xr-x
get_objgraph
1.63
KB
-rwxr-xr-x
isort
225
B
-rwxr-xr-x
isort-identify-imports
259
B
-rwxr-xr-x
jsonschema
229
B
-rwxr-xr-x
lvestats_config_reader.py
1.12
KB
-rw-r--r--
mako-render
229
B
-rwxr-xr-x
normalizer
260
B
-rwxr-xr-x
pasteurize
233
B
-rwxr-xr-x
pip
237
B
-rwxr-xr-x
pip3
237
B
-rwxr-xr-x
pip3.11
237
B
-rwxr-xr-x
plesk_suid_caller.py
905
B
-rw-r--r--
prospector
229
B
-rwxr-xr-x
py.test
237
B
-rwxr-xr-x
pycodestyle
228
B
-rwxr-xr-x
pydocstyle
229
B
-rwxr-xr-x
pyflakes
227
B
-rwxr-xr-x
pylint
233
B
-rwxr-xr-x
pylint-config
249
B
-rwxr-xr-x
pyreverse
239
B
-rwxr-xr-x
pysemver
225
B
-rwxr-xr-x
pytest
237
B
-rwxr-xr-x
python
15.59
KB
-rwxr-xr-x
python3
15.59
KB
-rwxr-xr-x
python3.11
15.59
KB
-rwxr-xr-x
raven
235
B
-rwxr-xr-x
symilar
235
B
-rwxr-xr-x
tap
223
B
-rwxr-xr-x
tappy
223
B
-rwxr-xr-x
undill
603
B
-rwxr-xr-x
virtualenv
254
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lvestats_config_reader.py
# coding: utf-8 # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2021 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT import argparse import sys import json from lvestats.plugins.generic.statsnotifier import get_stats_notifier_parameters from clcommon.utils import is_user_present SUPPORTED_PARAMS = ['notification_allowed'] if __name__ == '__main__': parser = argparse.ArgumentParser(description='Tool for getting parameters from config') parser.add_argument('-u', '--user', required=True, help='Specify username') parser.add_argument('parameter', help='Parameter to read', choices=SUPPORTED_PARAMS) args = parser.parse_args() target_user = args.user if not is_user_present(target_user): print(json.dumps({'error': f'No such user {target_user}'})) sys.exit(-1) try: result = get_stats_notifier_parameters(target_user) print(json.dumps({args.parameter: result})) sys.exit(0) except Exception as e: print(json.dumps({'error': str(e)})) sys.exit(-1)
Close