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
#!/usr/bin/bash ################################################### # Utils for hooks installation or removing # ################################################### . /opt/cloudlinux/venv/usr/share/python-cllib/scripts/cl-common #################################################### # CPanel & EasyApache hooks # #################################################### posteasyapache="/scripts/posteasyapache" postupcp="/scripts/postupcp" target="cagefs" common_path="/usr/share/cagefs/cpanel" #################################################### # Hooks list # #################################################### posteasyapache_hook="$common_path/cagefs_posteasyapache_hook.sh" postupcp_hook="$common_path/cagefs_postupcp_hook.sh" writeToLog "Install cPanel hooks" "$common_path" #Install posteasyapache hook createHookHeader "$posteasyapache" "$target" "$common_path" showBar 1 writeToLog "posteasyapache: Headers checked" "$common_path" checkHookString "$posteasyapache" "$posteasyapache_hook" "CageFS Version $VERSION. Refresh CageFS after EasyApache run" removeEmptyStringsFromFile "$posteasyapache" showBar 2 writeToLog "posteasyapache checked" "$common_path" #Install hook to update CageFS after update of CPanel createHookHeader "$postupcp" "$target" "$common_path" showBar 3 writeToLog "postupcp: Headers checked" "$common_path" checkHookString "$postupcp" "$postupcp_hook" "CageFS Version $VERSION. Update CageFS after update of CPanel" removeEmptyStringsFromFile "$postupcp" showBar 4 writeToLog "postupcp checked" "$common_path" writeToLog "Done installing hooks" "$common_path" echo