Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
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--
2024-02-14 14:14
check-mac-address.sh
397
B
-rw-r--r--
2024-02-14 14:14
generate-interfaces.pl
4.02
KB
-rw-r--r--
2024-02-14 14:14
get-mac-address.sh
312
B
-rw-r--r--
2024-02-14 14:14
network-interfaces
6.09
KB
-rw-r--r--
2024-02-14 14:14
pattern-matching
831
B
-rw-r--r--
2024-02-14 14:14
pcmcia-compat.sh
491
B
-rw-r--r--
2024-02-14 14:14
ping-places.sh
598
B
-rw-r--r--
2024-02-14 14:14
Save
Rename
#!/bin/sh # # Checks if the given interface matches the given ethernet MAC. # If it does it exits with 0 (success) status; # if it doesn't then it exists with 1 (error) status. set -e export LANG=C if [ ! "$1" -o ! "$2" ]; then echo "Usage: $0 IFACE targetMAC" exit 1 fi ip -brief link show dev "$1" | read iface state mac rest targetmac=`echo "$2" | tr A-F a-f` test "$targetmac" = "$mac"