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
/
usr /
share /
doc /
ifupdown /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
bridge
364
B
-rw-r--r--
2016-11-30 18:15
check-mac-address.sh
498
B
-rw-r--r--
2016-11-30 18:15
generate-interfaces.pl.gz
1.29
KB
-rw-r--r--
2016-11-30 18:15
get-mac-address.sh
382
B
-rw-r--r--
2016-11-30 18:15
network-interfaces.gz
2.45
KB
-rw-r--r--
2016-11-30 18:15
pcmcia-compat.sh
491
B
-rw-r--r--
2016-11-30 18:15
ping-places.sh
605
B
-rw-r--r--
2016-11-30 18:15
Save
Rename
#!/bin/sh if [ `id -u` -ne 0 ] || [ "$1" = "" ]; then exit 1; fi if [ -x /usr/bin/fping ]; then PING="/usr/bin/fping" else PING="/bin/ping -c 2" fi iface="$1" which="" while read addr pingme scheme; do if [ "$which" ]; then continue; fi #echo " Trying $addr & $pingme ($scheme)" >&2 ip addr add $addr dev $iface >/dev/null 2>&1 ip link set $iface up >/dev/null 2>&1 if $PING $pingme >/dev/null 2>&1; then which="$scheme" fi ip link set $iface down >/dev/null 2>&1 ip addr del $addr dev $iface >/dev/null 2>&1 done if [ "$which" ]; then echo $which; exit 0; fi exit 1