wlantest: Fix BIP replay detection
This commit is contained in:
parent
aaca650540
commit
4d4c29158d
1 changed files with 1 additions and 1 deletions
|
@ -509,7 +509,7 @@ static int check_bip(struct wlantest *wt, const u8 *data, size_t len)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (os_memcmp(mmie + 2, bss->ipn[keyid], 6) >= 0) {
|
if (os_memcmp(mmie + 2, bss->ipn[keyid], 6) <= 0) {
|
||||||
wpa_printf(MSG_INFO, "BIP replay detected: SA=" MACSTR,
|
wpa_printf(MSG_INFO, "BIP replay detected: SA=" MACSTR,
|
||||||
MAC2STR(mgmt->sa));
|
MAC2STR(mgmt->sa));
|
||||||
wpa_hexdump(MSG_INFO, "RX IPN", mmie + 2, 6);
|
wpa_hexdump(MSG_INFO, "RX IPN", mmie + 2, 6);
|
||||||
|
|
Loading…
Reference in a new issue