Vulnerability Description
The nRF70 Wi-Fi driver's power-save event handler nrf_wifi_event_proc_get_power_save_info() in drivers/wifi/nrf_wifi/src/wifi_mgmt.c copied TWT (Target Wake Time) flow entries from an nrf_wifi_umac_event_power_save_info event into the fixed-size twt_flows[WIFI_MAX_TWT_FLOWS] (8-element) array of a caller-supplied struct wifi_ps_config, looping over event-provided num_twt_flows without validating it against WIFI_MAX_TWT_FLOWS or checking event_len. When num_twt_flows exceeds 8, the handler writes past the destination array (which is typically on the caller's stack, e.g. the wifi ps shell command) -- an out-of-bounds write of ~40-byte TWT entries -- and reads twt_flow_info[i] past the event buffer. The event is delivered by the nRF70 co-processor firmware in response to a host-initiated power-save GET, so reaching the overflow requires the firmware to emit a malformed or out-of-range event; the trust boundary is host-to-trusted-coprocessor rather than a direct remote-AP write, with over-the-air influence on the flow count being indirect and bounded by the 3-bit TWT flow-id space. Affected: builds with CONFIG_NRF70_STA_MODE on releases through v4.4.0. The fix rejects events with num_twt_flows > WIFI_MAX_TWT_FLOWS or with event_len shorter than the claimed entries, and adds a NULL check on the caller buffer.
CVSS Score
MEDIUM
Affected Products
| Vendor | Product | Versions |
|---|---|---|
| Zephyrproject | Zephyr | >= 4.0.0, < 4.5.0 |
Related Weaknesses (CWE)
References
- https://github.com/zephyrproject-rtos/zephyr/commit/a2c4324acd50a5f92e492e6e460ePatch
- https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-3r6j-pm38-ExploitMitigationPatch
- https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-3r6j-pm38-ExploitMitigationPatch
FAQ
What is CVE-2026-10664?
CVE-2026-10664 is a vulnerability with a CVSS score of 5.0 (MEDIUM). The nRF70 Wi-Fi driver's power-save event handler nrf_wifi_event_proc_get_power_save_info() in drivers/wifi/nrf_wifi/src/wifi_mgmt.c copied TWT (Target Wake Time) flow entries from an nrf_wifi_umac_ev...
How severe is CVE-2026-10664?
CVE-2026-10664 has been rated MEDIUM with a CVSS base score of 5.0/10. Review the CVSS metrics above for detailed severity breakdown.
Is there a patch for CVE-2026-10664?
Check the references section above for vendor advisories and patch information. Affected products include: Zephyrproject Zephyr.