Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
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--
2017-11-16 05:29
0anacron
311
B
-rwxr-xr-x
2017-05-29 16:36
apache2
539
B
-rwxr-xr-x
2020-09-30 23:09
apache2.disabled
539
B
-rwxr-xr-x
2019-07-16 18:14
apport
376
B
-rwxr-xr-x
2019-11-11 21:57
apt-compat
1.44
KB
-rwxr-xr-x
2022-09-28 15:37
apt-compat.disabled
1.44
KB
-rwxr-xr-x
2021-03-12 13:09
bsdmainutils.disabled
355
B
-rwxr-xr-x
2017-12-29 09:02
cracklib-runtime.disabled
384
B
-rwxr-xr-x
2012-12-12 21:57
dpkg
123
B
-rwxr-xr-x
2021-12-05 22:59
dpkg.disabled
1.15
KB
-rwxr-xr-x
2019-09-05 21:05
exim4-base.disabled
4.03
KB
-rwxr-xr-x
2018-10-10 18:25
exim4-base.dpkg-dist
4.61
KB
-rwxr-xr-x
2020-03-27 23:00
logrotate
377
B
-rwxr-xr-x
2019-01-21 10:11
man-db.disabled
1.04
KB
-rwxr-xr-x
2018-04-07 10:39
man-db.dpkg-dist
1.36
KB
-rwxr-xr-x
2023-01-08 22:52
mlocate.disabled
538
B
-rwxr-xr-x
2018-03-01 16:07
mlocate.dpkg-dist
543
B
-rwxr-xr-x
2019-07-16 22:18
passwd.disabled
249
B
-rwxr-xr-x
2018-01-25 15:09
plocate
652
B
-rwxr-xr-x
2020-12-07 09:10
quota.disabled
349
B
-rwxr-xr-x
2018-06-04 07:06
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 command -v on_ac_power >/dev/null; then if on_ac_power; then : elif [ $? -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