wooldog

Aircrack-ng Device Busy Fix

Dec 9th, 2011
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.35 KB | None | 0 0
  1. #!/bin/sh
  2. # Device-Busy.sh
  3. #
  4. #
  5. # Created by Adrian on 7/12/11.
  6. # Modified by Adrian Woolley, DishingTech. All rights reserved. http://www.dishingtech.blogspot.com/
  7.  
  8. # Device busy
  9.  
  10.     sudo iwconfig wlan0
  11.     sudo ifconfig wlan0 down
  12.     sudo iwconfig wlan0 mode monitor
  13.     sudo ifconfig wlan0 up
  14.     sudo iwconfig wlan0
  15.     sudo airodump-ng wlan0
  16.     sleep 30
  17.  
  18.  
Add Comment
Please, Sign In to add comment