mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 08:48:31 -05:00
WPS 2.0: Only reject Probe Request frames from WPS 2.0 devices
This commit is contained in:
parent
e69b86b71d
commit
6a4477236e
@ -1167,7 +1167,12 @@ int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe)
|
||||
attr.authorized_macs_len, 0)) {
|
||||
wpa_printf(MSG_INFO, "WPS-STRICT: Invalid %sProbe Response "
|
||||
"frame", probe ? "" : "Beacon/");
|
||||
#ifdef WPS_STRICT_WPS2
|
||||
if (wps2)
|
||||
return -1;
|
||||
#else /* WPS_STRICT_WPS2 */
|
||||
return -1;
|
||||
#endif /* WPS_STRICT_WPS2 */
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user