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 /
network /
if-up.d /
Delete
Unzip
Name
Size
Permission
Date
Action
000resolvconf
817
B
-rwxr-xr-x
2015-06-03 22:58
ethtool
1.65
KB
-rwxr-xr-x
2016-03-14 12:11
ifenslave
1.69
KB
-rwxr-xr-x
2015-07-24 17:45
ip
677
B
-rwxr-xr-x
2017-09-21 20:29
ntpdate
876
B
-rwxr-xr-x
2017-09-05 17:24
openssh-server
980
B
-rwxr-xr-x
2016-07-31 10:50
openvpn
385
B
-rwxr-xr-x
2016-02-02 13:40
postfix
1.09
KB
-rwxr-xr-x
2016-04-13 18:58
upstart
1.45
KB
-rwxr-xr-x
2015-06-02 09:32
vlan
227
B
-rwxr-xr-x
2018-05-10 16:19
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 ]; 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 || : ) &