Linux localhost 6.1.10-x86_64-linode159 #1 SMP PREEMPT_DYNAMIC Wed Feb 8 14:14:45 EST 2023 x86_64
Apache/2.4.25 (Debian)
Server IP : 45.33.61.127 & Your IP : 216.73.216.156
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
cron.daily /
Delete
Unzip
Name
Size
Permission
Date
Action
.placeholder
102
B
-rw-r--r--
2015-05-03 13:25
apache2
539
B
-rwxr-xr-x
2017-09-19 18:56
apt-compat
1.44
KB
-rwxr-xr-x
2017-09-13 16:47
bsdmainutils
355
B
-rwxr-xr-x
2016-10-25 08:42
dpkg
1.56
KB
-rwxr-xr-x
2017-02-22 21:50
logrotate
89
B
-rwxr-xr-x
2015-05-05 22:18
man-db
1.04
KB
-rwxr-xr-x
2016-12-13 13:09
passwd
249
B
-rwxr-xr-x
2017-05-17 11:59
sysstat
441
B
-rwxr-xr-x
2017-05-25 20:26
Save
Rename
#!/bin/sh # # man-db cron daily set -e iosched_idle= # Don't try to change I/O priority in a vserver or OpenVZ. if ! egrep -q '(envID|VxID):.*[1-9]' /proc/self/status && \ ([ ! -d /proc/vz ] || [ -d /proc/bc ]); then iosched_idle='--iosched idle' fi if ! [ -d /var/cache/man ]; then # Recover from deletion, per FHS. install -d -o man -g man -m 0755 /var/cache/man fi # expunge old catman pages which have not been read in a week if [ ! -d /run/systemd/system ] && [ -d /var/cache/man ]; then cd / start-stop-daemon --start --pidfile /dev/null --startas /bin/sh \ --oknodo --chuid man $iosched_idle -- -c \ "find /var/cache/man -type f -name '*.gz' -atime +6 -print0 | \ xargs -r0 rm -f" fi # regenerate man database if [ -x /usr/bin/mandb ]; then # --pidfile /dev/null so it always starts; mandb isn't really a daemon, # but we want to start it like one. start-stop-daemon --start --pidfile /dev/null \ --startas /usr/bin/mandb --oknodo --chuid man \ $iosched_idle \ -- --no-purge --quiet fi exit 0