Parcourir la source

wlantest: Fix Mgmt CCMP replay detection to use correct PN offset

Jouni Malinen il y a 14 ans
Parent
commit
30febd7001
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      wlantest/rx_mgmt.c

+ 1 - 1
wlantest/rx_mgmt.c

@@ -686,7 +686,7 @@ static u8 * mgmt_ccmp_decrypt(struct wlantest *wt, const u8 *data, size_t len,
 	else
 		rsc = sta->rsc_fromds[16];
 
-	ccmp_get_pn(pn, data);
+	ccmp_get_pn(pn, data + 24);
 	if (os_memcmp(pn, rsc, 6) <= 0) {
 		wpa_printf(MSG_INFO, "CCMP/TKIP replay detected: SA=" MACSTR,
 			   MAC2STR(hdr->addr2));