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 ###################################################################################### # DO NOT EDIT THIS FILE DIRECTLY - IT IS MANAGED BY OUR CONFIG MANAGEMENT SYSTEM. # # YOUR CHANGES WILL BE LOST # ###################################################################################### # # Script to update the list of CloudFlare ips # Used by the autossl disable cpanel hook and related excludes checking script # Ref SYSENG-14138 # tmpfile="/tmp/.cfips" # CF ips file, used by multiple scripts cfipsfile="/var/cache/cloudflareips" logfile="/var/log/checkautossl.log" _logger() { dstmp=$(date "+%b %d %T") echo "$dstmp $(hostname -s) /opt/bin/cron/updatecfips.sh: $1" >>${logfile} } status_code=$(curl -o "${tmpfile}" -sL https://www.cloudflare.com/ips-v4 -w '%{http_code}\n') if [ "${status_code}" != "200" ]; then _logger "Ips List download failed with status code: ${status_code}, exiting" rm -f "${tmpfile}" exit fi if [ -s "$tmpfile" ]; then if ! [ -z "$(tail -c1 ${tmpfile})" ]; then printf "\n" >>"${tmpfile}" fi else _logger "Downloaded ip list empty, exiting" exit fi if [ -s "${cfipsfile}" ]; then cffile_md5=$(md5sum "${cfipsfile}"|awk '{print $1}') else _logger "CF ips file does not exist, updating" cat "${tmpfile}" >"${cfipsfile}" rm -f "${tmpfile}" exit fi tmpfile_md5=$(md5sum "${tmpfile}"|awk '{print $1}') if [ "${tmpfile_md5}" != "${cffile_md5}" ]; then _logger "md5 mistmatch, overwriting and updating CF ips file" cat "${tmpfile}" >"${cfipsfile}" else _logger "CF ips file already uptodate" fi rm -f "${tmpfile}"