Linux hermes.alfaserver.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Apache
: 5.189.182.135 | : 216.73.216.28
36 Domain
8.4.14
begrecagr
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
etc /
alternatives /
[ HOME SHELL ]
Name
Size
Permission
Action
Mail
1014.48
KB
-rwxr-xr-x
Mail.1.gz
135.38
KB
-r--r--r--
apropos
48.52
KB
-rwxr-xr-x
apropos.1.gz
2.65
KB
-rw-r--r--
arptables
231.41
KB
-rwxr-xr-x
arptables-helper
1.27
KB
-rwxr-xr-x
arptables-man
4.39
KB
-rw-r--r--
arptables-restore
231.41
KB
-rwxr-xr-x
arptables-restore-man
935
B
-rw-r--r--
arptables-save
231.41
KB
-rwxr-xr-x
arptables-save-man
1.08
KB
-rw-r--r--
cifs-idmap-plugin
14.83
KB
-rwxr-xr-x
ebtables
231.41
KB
-rwxr-xr-x
ebtables-man
11.97
KB
-rw-r--r--
ebtables-restore
231.41
KB
-rwxr-xr-x
ebtables-save
231.41
KB
-rwxr-xr-x
ip6tables
231.41
KB
-rwxr-xr-x
ip6tables-restore
231.41
KB
-rwxr-xr-x
ip6tables-save
231.41
KB
-rwxr-xr-x
iptables
231.41
KB
-rwxr-xr-x
iptables-restore
231.41
KB
-rwxr-xr-x
iptables-save
231.41
KB
-rwxr-xr-x
ld
1.71
MB
-rwxr-xr-x
libnssckbi.so.x86_64
242.63
KB
-rwxr-xr-x
mail
1014.48
KB
-rwxr-xr-x
mail.1.gz
135.38
KB
-r--r--r--
mailx
1014.48
KB
-rwxr-xr-x
mailx.1.gz
135.38
KB
-r--r--r--
man
114.91
KB
-rwxr-xr-x
man.1.gz
11.33
KB
-rw-r--r--
modulecmd
654.01
KB
-rwxr-xr-x
modules.csh
109
B
-rw-r--r--
modules.sh
479
B
-rw-r--r--
nail
1014.48
KB
-rwxr-xr-x
nail.1.gz
135.38
KB
-r--r--r--
nc
52.01
KB
-rwxr-xr-x
nc-man
6.05
KB
-rw-r--r--
soelim
32.18
KB
-rwxr-xr-x
soelim.1.gz
1.89
KB
-rw-r--r--
whatis
48.52
KB
-rwxr-xr-x
whatis.1.gz
2.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : arptables-helper
#!/usr/bin/sh ARPTABLES_CONFIG=/etc/sysconfig/arptables # compat for removed initscripts dependency success() { echo "[ OK ]" return 0 } failure() { echo "[FAILED]" return 1 } start() { if [ ! -x /usr/sbin/arptables ]; then exit 4 fi # don't do squat if we don't have the config file if [ -f $ARPTABLES_CONFIG ]; then printf "Applying arptables firewall rules: " /usr/sbin/arptables-restore < $ARPTABLES_CONFIG && \ success || \ failure touch /var/lock/subsys/arptables else failure echo "Configuration file /etc/sysconfig/arptables missing" exit 6 fi } stop() { printf "Removing user defined chains: " arptables -X && success || failure printf "Flushing all chains: " arptables -F && success || failure printf "Resetting built-in chains to the default ACCEPT policy: " arptables -P INPUT ACCEPT && \ arptables -P OUTPUT ACCEPT && \ success || \ failure rm -f /var/lock/subsys/arptables } case "$1" in start) start ;; stop) stop ;; restart|reload) # "restart" is really just "start" as this isn't a daemon, # and "start" clears any pre-defined rules anyway. # This is really only here to make those who expect it happy start ;; condrestart|try-restart|force-reload) [ -e /var/lock/subsys/arptables ] && start ;; *) exit 2 esac exit 0
Close