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 dbdir=/var/lib/dpkg # Backup the 7 last versions of dpkg databases containing user data. if cd /var/backups ; then # We backup all relevant database files if any has changed, so that # the rotation number always contains an internally consistent set. dbchanged=no dbfiles="arch status diversions statoverride" for db in $dbfiles ; do if ! cmp -s dpkg.${db}.0 $dbdir/$db ; then dbchanged=yes break; fi done if [ "$dbchanged" = "yes" ] ; then for db in $dbfiles ; do [ -e $dbdir/$db ] || continue cp -p $dbdir/$db dpkg.$db savelog -c 7 dpkg.$db >/dev/null done fi # The alternatives database is independent from the dpkg database. dbalt=alternatives # Switch the alternatives database backups from xz to gzip, as the latter # is Essential and we can rely on it being always present, using xz here # is not worth the trouble, disk space savings, or possible additional # dependencies. for dbseq in `seq 1 6` ; do dbfile=${dbalt}.tar.${dbseq} [ -e "${dbfile}.xz" ] || continue unxz ${dbfile}.xz gzip -9 $dbfile done # XXX: Ideally we'd use --warning=none instead of discarding stderr, but # as of GNU tar 1.27.1, it does not seem to work reliably (see #749307). if ! test -e ${dbalt}.tar.0 || ! tar -df ${dbalt}.tar.0 -C $dbdir $dbalt >/dev/null 2>&1 ; then tar -cf ${dbalt}.tar -C $dbdir $dbalt >/dev/null 2>&1 savelog -c 7 ${dbalt}.tar >/dev/null fi fi