Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
l.v.e-manager /
cpanel /
Delete
Unzip
Name
Size
Permission
Date
Action
bin
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
cgi
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
configs
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
extension
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
hooks
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
images
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
images_enduser
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
lib
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
locales
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
lveversion
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
original
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
patches
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
resource_usage
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
spa
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
stats_bar
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
tmp
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
utils
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
cpanel_hooks_manage.py
1.14
KB
-rwxr-xr-x
2026-08-11 11:38
lvemanager-cpanel64.conf
222
B
-rw-r--r--
2026-08-11 11:38
lvemanager-cpanel66.conf
218
B
-rw-r--r--
2026-08-11 11:38
lvemanager-native.conf
222
B
-rw-r--r--
2026-08-11 11:38
Save
Rename
#!/opt/cloudlinux/venv/bin/python3 -bb # coding:utf-8 # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT from __future__ import absolute_import from __future__ import division from __future__ import print_function import sys from clcommon.public_hooks.bundle import cpanel from clcommon.public_hooks import setup_logger_and_sentry _BASE_DIR = '/usr/share/l.v.e-manager' _HOOKS = [ cpanel.Hook( _BASE_DIR + '/utils/cache_phpdata.py --native', 'Whostmgr', 'Lang::PHP::set_system_default_version', 'post'), ] def main(argv): """ Install or delete cpanel event hook """ if "-i" in argv: success = cpanel.install_hooks(_HOOKS) elif "-d" in argv: success = cpanel.remove_hooks(_HOOKS) else: raise NotImplementedError('unknown option') return int(not success) if "__main__" == __name__: # in fact this is only wrapper for # hooks logic located in cllib # so we can just use cllib sentry here setup_logger_and_sentry() sys.exit(main(sys.argv[1:]))