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 # Reload the OpenSSH server when an interface comes up, to allow it to start # listening on new addresses. set -e # Don't bother to restart sshd when lo is configured. if [ "$IFACE" = lo ]; then exit 0 fi # Only run from ifup. if [ "$MODE" != start ]; then exit 0 fi # OpenSSH only cares about inet and inet6. Get ye gone, strange people # still using ipx. if [ "$ADDRFAM" != inet ] && [ "$ADDRFAM" != inet6 ]; then exit 0 fi # Is /usr mounted? if [ ! -e /usr/sbin/sshd ]; then exit 0 fi if [ ! -f /var/run/sshd.pid ] || \ [ "$(ps -p "$(cat /var/run/sshd.pid)" -o comm=)" != sshd ]; then exit 0 fi # We'd like to use 'reload' here, but it has some problems; see #502444. On # the other hand, repeated restarts of ssh make systemd unhappy # (#756547/#757822), so use reload in that case. if [ -d /run/systemd/system ]; then systemctl reload --no-block ssh.service >/dev/null 2>&1 || true else invoke-rc.d ssh restart >/dev/null 2>&1 || true fi exit 0