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 [ "$VERBOSITY" = 1 ] && set -x [ "$ADDRFAM" = meta ] && exit 0 sysfs() { # Called with : # $1 = basename of the file in bonding/ to write to. # $2 = value to write. Won't write if $2 is empty. if [ "$2" ] ; then echo "$2" > "/sys/class/net/$IFACE/master/bonding/$1" return $? fi return 0 } # If the stanza bond-give-a-chance is set for a slave interface, # then force $IFACE to be the primary for some time, then restore primary to it previous value. # This stanza is designed to workaround a bug in wpa_supplicant, when used with bonding : # wpa_supplicant expect wifi authentication packets on the bond interface, but also send wifi authentication packets on the bond interface. # If the active interface is not the wifi interface at the time wpa_supplicant try to authenticate, the wifi AP won't receive anything, causing the authentication to fail. # In order for the wifi authentication to succeed, one need to give a chance to the wifi interface to send authentication packets. # "bond-give-a-chance 10" will set the wifi interface as the primary interface for 10 seconds, then restore the previous primary interface. # This is supposed to be enought to give a chance to wifi to authenticate properly. if [ "$IF_BOND_GIVE_A_CHANCE" ] ; then read primary < "/sys/class/net/$IFACE/master/bonding/primary" # Set the temporary primary. sysfs primary "$IFACE" # Wait for the link to be setup, but not longer that $IF_BOND_GIVE_A_CHANGE seconds. while [ "$IF_BOND_GIVE_A_CHANCE" -gt 0 ] ; do if ip link show $IFACE | grep -sq 'state UP'; then break fi sleep 1 IF_BOND_GIVE_A_CHANCE=`expr $IF_BOND_GIVE_A_CHANCE - 1` done # Restore the previous primary. sysfs primary "$primary" fi