Linux premium71.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
Server IP : 198.187.29.8 & Your IP : 216.73.216.206
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
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:10
activate
1.65
KB
-rw-r--r--
2025-04-17 13:10
activate.csh
915
B
-rw-r--r--
2025-04-17 13:10
activate.fish
2.14
KB
-rw-r--r--
2025-04-17 13:10
alembic
229
B
-rwxr-xr-x
2025-04-17 13:10
chardetect
237
B
-rwxr-xr-x
2025-04-17 13:10
cl_sysctl
4.51
KB
-rwxr-xr-x
2025-05-13 09:56
clcpapi
3.64
KB
-rwxr-xr-x
2025-05-13 09:56
coverage
231
B
-rwxr-xr-x
2025-04-17 13:10
coverage-3.11
231
B
-rwxr-xr-x
2025-04-17 13:10
coverage3
231
B
-rwxr-xr-x
2025-04-17 13:10
cpanel-dbmapping
3.83
KB
-rwxr-xr-x
2025-05-13 09:56
da_suid_caller.py
686
B
-rw-r--r--
2025-05-13 09:56
detect-requirements
238
B
-rwxr-xr-x
2025-04-17 13:10
dodgy
224
B
-rwxr-xr-x
2025-04-17 13:10
epylint
235
B
-rwxr-xr-x
2025-04-17 13:10
f2py
232
B
-rwxr-xr-x
2025-04-17 13:10
f2py3
232
B
-rwxr-xr-x
2025-04-17 13:10
f2py3.11
232
B
-rwxr-xr-x
2025-04-17 13:10
flake8
230
B
-rwxr-xr-x
2025-04-17 13:10
futurize
231
B
-rwxr-xr-x
2025-04-17 13:10
get_gprof
1.84
KB
-rwxr-xr-x
2025-04-17 13:10
get_objgraph
1.63
KB
-rwxr-xr-x
2025-04-17 13:10
isort
225
B
-rwxr-xr-x
2025-04-17 13:10
isort-identify-imports
259
B
-rwxr-xr-x
2025-04-17 13:10
jsonschema
229
B
-rwxr-xr-x
2025-04-17 13:10
lvestats_config_reader.py
1.12
KB
-rw-r--r--
2024-12-23 16:20
mako-render
229
B
-rwxr-xr-x
2025-04-17 13:10
normalizer
260
B
-rwxr-xr-x
2025-04-17 13:10
pasteurize
233
B
-rwxr-xr-x
2025-04-17 13:10
pip
237
B
-rwxr-xr-x
2025-04-17 13:10
pip3
237
B
-rwxr-xr-x
2025-04-17 13:10
pip3.11
237
B
-rwxr-xr-x
2025-04-17 13:10
plesk_suid_caller.py
905
B
-rw-r--r--
2025-05-13 09:56
prospector
229
B
-rwxr-xr-x
2025-04-17 13:10
py.test
237
B
-rwxr-xr-x
2025-04-17 13:10
pycodestyle
228
B
-rwxr-xr-x
2025-04-17 13:10
pydocstyle
229
B
-rwxr-xr-x
2025-04-17 13:10
pyflakes
227
B
-rwxr-xr-x
2025-04-17 13:10
pylint
233
B
-rwxr-xr-x
2025-04-17 13:10
pylint-config
249
B
-rwxr-xr-x
2025-04-17 13:10
pyreverse
239
B
-rwxr-xr-x
2025-04-17 13:10
pysemver
225
B
-rwxr-xr-x
2025-04-17 13:10
pytest
237
B
-rwxr-xr-x
2025-04-17 13:10
python
15.59
KB
-rwxr-xr-x
2025-04-25 15:37
python3
15.59
KB
-rwxr-xr-x
2025-04-25 15:37
python3.11
15.59
KB
-rwxr-xr-x
2025-04-25 15:37
raven
235
B
-rwxr-xr-x
2025-04-17 13:10
symilar
235
B
-rwxr-xr-x
2025-04-17 13:10
tap
223
B
-rwxr-xr-x
2025-04-17 13:10
tappy
223
B
-rwxr-xr-x
2025-04-17 13:10
undill
603
B
-rwxr-xr-x
2025-04-17 13:10
virtualenv
254
B
-rwxr-xr-x
2025-04-17 13:10
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)