1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:42:07 +02:00

airdecap-ng: add page (#9974)

* airdecap-ng: add page

* Fixed typos
This commit is contained in:
Johan Degn 2023-05-14 00:27:56 +02:00 committed by GitHub
parent 577ce2b8cf
commit cf76221004
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,25 @@
# airdecap-ng
> Decrypt a WEP, WPA or WPA2 encrypted capture file.
> Part of Aircrack-ng network software suite.
> More information: <https://www.aircrack-ng.org/doku.php?id=airdecap-ng>.
- Remove wireless headers from an open network capture file and use the access point's MAC address to filter:
`airdecap-ng -b {{ap_mac}} {{path/to/capture.cap}}`
- Decrypt a WEP encrypted capture file using the key in hex format:
`airdecap-ng -w {{hex_key}} {{path/to/capture.cap}}`
- Decrypt a WPA/WPA2 encrypted capture file using the access point's [e]ssid and [p]assword:
`airdecap-ng -e {{essid}} -p {{password}} {{path/to/capture.cap}}`
- Decrypt a WPA/WPA2 encrypted capture file preserving the headers using the access point's [e]ssid and [p]assword:
`airdecap-ng -l -e {{essid}} -p {{password}} {{path/to/capture.cap}}`
- Decrypt a WPA/WPA2 encrypted capture file using the access point's [e]ssid and [p]assword and use its MAC address to filter:
`airdecap-ng -b {{ap_mac}} -e {{essid}} -p {{password}} {{path/to/capture.cap}}`