CVE-2026-10647

MEDIUMPre-NVD 5.35.3
EchelonGraph scoreMEDIUM confidence

This medium-severity CVE scores 5.3 under a secondary CVSS source (NVD's own analysis pending). EPSS exploit probability: 0.1%, top 97% of all CVEs by exploit prediction. GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).

Triggered by: NVD CVSS baseline
Sources: epss, secondary
5.3
EchelonGraph verdictMonitorLow exploitation likelihood right now — keep watching.
  • Lower severity and no public exploit yet
CISA-KEV: Not listedEPSS: 0%CVSS: 5.3Exploit: NoneExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

The USB CDC-NCM device class (subsys/usb/device_next/class/usbd_cdc_ncm.c) ignores the return value of usbd_ep_enqueue() in its ethernet transmit callback cdc_ncm_send(). When the enqueue fails, the function still calls k_sem_take(&data-sync_sem, K_FOREVER), blocking on a completion semaphore that is only ever signaled from the bulk-IN transfer-completion callback. Because nothing was enqueued, that callback never fires and the calling thread — a shared network traffic-class TX thread — deadlocks permanently while holding the interface TX lock, halting transmission until reboot (and leaking the transmit buffer).

The enqueue fails under conditions controlled by the attached USB host: usbd_ep_enqueue() returns -EPERM whenever the bus is suspended (a standard, persistent host operation), and the underlying udc_ep_enqueue() returns -EPERM/-ENODEV on disconnect, bus reset, or endpoint disable. The cdc_ncm_send() guard only checks the DATA_IFACE_ENABLED and IFACE_UP flags, not the suspended state, so a packet transmitted while the host holds the bus suspended reaches the failing enqueue and deadlocks the TX path.

The realistic trigger is a bus suspend that occurs while the exported network interface is active and has traffic to send — host sleep, USB selective/auto-suspend, or hub power management — after which any device-originated packet deadlocks the path, recoverable only by reboot. The impact is a persistent loss of the virtual network connection between the host's NCM interface and the Zephyr device; because the deadlocked thread is a shared traffic-class TX thread, egress on other network interfaces can stall as well. There is no memory corruption or information disclosure.

The defect was introduced with the CDC-NCM driver and shipped in releases through v4.4.0; it is fixed by checking the usbd_ep_enqueue() return value and freeing the buffer before the blocking wait.

CVSS v3
5.3
EG Score
5.3(medium)
EPSS
3.3%
KEV
Not listed

Published

June 29, 2026

Last Modified

July 1, 2026

Advisory Details (2)

Auto-updated Jun 29, 2026
Patch available. Sources: github_commit, github.
github Patch Available

Deadlock denial of service in USB CDC-NCM device class on TX enqueue failure · Advisory · zephyrproject-rtos/zephyr · GitHub

https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-xcf7-r86m-5q9f
github_commit

commit 255bccc1badd (zephyrproject-rtos/zephyr)

Fix landed in zephyrproject-rtos/zephyr commit 255bccc1badd — awaiting tagged release

https://github.com/zephyrproject-rtos/zephyr/commit/255bccc1badd1aa06c6e5ddf5b40de8463b33f02

Weakness Classification(2)

MITRE Common Weakness Enumeration — the root-cause categories this CVE belongs to.

Data Freshness Timeline

(refreshed 14× in last 7d / 22× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

  1. 2026-07-11 08:27 UTCEPSS rescore
  2. 2026-07-10 20:26 UTCEG score recompute
  3. 2026-07-09 19:10 UTCEPSS rescore
  4. 2026-07-09 18:12 UTCEG score recompute
  5. 2026-07-08 15:57 UTCEG score recompute
  6. 2026-07-08 15:15 UTCEPSS rescore
  7. 2026-07-08 15:15 UTCEPSS rescore
  8. 2026-07-07 13:46 UTCEPSS rescore
  9. 2026-07-07 13:43 UTCEG score recompute
  10. 2026-07-06 11:27 UTCEG score recompute
  11. 2026-07-06 02:23 UTCEPSS rescore
  12. 2026-07-05 09:12 UTCEG score recompute
  13. 2026-07-05 02:30 UTCEPSS rescore
  14. 2026-07-05 02:30 UTCEPSS rescore
  15. 2026-07-04 06:58 UTCEG score recompute
  16. 2026-07-04 06:31 UTCEPSS rescore
  17. 2026-07-03 04:42 UTCEG score recompute
  18. 2026-07-02 02:25 UTCEG score recompute
  19. 2026-07-01 00:11 UTCEG score recompute
  20. 2026-06-30 23:22 UTCEPSS rescore
  21. 2026-06-29 21:57 UTCEG score recompute
  22. 2026-06-29 21:57 UTCMITRE cvelistV5first tracked

Frequently asked(5)

What is CVE-2026-10647?
CVE-2026-10647 is a medium vulnerability published on June 29, 2026. The USB CDC-NCM device class (subsys/usb/devicenext/class/usbdcdcncm.c) ignores the return value of usbdepenqueue() in its ethernet transmit callback cdcncmsend(). When the enqueue fails, the function still calls ksemtake(&data-syncsem, K_FOREVER), blocking on a completion semaphore that is only…
When was CVE-2026-10647 disclosed?
CVE-2026-10647 was first published in the National Vulnerability Database on June 29, 2026, with the most recent update on July 1, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-10647 actively exploited?
CVE-2026-10647 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 3.3% percentile likelihood of exploitation in the next 30 days — higher percentiles indicate greater predicted risk.
What is the CVSS score of CVE-2026-10647?
CVE-2026-10647 has a CVSS v3 base score of 5.3 (NVD).
How do I remediate CVE-2026-10647?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-10647, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

Explore the affected products and dependency analysis for CVE-2026-10647

Explore →

Is Your Infrastructure Affected by CVE-2026-10647?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.