Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
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--
2016-04-05 23:59
apache2
539
B
-rwxr-xr-x
2016-04-05 23:15
apport
376
B
-rwxr-xr-x
2016-03-31 16:13
apt-compat
1.44
KB
-rwxr-xr-x
2016-10-31 15:31
bsdmainutils
355
B
-rwxr-xr-x
2012-05-22 15:22
dpkg
1.56
KB
-rwxr-xr-x
2015-11-27 00:51
logrotate
372
B
-rwxr-xr-x
2015-05-06 06:41
man-db
1.26
KB
-rwxr-xr-x
2015-11-06 16:54
mdadm
539
B
-rwxr-xr-x
2014-07-16 17:02
mlocate
435
B
-rwxr-xr-x
2014-11-18 08:54
ntp
1.35
KB
-rwxr-xr-x
2016-10-05 14:12
passwd
249
B
-rwxr-xr-x
2015-11-12 23:12
popularity-contest
3.37
KB
-rwxr-xr-x
2016-02-26 20:24
update-notifier-common
214
B
-rwxr-xr-x
2016-05-24 18:48
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. mkdir -p /var/cache/man chown man:root /var/cache/man || true chmod 2755 /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 / if ! dpkg-statoverride --list /var/cache/man >/dev/null 2>&1; then find /var/cache/man -ignore_readdir_race ! -user man -print0 | \ xargs -r0 chown -f man || true fi 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