From cf762210041f75d49fadb9bc7b218e069a6b281e Mon Sep 17 00:00:00 2001 From: Johan Degn <54548365+johandegn@users.noreply.github.com> Date: Sun, 14 May 2023 00:27:56 +0200 Subject: [PATCH] airdecap-ng: add page (#9974) * airdecap-ng: add page * Fixed typos --- pages/common/airdecap-ng.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pages/common/airdecap-ng.md diff --git a/pages/common/airdecap-ng.md b/pages/common/airdecap-ng.md new file mode 100644 index 0000000000..83c477aa5e --- /dev/null +++ b/pages/common/airdecap-ng.md @@ -0,0 +1,25 @@ +# airdecap-ng + +> Decrypt a WEP, WPA or WPA2 encrypted capture file. +> Part of Aircrack-ng network software suite. +> More information: . + +- 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}}`