mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
FT: Fixed FTIE for authentication after a failed association
This commit is contained in:
parent
b27f13ed28
commit
c684525947
@ -6,6 +6,8 @@ ChangeLog for wpa_supplicant
|
|||||||
* updated management frame protection to use IEEE 802.11w/D6.0
|
* updated management frame protection to use IEEE 802.11w/D6.0
|
||||||
* added support for using SHA256-based stronger key derivation for WPA2
|
* added support for using SHA256-based stronger key derivation for WPA2
|
||||||
(IEEE 802.11w)
|
(IEEE 802.11w)
|
||||||
|
* fixed FT (IEEE 802.11r) authentication after a failed association to
|
||||||
|
use correct FTIE
|
||||||
|
|
||||||
2008-08-10 - v0.6.4
|
2008-08-10 - v0.6.4
|
||||||
* added support for EAP Sequences in EAP-FAST Phase 2
|
* added support for EAP Sequences in EAP-FAST Phase 2
|
||||||
|
@ -923,6 +923,8 @@ void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
|
|||||||
if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
|
if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
|
||||||
md = ie + 2;
|
md = ie + 2;
|
||||||
wpa_sm_set_ft_params(wpa_s->wpa, md, NULL, 0, NULL);
|
wpa_sm_set_ft_params(wpa_s->wpa, md, NULL, 0, NULL);
|
||||||
|
/* Prepare for the next transition */
|
||||||
|
wpa_ft_prepare_auth_request(wpa_s->wpa);
|
||||||
#endif /* CONFIG_IEEE80211R */
|
#endif /* CONFIG_IEEE80211R */
|
||||||
} else {
|
} else {
|
||||||
wpa_msg(wpa_s, MSG_INFO, "Trying to associate with SSID '%s'",
|
wpa_msg(wpa_s, MSG_INFO, "Trying to associate with SSID '%s'",
|
||||||
|
Loading…
Reference in New Issue
Block a user