Cracking Authentication Hashes
Wi-Fi Protected Access (WPA) supports 2 authentication types:
Pre-Shared Key (PSK)
Enterprise
WPA, WPA2, and WPA3 all rely on hashes for keys see this for more about hashing https://www.codecademy.com/resources/blog/what-is-hashing , and because the hashes are irreversible and we can't obtain the keys back from them, we will follow the steps below:
We will need to have a handshake
We will try to guess the passphrase and send that guess to the used hash function
We will compare the output of the hash function to the handshake
If:
if they match, then the passphrase is correct!
if not, then we continue the guessing :(
In which attacks we can do this? check the following:
De-authentication Attacks (check it out De-authentication Attack)
We will cover several cracking tools:
John-the-ripperCrunchRSManglerHashcat
Last updated
Was this helpful?