CVE-2026-12999
Last modified
CVE-2026-12999 is a medium-severity vulnerability rated 5.3/10 on the CVSS scale. The Infineon Airoc Wi-Fi driver's transmit callback airoc_mgmt_send() in drivers/wifi/infineon/airoc_wifi.c allocates a net_buf from the fixed airoc_pool for every outbound packet. When whd_network_send_ethernet_data() returns a synchronous failure, the underlying WHD library does not take ownership of the buffer, but the pre-fix driver returned -EIO without releasing it. EPSS estimates a 0.16% chance of exploitation in the next 30 days.
Description
The Infineon Airoc Wi-Fi driver's transmit callback airoc_mgmt_send() in drivers/wifi/infineon/airoc_wifi.c allocates a net_buf from the fixed airoc_pool for every outbound packet. When whd_network_send_ethernet_data() returns a synchronous failure, the underlying WHD library does not take ownership of the buffer, but the pre-fix driver returned -EIO without releasing it. Each failed transmit therefore permanently leaks one buffer from the pool. airoc_pool is small and fixed (AIROC_WIFI_TX_PACKET_POOL_COUNT + AIROC_WIFI_RX_PACKET_POOL_COUNT, default 20 buffers) and is shared by WHD's whd_host_buffer_get callback for both transmit and receive. Once enough send failures have leaked the pool dry, airoc_wifi_host_buffer_get() returns WHD_BUFFER_ALLOC_FAIL for all subsequent allocations, so both transmit and the WHD-driven receive path fail and Wi-Fi connectivity is lost until the device is rebooted. The leak occurs only on the transmit error path. A Wi-Fi-adjacent attacker can influence the conditions that cause synchronous send failures (for example by deauthenticating/disassociating the station while the local stack continues to attempt transmits), and ordinary transient failures over the device's lifetime accumulate toward the same state. Reliable on-demand triggering is of high complexity and the impact is availability-only, but the resulting denial of service is permanent and non-recoverable without a reboot. The fix releases the buffer with airoc_wifi_buffer_release() on the failure branch, returning it to the pool. The commit also removes a redundant k_sem_give() in airoc_mgmt_disconnect(); because data->sema_common is a binary semaphore (limit 1) the duplicate give merely saturated at 1 and had no security impact.
Metrics
Weakness Enumeration
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| zephyrproject | zephyr | >= 3.6.0, < 4.4.2 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-12999?
How severe is CVE-2026-12999?
How do I fix CVE-2026-12999?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-12993A flaw was found in Apicurio Registry. The DocumentBuilderAc…6.5
- CVE-2026-12994The WCFM – Frontend Manager for WooCommerce plugin for WordP…5.3
- CVE-2026-12995The Custom Field Template plugin for WordPress is vulnerable…4.3
- CVE-2026-12996A use-after-free in OpenVPN 2.6.0 through 2.6.20 and 2.7_alp…8.1
- CVE-2026-12997The Gravity Forms plugin for WordPress is vulnerable to Dire…7.5
- CVE-2026-12998The Forminator Forms – Contact Form, Payment Form & Custom F…5.3
- CVE-2026-1300The Responsive Header plugin for WordPress is vulnerable to …4.4
- CVE-2026-13001The Podlove Podcast Publisher plugin for WordPress is vulner…9.8
- CVE-2026-13002A flow has been identified into dnssec.c library, causing an…4.4
- CVE-2026-13005The MxChat – AI Chatbot & Content Generation for WordPress p…4.4
- CVE-2026-13006ACE vulnerability in conditional configuration file processi…7
- CVE-2026-13007Tenable Identity Exposure contains multiple unauthenticated …7.5
Are you affected by CVE-2026-12999?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
