CVE-2026-16147
Last modified
CVE-2026-16147 is a medium-severity vulnerability rated 6.8/10 on the CVSS scale. The ITE IT82xx2 USB device-controller driver (drivers/usb/udc/udc_it82xx2.c) mishandles multi-packet OUT transfers on non-control endpoints. In work_handler_out() the active transfer buffer is obtained with udc_buf_peek() (which does not dequeue it); when a full max-packet-size packet arrives but the buffer still has tailroom (the transfer is not yet complete), the pre-fix code both re-arms the endpoint to keep filling that same buf via work_handler_xfer_continue() and simultaneously hands the same, still-being-filled buffer to the upper stack with udc_submit_ep_event(). Because udc_submit_ep_event() transfers ownership of the buffer to the USB device stack (usbd_event_carrier() appends &buf->node to uds_ctx->ep_events, after which the class handler processes and net_buf_unref()s it), the driver continues to DMA subsequent host-controlled OUT packets into a buffer the upper stack may already have freed and recycled — a use-after-free write.
Description
The ITE IT82xx2 USB device-controller driver (drivers/usb/udc/udc_it82xx2.c) mishandles multi-packet OUT transfers on non-control endpoints. In work_handler_out() the active transfer buffer is obtained with udc_buf_peek() (which does not dequeue it); when a full max-packet-size packet arrives but the buffer still has tailroom (the transfer is not yet complete), the pre-fix code both re-arms the endpoint to keep filling that same buf via work_handler_xfer_continue() and simultaneously hands the same, still-being-filled buffer to the upper stack with udc_submit_ep_event(). Because udc_submit_ep_event() transfers ownership of the buffer to the USB device stack (usbd_event_carrier() appends &buf->node to uds_ctx->ep_events, after which the class handler processes and net_buf_unref()s it), the driver continues to DMA subsequent host-controlled OUT packets into a buffer the upper stack may already have freed and recycled — a use-after-free write. In addition, since the buffer was never dequeued, the completing packet runs udc_buf_get() on the same object and submits it a second time, appending &buf->node to the event slist twice (singly-linked-list corruption) and causing a double net_buf_unref(). The IT82xx2 is a USB peripheral controller, so the untrusted USB host controls OUT-transfer packetization and can force this path against any non-control OUT endpoint whose queued buffer exceeds one packet — an ordinary bulk/interrupt pattern. The driver and USB device stack run in kernel context above the external host, giving the host a device-side kernel heap-corruption primitive: a reliable denial of service and, because the written bytes are attacker-controlled, plausible corruption of adjacent net_buf pool memory. The vector is physical (USB attach). The fix defers submission until the buffer is completely filled and lets xfer_work_handler() drive continuation, so each OUT buffer is submitted to the upper stack exactly once.
Metrics
Weakness Enumeration
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| zephyrproject | zephyr | >= 4.0.0, < 4.4.2 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-16147?
How severe is CVE-2026-16147?
How do I fix CVE-2026-16147?
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-16141OpenBMC's IPMI implementation, phosphor-net-ipmid, contains …8.1
- CVE-2026-16142The TrueBooker plugin for WordPress is vulnerable to Account…9.8
- CVE-2026-16143The VikRentItems – Flexible Rental Management System plugin …7.2
- CVE-2026-16144The Kali Forms — Contact Form & Drag-and-Drop Builder plugin…8.1
- CVE-2026-16145The Invisible Anti-Spam & CAPTCHA — reCAPTCHA Alternative fo…7.2
- CVE-2026-16146The Invisible Anti-Spam & CAPTCHA — reCAPTCHA Alternative fo…4.9
- CVE-2026-16148The ITE it82xx2 USB device-controller driver initialized its…4.6
- CVE-2026-16149The Security Hardener plugin for WordPress is vulnerable to …8.8
- CVE-2026-1615Versions of the package jsonpath before 1.3.0 are vulnerable…9.8
- CVE-2026-16150A vulnerability was found in RobinHerbots Inputmask up to 5.…6.3
- CVE-2026-16151A vulnerability has been found in CartoDB carto-api-client 0…6.3
- CVE-2026-16152A vulnerability was found in SourceCodester Class and Exam T…7.3
Are you affected by CVE-2026-16147?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
