Skip to content

Commit

Permalink
Added killWash Function and also added to killAll Function
Browse files Browse the repository at this point in the history
  • Loading branch information
esc0rtd3w committed Jan 24, 2017
1 parent 81d982d commit 16af9d0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions wifi-hacker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5688,11 +5688,32 @@ killAircrack(){
}


killWash(){

currentTask="killWash"

findWashPID=$(ps -A | grep "wash" | head -c5)

case "$findWashPID" in

"")
# No Process Found
;;

*)
killAircrackTemp=$(kill $findWashPID)
;;
esac

}


killAll(){

killAirodump
killAireplay
killAircrack
killWash
killWifite

}
Expand Down

0 comments on commit 16af9d0

Please sign in to comment.