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 /
network /
if-up.d /
Delete
Unzip
Name
Size
Permission
Date
Action
bind9
283
B
-rwxr-xr-x
2018-01-15 22:40
clamav-freshclam-ifupdown
1.64
KB
-rwxr-xr-x
2021-04-14 09:54
ntpdate
900
B
-rwxr-xr-x
2018-02-15 12:45
openssh-server
972
B
-rwxr-xr-x
2017-10-17 10:56
postfix
1.09
KB
-rwxr-xr-x
2020-02-16 20:59
upstart
1.45
KB
-rwxr-xr-x
2015-06-02 09:32
Save
Rename
#!/bin/sh set -e PATH=/sbin:/bin:/usr/sbin:/usr/bin # This is a heuristic: The idea is that if a static interface is brought # up, that is a major event, and we can put in some extra effort to fix # the system time. Feel free to change this, especially if you regularly # bring up new network interfaces. if [ "$METHOD" = static ]; then OPTS="-b" fi if [ "$METHOD" = loopback ] || [ "$METHOD" = none ]; then exit 0 fi # Check whether ntpdate was removed but not purged; it's useless to wait for # it in that case. if [ ! -x /usr/sbin/ntpdate-debian ] && [ -d /usr/sbin ]; then exit 0 fi ( # This is for the case that /usr will be mounted later. if [ -r /lib/udev/hotplug.functions ]; then . /lib/udev/hotplug.functions wait_for_file /usr/sbin/ntpdate-debian fi # Avoid running more than one at a time flock -n /run/lock/ntpdate /usr/sbin/ntpdate-debian -s $OPTS 2>/dev/null || : ) &