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 /
lve /
dbgovernor /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-09-04 11:34
chek_mysql_rpms_local
1.79
KB
-rwxr-xr-x
2026-08-06 17:01
cpanel-common-lve
2.16
KB
-rwxr-xr-x
2026-08-06 17:01
cpanel-delete-hooks
1.98
KB
-rwxr-xr-x
2026-08-06 17:01
cpanel-install-hooks
3.48
KB
-rwxr-xr-x
2026-08-06 17:01
cpanel-mysql-url-detect.pm
1.6
KB
-rwxr-xr-x
2026-08-06 17:01
cpanel_map_rebuilder
1.5
KB
-rwxr-xr-x
2026-08-06 17:01
dbgovernor_map
4.15
KB
-rwxr-xr-x
2026-08-06 17:01
dbgovernor_map.py
3.16
KB
-rwxr-xr-x
2026-08-06 17:01
dbgovernor_map_plesk.py
4.21
KB
-rwxr-xr-x
2026-08-06 17:01
dbgovernor_version.py
28
B
-rw-r--r--
2026-08-06 17:01
dbgovernor_watchdog.py
7.03
KB
-rwxr-xr-x
2026-08-06 17:01
detect-cpanel-mysql-version.pm
4.83
KB
-rwxr-xr-x
2026-08-06 17:01
map_hook
664
B
-rwxr-xr-x
2026-08-06 17:01
merge_logs.py
984
B
-rwxr-xr-x
2026-08-06 17:01
mysql_backup.sh
24.38
KB
-rwxr-xr-x
2026-08-06 17:01
mysql_hook
42
B
-rwxr-xr-x
2026-08-06 17:01
sentry_cleaner.sh
1.21
KB
-rwxr-xr-x
2026-08-06 17:01
sentry_daemon.py
19.72
KB
-rwxr-xr-x
2026-08-06 17:01
sentry_sdk_wrapper.py
7.14
KB
-rwxr-xr-x
2026-08-06 17:01
set_cpanel_mysql_version.pm
381
B
-rwxr-xr-x
2026-08-06 17:01
sync_hook
501
B
-rwxr-xr-x
2026-08-06 17:01
Save
Rename
#!/usr/bin/bash ################################################### # Utils for hooks installation or removing # ################################################### . /usr/share/lve/dbgovernor/scripts/cpanel-common-lve common_path_of_cpanel="/usr/share/lve/dbgovernor/cpanel" #################################################### # Cpanel hooks # #################################################### postupcp="/scripts/postupcp" mysqluserupdate1="/usr/local/cpanel/hooks/mysql/adduser" mysqluserupdate2="/usr/local/cpanel/hooks/mysql/deluser" mysqlusercreate="/scripts/postwwwacct" mysqluserkill="/scripts/postkillacct" #################################################### # Hooks list # #################################################### postupcp_hook="$common_path_of_cpanel/upgrade-mysql-disabler.sh" map_hook="/usr/share/lve/dbgovernor/scripts/map_hook" mysql_hook="/usr/share/lve/dbgovernor/scripts/mysql_hook" old_map_hook="/usr/share/lve/dbgovernor/utils/dbgovernor_map" pkg_sync_hook='/usr/share/lve/dbgovernor/scripts/sync_hook "$@"' old_sync_hook="/usr/share/lve/dbgovernor/governor_package_limitting.py sync" createHookHeader "$postupcp" checkHookString "$postupcp" "$postupcp_hook" "dbgovernor" removeEmptyStringsFromFile "$postupcp" createHookHeader "$mysqlusercreate" checkHookString "$mysqlusercreate" "$postupcp_hook" "dbgovernor" checkHookString "$mysqlusercreate" "$pkg_sync_hook" "dbgovernor" removeHookString "$mysqlusercreate" "$old_sync_hook" removeEmptyStringsFromFile "$mysqlusercreate" createHookHeader "$mysqluserkill" checkHookString "$mysqluserkill" "$postupcp_hook" "dbgovernor" removeEmptyStringsFromFile "$mysqluserkill" #createHookHeader "$mysqluserupdate1" #checkHookStringParam "$mysqluserupdate1" "$mysqlupdate_hook" "dbgovernor" #rewriteDBUserHook "$mysqluserupdate1" #removeEmptyStringsFromFile "$mysqluserupdate1" # #createHookHeader "$mysqluserupdate2" #checkHookStringParam "$mysqluserupdate2" "$mysqlupdate_hook" "dbgovernor" #rewriteDBUserHook "$mysqluserupdate2" #removeEmptyStringsFromFile "$mysqluserupdate2" /usr/local/cpanel/bin/register_hooks #################################################### # Standardized hooks list # #################################################### hook_manager="/usr/local/cpanel/bin/manage_hooks" # Try to delete hooks from previous version of governor "$hook_manager" del script "$old_map_hook" --category=Whostmgr --event=Accounts::Create --manual 2>&1 >/dev/null "$hook_manager" del script "$old_map_hook" --category=Whostmgr --event=Accounts::Modify --manual 2>&1 >/dev/null "$hook_manager" del script "$old_map_hook" --category=Whostmgr --event=Accounts::Remove --manual 2>&1 >/dev/null "$hook_manager" add script "$map_hook" --category=Whostmgr --event=Accounts::Create --stage=post --escalateprivs --manual "$hook_manager" add script "$map_hook" --category=Whostmgr --event=Accounts::Modify --stage=post --escalateprivs --manual "$hook_manager" add script "$map_hook" --category=Whostmgr --event=Accounts::Remove --stage=post --escalateprivs --manual "$hook_manager" add script "$mysql_hook" --category=Cpanel --event=UAPI::Mysql::create_user --stage=post --escalateprivs --manual "$hook_manager" add script "$mysql_hook" --category=Cpanel --event=UAPI::Mysql::rename_user --stage=post --escalateprivs --manual "$hook_manager" add script "$mysql_hook" --category=Cpanel --event=UAPI::Mysql::delete_user --stage=post --escalateprivs --manual echo