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 # The default Debian ntp.conf enables logging of various statistics to # the /var/log/ntpstats directory. The daemon automatically changes # to a new datestamped set of files at midnight, so all we need to do # is delete old ones, and compress the ones we're keeping so disk # usage is controlled. statsdir=$(cat /etc/ntp.conf | grep -v '^#' | sed -nr 's/^statsdir[[:space:]]+([^[:space:]]+).*$/\1/p') if [ -n "$statsdir" ] && [ -d "$statsdir" ]; then # only keep a week's depth of these. Delete only files exactly # within the directory and do not descend into subdirectories # to avoid security risks on platforms where find is not using # fts-library. find "$statsdir" -maxdepth 1 -type f -mtime +7 -delete # compress whatever is left to save space but make sure to really # do it only in the expected directory. cd "$statsdir" || exit 1 ls -d -- *stats.???????? > /dev/null 2>&1 if [ $? -eq 0 ]; then # Note that gzip won't compress the file names that # are hard links to the live/current files, so this # compresses yesterday and previous, leaving the live # log alone. We supress the warnings gzip issues # about not compressing the linked file. gzip --best --quiet -- *stats.???????? return=$? case $return in 2) exit 0 # squash all warnings ;; *) exit $return # but let real errors through ;; esac fi fi