Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
alternatives /
Delete
Unzip
Name
Size
Permission
Date
Action
Mail
1013.25
KB
-rwxr-xr-x
2025-12-17 11:27
Mail.1.gz
135.38
KB
-r--r--r--
2025-12-17 11:27
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
2026-07-23 19:31
cloudlinux-statistics
5.77
MB
-rwxr-xr-x
2026-08-20 13:34
cloudlinux-statsnotifier
2.24
MB
-rwxr-xr-x
2026-08-20 13:34
cloudlinux-top
1.26
MB
-rwxr-xr-x
2026-08-20 13:34
dbgovchart
10.37
MB
-rwxr-xr-x
2026-08-20 13:34
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
2026-04-04 21:15
libnssckbi.so.x86_64
294.52
KB
-rwxr-xr-x
2026-08-03 14:23
lve-bursting-cleanup
5.62
MB
-rwxr-xr-x
2026-08-20 13:34
lve-bursting-info
5.62
MB
-rwxr-xr-x
2026-08-20 13:34
lve-create-db
6.78
MB
-rwxr-xr-x
2026-08-20 13:34
lve-read-snapshot
2.53
MB
-rwxr-xr-x
2026-08-20 13:34
lvechart
10.56
MB
-rwxr-xr-x
2026-08-20 13:34
lveinfo
5.85
MB
-rwxr-xr-x
2026-08-20 13:34
lvestats
16.86
MB
-rwxr-xr-x
2026-08-20 13:34
lvestats-burstwatcher
1.91
MB
-rwxr-xr-x
2026-08-20 13:34
mail
1013.25
KB
-rwxr-xr-x
2025-12-17 11:27
mail.1.gz
135.38
KB
-r--r--r--
2025-12-17 11:27
mailx
1013.25
KB
-rwxr-xr-x
2025-12-17 11:27
mailx.1.gz
135.38
KB
-r--r--r--
2025-12-17 11:27
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
modulecmd
654.01
KB
-rwxr-xr-x
2025-09-21 09:06
modules.csh
109
B
-rw-r--r--
2025-09-21 09:06
modules.sh
479
B
-rw-r--r--
2025-09-21 09:06
nail
1013.25
KB
-rwxr-xr-x
2025-12-17 11:27
nail.1.gz
135.38
KB
-r--r--r--
2025-12-17 11:27
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
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