Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.217.14.208
202 Domain
8.1.31
nbspublicschool
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 /
sysconfig /
[ HOME SHELL ]
Name
Size
Permission
Action
cbq
[ DIR ]
drwxr-xr-x
console
[ DIR ]
drwxr-xr-x
imunify360
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
network-scripts
[ DIR ]
drwxr-xr-x
aibolit-resident
30
B
-rw-r-----
aibolit-resident-hyperscan
63
B
-rw-r--r--
anaconda
102
B
-rw-r--r--
atd
403
B
-rw-r--r--
chronyd
46
B
-rw-r--r--
cpupower
150
B
-rw-r--r--
crond
110
B
-rw-------
dovecot
72
B
-rw-------
ebtables-config
1.36
KB
-rw-------
exim
142
B
-rw-r--r--
exim.rpmorig
21
B
-rw-r--r--
firewalld
73
B
-rw-r--r--
grub
289
B
-rw-r--r--
htcacheclean
350
B
-rw-r--r--
httpd
1.03
KB
-rw-r--r--
init
798
B
-rw-r--r--
ip6tables
635
B
-rw-------
ip6tables-config
2.08
KB
-rw-------
iptables
1.62
KB
-rw-------
iptables-config
2.07
KB
-rw-------
iptables.save
1.56
KB
-rw-------
irqbalance
903
B
-rw-r--r--
kdump
1.69
KB
-rw-r--r--
kernel
180
B
-rw-r--r--
man-db
200
B
-rw-r--r--
memcached
83
B
-rw-r--r--
named
916
B
-rw-r--r--
netconsole
634
B
-rw-r--r--
network
62
B
-rw-r--r--
nfs
1.64
KB
-rw-r--r--
ntpdate
111
B
-rw-r--r--
qemu-ga
911
B
-rw-r--r--
raid-check
2.85
KB
-rw-r--r--
rdisc
15
B
-rw-r--r--
readonly-root
905
B
-rw-r--r--
rpc-rquotad
395
B
-rw-r--r--
rpcbind
73
B
-rw-r--r--
rsyncd
12
B
-rw-r--r--
rsyslog
196
B
-rw-r--r--
run-parts
0
B
-rw-r--r--
selinux
541
B
-rw-r--r--
smartmontools
125
B
-rw-r--r--
snmpd
103
B
-rw-r--r--
snmptrapd
108
B
-rw-r--r--
sshd
506
B
-rw-r-----
sysstat
474
B
-rw-r--r--
sysstat.ioconf
6.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : raid-check
#!/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=
Close