您好我正在尝试制作一个渗透测试平台,我需要编辑hostapd应用程序来连接错误的密码。
我的尝试: 我改变了wpa_auth.c:
if (!ok) {
wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
"invalid MIC in msg 2/4 of 4-Way Handshake");
if (psk_found)
wpa_auth_psk_failure_report(sm->wpa_auth, sm->addr);
return;
}
到:
if (ok) {
wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
"invalid MIC in msg 2/4 of 4-Way Handshake");
if (psk_found)
wpa_auth_psk_failure_report(sm->wpa_auth, sm->addr);
return;
}
因为当我输入错误的密码时,我收到“4-Way Handshake的msg 2/4中的MIC无效”。
任何人都可以帮我制作这个渗透测试平台吗?
感谢。