Linux server1.hosting4iran.com 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.218
Domains : 282 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
sysconfig /
Delete
Unzip
Name
Size
Permission
Date
Action
console
[ DIR ]
drwxr-xr-x
2025-11-04 09:19
imunify360
[ DIR ]
drwxr-xr-x
2023-12-23 09:52
modules
[ DIR ]
drwxr-xr-x
2025-11-04 09:19
network-scripts
[ DIR ]
drwxr-xr-x
2025-12-21 17:06
aibolit-resident
30
B
-rw-r-----
2023-12-05 11:56
anaconda
111
B
-rw-r--r--
2023-11-28 12:28
atd
403
B
-rw-r--r--
2022-10-10 10:23
chronyd
46
B
-rw-r--r--
2024-11-05 07:47
cpupower
150
B
-rw-r--r--
2026-02-17 10:36
crond
110
B
-rw-r--r--
2024-04-06 11:40
dovecot
72
B
-rw-------
2026-02-03 19:31
exim
142
B
-rw-r--r--
2023-12-23 09:46
exim.rpmorig
21
B
-rw-r--r--
2023-12-23 09:41
firstboot
17
B
-rw-r--r--
2023-11-28 12:31
grub
327
B
-rw-r--r--
2025-12-21 17:06
htcacheclean
350
B
-rw-r--r--
2017-02-10 19:25
httpd
1.03
KB
-rw-r--r--
2017-08-28 18:52
ip6tables-config
2.08
KB
-rw-------
2024-04-02 18:37
iptables-config
2.07
KB
-rw-------
2024-04-02 18:37
irqbalance
903
B
-rw-r--r--
2023-10-14 16:44
kdump
2.44
KB
-rw-r--r--
2026-02-10 17:24
kernel
180
B
-rw-r--r--
2025-12-21 17:05
man-db
310
B
-rw-r--r--
2021-06-24 12:12
named
845
B
-rw-r--r--
2025-11-06 07:45
network
107
B
-rw-r--r--
2026-02-03 06:50
nftables.conf
40.68
KB
-rw-------
2026-01-10 12:28
qemu-ga
882
B
-rw-r--r--
2024-02-26 02:55
raid-check
2.85
KB
-rw-r--r--
2025-11-05 07:57
rpcbind
73
B
-rw-r--r--
2022-10-12 11:00
rsyslog
196
B
-rw-r--r--
2024-11-05 02:29
run-parts
0
B
-rw-r--r--
2021-04-08 09:38
selinux
17
B
-rw-r--r--
2023-12-23 09:31
smartmontools
186
B
-rw-r--r--
2024-04-06 13:19
snmpd
103
B
-rw-r--r--
2026-01-19 08:19
snmptrapd
108
B
-rw-r--r--
2026-01-19 08:19
sshd
591
B
-rw-r-----
2025-12-18 02:27
sshd-permitrootlogin
161
B
-rw-r--r--
2023-11-28 12:28
sysstat
1015
B
-rw-r--r--
2024-07-03 09:57
sysstat.ioconf
6.28
KB
-rw-r--r--
2018-04-06 11:59
Save
Rename
#!/bin/bash # # Configuration file for /etc/cron.weekly/raid-check # # options: # ENABLED - must be yes in order for the raid check to proceed # CHECK - can be either check or repair depending on the type of # operation the user desires. A check operation will scan # the drives looking for bad sectors and automatically # repairing only bad sectors. If it finds good sectors that # contain bad data (meaning that the data in a sector does # not agree with what the data from another disk indicates # the data should be, for example the parity block + the other # data blocks would cause us to think that this data block # is incorrect), then it does nothing but increments the # counter in the file /sys/block/$dev/md/mismatch_count. # This allows the sysadmin to inspect the data in the sector # and the data that would be produced by rebuilding the # sector from redundant information and pick the correct # data to keep. The repair option does the same thing, but # when it encounters a mismatch in the data, it automatically # updates the data to be consistent. However, since we really # don't know whether it's the parity or the data block that's # correct (or which data block in the case of raid1), it's # luck of the draw whether or not the user gets the right # data instead of the bad data. This option is the default # option for devices not listed in either CHECK_DEVS or # REPAIR_DEVS. # CHECK_DEVS - a space delimited list of devs that the user specifically # wants to run a check operation on. # REPAIR_DEVS - a space delimited list of devs that the user # specifically wants to run a repair on. # SKIP_DEVS - a space delimited list of devs that should be skipped # NICE - Change the raid check CPU and IO priority in order to make # the system more responsive during lengthy checks. Valid # values are high, normal, low, idle. # MAXCONCURENT - Limit the number of devices to be checked at a time. # By default all devices will be checked at the same time. # # Note: the raid-check script intentionaly runs last in the cron.weekly # sequence. This is so we can wait for all the resync operations to complete # and then check the mismatch_count on each array without unduly delaying # other weekly cron jobs. If any arrays have a non-0 mismatch_count after # the check completes, we echo a warning to stdout which will then me emailed # to the admin as long as mails from cron jobs have not been redirected to # /dev/null. We do not wait for repair operations to complete as the # md stack will correct any mismatch_cnts automatically. # # Note2: you can not use symbolic names for the raid devices, such as you # /dev/md/root. The names used in this file must match the names seen in # /proc/mdstat and in /sys/block. ENABLED=yes CHECK=check NICE=low # To check devs /dev/md0 and /dev/md3, use "md0 md3" CHECK_DEVS="" REPAIR_DEVS="" SKIP_DEVS="" MAXCONCURRENT=