Skip to content

Commit

Permalink
Added wash Menu
Browse files Browse the repository at this point in the history
  • Loading branch information
esc0rtd3w committed Jan 24, 2017
1 parent 8254872 commit 2167577
Showing 1 changed file with 70 additions and 1 deletion.
71 changes: 70 additions & 1 deletion wifi-hacker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -863,6 +863,9 @@ setDefaults(){
capturePathWPA=$(echo "$PWD/sessions/wpa")
capturePathWPA2=$(echo "$PWD/sessions/wpa2")

# Default Current Directory Temp Path
whTemp=$(echo "$PWD/temp")

}


Expand All @@ -876,7 +879,8 @@ setDefaultsWEP(){
# aircrack-ng cracking mode WEP (WPA-PSK)
#acMode="2"

washFile="$initPath"
washFile="$whTemp/wash.txt"
washChannel="1"

}

Expand Down Expand Up @@ -5268,6 +5272,71 @@ menuBullyMain() {
}


menuWashMain() {

#currentTask="menuWashMain"

banner
echo ""
echo "WPS Wash Menu"
echo ""
echo ""
echo ""
echo ""
echo "Choose an option and press ENTER:"
echo ""
echo ""
echo ""
echo "1) Use Defaults"
echo ""
echo "2) Enter Channel Number"
echo ""
echo "3) Toggle Scan Mode"
echo ""
echo "4) Use 5GHz Band"
echo ""
echo "5) Do Not Ignore Frame Checksum Errors"
echo ""
echo ""
echo ""
echo ""
echo "R) Return To Previous Page"
echo ""
echo ""

read washOption

case "$washOption" in

"1")
wash -i $interfaceMonitor -o "$washFile" -C
;;

"2")
wash -i $interfaceMonitor -o "$washFile" -C -c $washChannel
;;

"3")
wash -i $interfaceMonitor -o "$washFile" -C -s
;;

"4")
wash -i $interfaceMonitor -o "$washFile" -C -5
;;

"5")
wash -i $interfaceMonitor -o "$washFile"
;;

"6")
currentTask
;;

esac

}



############################################################################
# ATTACKS: WPS END #####################################################
Expand Down

0 comments on commit 2167577

Please sign in to comment.