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 set -e # Systemd systems use a systemd timer unit which is preferable to # run. We want to randomize the apt update and unattended-upgrade # runs as much as possible to avoid hitting the mirrors all at the # same time. The systemd time is better at this than the fixed # cron.daily time if [ -d /run/systemd/system ]; then exit 0 fi check_power() { # laptop check, on_ac_power returns: # 0 (true) System is on main power # 1 (false) System is not on main power # 255 (false) Power status could not be determined # Desktop systems always return 255 it seems if which on_ac_power >/dev/null 2>&1; then on_ac_power POWER=$? if [ $POWER -eq 1 ]; then return 1 fi fi return 0 } # sleep for a random interval of time (default 30min) # (some code taken from cron-apt, thanks) random_sleep() { RandomSleep=1800 eval $(apt-config shell RandomSleep APT::Periodic::RandomSleep) if [ $RandomSleep -eq 0 ]; then return fi if [ -z "$RANDOM" ] ; then # A fix for shells that do not have this bash feature. RANDOM=$(( $(dd if=/dev/urandom bs=2 count=1 2> /dev/null | cksum | cut -d' ' -f1) % 32767 )) fi TIME=$(($RANDOM % $RandomSleep)) sleep $TIME } # delay the job execution by a random amount of time random_sleep # ensure we don't do this on battery check_power || exit 0 # run daily job exec /usr/lib/apt/apt.systemd.daily