4-Way Handshake confusion
#7
@pragmatic: Well done with the description Smile

The reason why WPA2 handshakes are so slow is due to the computationally intensive task of calculating the PMK.

If I remember correct, per the specification, the exact syntax for calculating the PMK looks like this:

PMK=PBKDF2(PSK, SSID, SSID.length, 4096, 256);

And the salt is the SSID and not the PSK (please correct me if I am wrong)

256 bits is the length of the output key.

PDBKDF2 like any other key derivation function depends on an underlying pseudo random function which in this case is HMAC SHA1.

I think time taken to compute the PTK is very less compared to PMK computation. As soon as PTK is calculated, the MIC is derived from it.

How different is HMAC SHA1 from a SHA1 cryptographic hash function?

I did not get the time to read through it.

The concept of precomputed rainbow tables is that for a specific ESSID, the PMK is already computed.

For every word in a wordlist, combine it with the ESSID according to the above syntax and calculate the PMK.

So, the rainbow tables you are referring to are precomputed PMKs which reduce the time significantly since the most computationally intensive task in WPA2 cracking is PMK computation.
Reply


Messages In This Thread
4-Way Handshake confusion - by qweasd - 11-09-2012, 11:46 PM
RE: 4-Way Handshake confusion - by atom - 11-10-2012, 10:22 AM
RE: 4-Way Handshake confusion - by qweasd - 11-11-2012, 04:48 AM
RE: 4-Way Handshake confusion - by pragmatic - 11-11-2012, 10:50 AM
RE: 4-Way Handshake confusion - by gat3way - 11-11-2012, 01:03 PM
RE: 4-Way Handshake confusion - by pragmatic - 11-12-2012, 08:37 AM
RE: 4-Way Handshake confusion - by NeonFlash - 11-14-2012, 05:48 AM
RE: 4-Way Handshake confusion - by qweasd - 11-14-2012, 07:07 AM
RE: 4-Way Handshake confusion - by NeonFlash - 11-14-2012, 07:47 AM
RE: 4-Way Handshake confusion - by qweasd - 11-14-2012, 10:32 AM
RE: 4-Way Handshake confusion - by NeonFlash - 11-14-2012, 10:47 AM
RE: 4-Way Handshake confusion - by epixoip - 11-14-2012, 01:49 PM