Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
alternatives /
Delete
Unzip
Name
Size
Permission
Date
Action
apropos
48.52
KB
-rwxr-xr-x
2025-09-21 12:57
apropos.1.gz
2.65
KB
-rw-r--r--
2025-09-21 12:57
arptables
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
arptables-helper
1.27
KB
-rwxr-xr-x
2025-02-04 03:35
arptables-man
4.39
KB
-rw-r--r--
2025-02-04 03:47
arptables-restore
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
arptables-restore-man
935
B
-rw-r--r--
2025-02-04 03:47
arptables-save
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
arptables-save-man
1.08
KB
-rw-r--r--
2025-02-04 03:47
cifs-idmap-plugin
14.83
KB
-rwxr-xr-x
2025-11-27 15:36
ebtables
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
ebtables-man
11.97
KB
-rw-r--r--
2025-02-04 03:47
ebtables-restore
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
ebtables-save
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
ip6tables
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
ip6tables-restore
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
ip6tables-save
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
iptables
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
iptables-restore
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
iptables-save
231.41
KB
-rwxr-xr-x
2025-02-04 03:47
ld
1.71
MB
-rwxr-xr-x
2025-12-18 14:37
libnssckbi.so.x86_64
242.63
KB
-rwxr-xr-x
2024-12-17 11:04
man
114.91
KB
-rwxr-xr-x
2025-09-21 12:57
man.1.gz
11.33
KB
-rw-r--r--
2025-09-21 12:57
mta
856.39
KB
-rwxr-sr-x
2023-09-26 17:37
mta-aliasesman
1.52
KB
-rw-r--r--
2023-09-26 17:37
mta-editmap
81.87
KB
-rwxr-xr-x
2023-09-26 17:37
mta-editmapman
1.12
KB
-rw-r--r--
2023-09-26 17:37
mta-mailq
856.39
KB
-rwxr-sr-x
2023-09-26 17:37
mta-mailqman
1.49
KB
-rw-r--r--
2023-09-26 17:37
mta-makemap
86.18
KB
-rwxr-xr-x
2023-09-26 17:37
mta-makemapman
1.75
KB
-rw-r--r--
2023-09-26 17:37
mta-newaliases
856.39
KB
-rwxr-sr-x
2023-09-26 17:37
mta-newaliasesman
681
B
-rw-r--r--
2023-09-26 17:37
mta-pam
76
B
-rw-r--r--
2023-09-26 17:37
mta-rmail
65.77
KB
-rwxr-xr-x
2023-09-26 17:37
mta-rmailman
695
B
-rw-r--r--
2023-09-26 17:37
mta-sendmail
856.39
KB
-rwxr-sr-x
2023-09-26 17:37
mta-sendmailman
6.9
KB
-rw-r--r--
2023-09-26 17:37
soelim
32.18
KB
-rwxr-xr-x
2022-02-01 10:44
soelim.1.gz
1.89
KB
-rw-r--r--
2022-02-01 10:44
spf
22.45
KB
-rwxr-xr-x
2022-02-16 08:24
spf-daemon
17.96
KB
-rw-r--r--
2022-02-16 08:24
spfquery-man-page
5.34
KB
-rw-r--r--
2022-02-16 08:24
whatis
48.52
KB
-rwxr-xr-x
2025-09-21 12:57
whatis.1.gz
2.49
KB
-rw-r--r--
2025-09-21 12:57
Save
Rename
#!/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