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 /
cagefs /
cpanel /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-09-04 11:37
logs
[ DIR ]
drwxr-xr-x
2026-09-04 11:35
tmp
[ DIR ]
drwxr-xr-x
2026-09-04 11:37
cagefs_posteasyapache_hook.sh
720
B
-rwxr-xr-x
2026-07-31 12:29
cagefs_postupcp_hook.sh
1.01
KB
-rwxr-xr-x
2026-07-31 12:29
cpanel-delete-cagefs
761
B
-rwxr-xr-x
2026-07-31 12:29
cpanel-hooks-cagefs
1.64
KB
-rwxr-xr-x
2026-07-31 12:29
cpanel_hooks_manage.py
1.52
KB
-rwxr-xr-x
2026-07-31 12:29
cpanel_multiphp_hook.py
1.65
KB
-rwxr-xr-x
2026-07-31 12:29
rearrange_hook.py
1.21
KB
-rwxr-xr-x
2026-07-31 12:29
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 print_function from __future__ import absolute_import from __future__ import division from __future__ import unicode_literals from future import standard_library standard_library.install_aliases() from builtins import * import subprocess import simplejson as json import sys def describe(): descr = [ {'category': 'Whostmgr', 'event' : 'Lang::PHP::set_system_default_version', 'stage' : 'post', 'hook' : '/usr/share/cagefs/cpanel/cpanel_multiphp_hook.py', 'exectype' : 'script', }, {'category': 'Whostmgr', 'event' : 'Lang::PHP::ini_set_content', 'stage' : 'post', 'hook' : '/usr/share/cagefs/cpanel/cpanel_multiphp_hook.py', 'exectype' : 'script', }, {'category': 'Whostmgr', 'event' : 'Lang::PHP::ini_set_directives', 'stage' : 'post', 'hook' : '/usr/share/cagefs/cpanel/cpanel_multiphp_hook.py', 'exectype' : 'script', } ] return json.dumps(descr) if "__main__" == __name__: argv = sys.argv[1:] if '--describe' in argv: print(describe()) sys.exit(0) ret = subprocess.call(['/usr/share/cagefs/setup_multiphp_integration']) exit(ret)