1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-02 10:35:32 +02:00
tldr/pages/common/aircrack-ng.md

22 lines
802 B
Markdown
Raw Normal View History

2023-03-07 12:09:55 +01:00
# aircrack-ng
> Crack WEP and WPA/WPA2 keys from handshake in captured packets.
> Part of Aircrack-ng network software suite.
> More information: <https://www.aircrack-ng.org/doku.php?id=aircrack-ng>.
- Crack key from capture file using [w]ordlist:
`aircrack-ng -w {{path/to/wordlist.txt}} {{path/to/capture.cap}}`
2025-06-01 05:58:28 +10:00
- Crack key using multiple CPU threads from capture file using [w]ordlist:
`aircrack-ng -p {{number}} -w {{path/to/wordlist.txt}} {{path/to/capture.cap}}`
2023-03-07 12:09:55 +01:00
- Crack key from capture file using [w]ordlist and the access point's [e]ssid:
`aircrack-ng -w {{path/to/wordlist.txt}} -e {{essid}} {{path/to/capture.cap}}`
- Crack key from capture file using [w]ordlist and the access point's MAC address:
`aircrack-ng -w {{path/to/wordlist.txt}} --bssid {{mac}} {{path/to/capture.cap}}`