You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
->
it passed to second argument of memcpy os_memcpy(&((uint16_t *)req->data)[3], ies, ies_len - 3 * sizeof(uint16_t));
and The behavior is undefined if either dest or src is an invalid or null pointer. for this function (https://en.cppreference.com/w/c/string/byte/memcpy).
The text was updated successfully, but these errors were encountered:
github-actionsbot
changed the title
Undefined behavior in wpa3_process_rx_commit function
Undefined behavior in wpa3_process_rx_commit function (IDFGH-14308)
Dec 26, 2024
Answers checklist.
General issue report
esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c
Line 479 in b5ac4fb
esp_send_sae_auth_reply(hapd, frm->bssid, frm->bssid, WLAN_AUTH_SAE, frm->auth_transaction, ret, NULL, 0);
NULL passed to ies argument of esp_send_sae_auth_reply function:
esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c
Line 682 in b5ac4fb
it passed to second argument of memcpy
os_memcpy(&((uint16_t *)req->data)[3], ies, ies_len - 3 * sizeof(uint16_t));
and The behavior is undefined if either dest or src is an invalid or null pointer. for this function (https://en.cppreference.com/w/c/string/byte/memcpy).
The text was updated successfully, but these errors were encountered: