NETWORK HACKING CHAPTER :6 ::DEAUTHENTECATION ATTACK

KICK USERS FROM ANY NETWORK IN YOUR RANGE

(theory / code / watch video on youtube [click here]) 

 

theory:
     
        This attack is used to disconnect any devices(linux,android,ios,windows etc..) from any of its connected wireless networks

working principle:
            
                  hacker sents deauthentication apckets to the router pretending to be the target maching (by spoofing its mac id)
                  at the same time the hacker also sents packets to the target machine (pretending to be the router) telling it that
                  it needs to re authenticate itself ,therefore the device will be automatically disconnected from the targeted network
                  even without knowing the encryption key.
  
code:
>aireplay-ng --deauth [no.of packets need to sent] -a [router mac] -c [client mac] wlan0mon
 

note:
no.of packets leads to the time for which the device is going to be disconnected ;
wlan0mon is my wireless card name in monitor mode check yours after enabling monitor mode using the code >iwconfig

Comments