While stress testing my router using MDK3, I got the message "REALLY BIG WARNING!!! Seems like a client connected to your target AP leaks PLAINTEXT data while authenticating!!"
I viewed the tool source and it showed that the WPA2 key is sent in plain text, after repeatedly being rejected due to MDK3 denying all WPA traffic. How can I view the packet containing the cleartext WPA2 key in Wireshark? I tried wlan_mgt.rsn.akms.type but it was not helpful.
MDK3 is a Wi-Fi testing tool from ASPj of k2wrlz. It uses the osdep library from the aircrack-ng project to inject frames.
edit
i may have misinterpreted the source code of mdk3.
can anyone make things clear by specifying the origins of this warning and its causes.(am not a c programmer but i can still figure out what the algorithm is doing).
if (wpa_old < wpad_cycles) {
if (wep_old < wpad_wep) {
if (!warning) {
printf("REALLY BIG WARNING!!! Seems like a client connected to your target AP leaks PLAINTEXT data while authenticating!!\n");
warning = 1;
}
}
}