CVE-2026-10655

MEDIUMNVD 5.95.9
EchelonGraph scoreMEDIUM confidence

This medium-severity CVE scores 5.9 under NVD CVSS v3. EPSS exploit probability: 0.3%, top 83% 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, nvd
Trending — 4 sources updated this week
5.9
EchelonGraph verdictMonitorLow exploitation likelihood right now — keep watching.
  • Lower severity and no public exploit yet
CISA-KEV: Not listedEPSS: 0%CVSS: 5.9Exploit: NoneExposed: 0

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

The asynchronous SNTP client in Zephyr (subsys/net/lib/sntp/sntp.c, sntp_close_async) closed the UDP socket file descriptor directly from the calling thread immediately after detaching it from the network socket service, without synchronizing with the socket-service poll thread.

The socket service thread polls each socket via zvfs_poll, which (in zsock_poll_prepare_ctx) registers a k_poll_event pointing into the socket's net_context (&ctx->recv_q) and then blocks in k_poll without holding a reference or lock. net_context objects are allocated from a fixed pool (contexts[CONFIG_NET_MAX_CONTEXTS]) and reused after close.

When sntp_close_async is invoked from a different thread than the poll thread (in the in-tree consumer subsys/net/lib/config/init_clock_sntp.c, the SNTP timeout handler runs on the system workqueue while the socket service thread is blocked in poll on the same fd), the close frees and may reuse the net_context while the poll thread still has a poller node linked into the freed object, resulting in a use-after-free / object confusion of kernel poll structures.

The SNTP timeout path is the normal no-response failure mode, so a network peer or off-path attacker who drops or delays the SNTP/NTP response can drive the racing close repeatedly (and periodically with NET_CONFIG_SNTP_INIT_RESYNC). The most likely consequence is a crash of the networking thread (denial of service), with potential memory corruption when the freed context slot is reallocated.

The fix defers the close to the socket service thread itself via net_socket_service_close (NET_SOCKET_SERVICE_CLOSE_SOCKETS), so the same thread that polls performs the close, eliminating the race. Affected releases: v4.2.0 through v4.4.0.

CVSS v3
5.9
EG Score
5.9(medium)
EPSS
16.8%
KEV
Not listed

Published

June 30, 2026

Last Modified

July 14, 2026

Advisory Details (2)

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

Use-after-free race in SNTP async client when closing the socket while the socket service is still polling it · Advisory · zephyrproject-rtos/zephyr · GitHub

https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-34wr-cg29-c4mw
github_commit

commit ef47bdf328b4 (zephyrproject-rtos/zephyr)

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

https://github.com/zephyrproject-rtos/zephyr/commit/ef47bdf328b4206ac3b3922ec09184f7a6f7412a

Weakness Classification(1)

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

Data Freshness Timeline

(refreshed 16× in last 7d / 37× 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-15 22:51 UTCEG score recompute
  2. 2026-07-15 16:57 UTCEPSS rescore
  3. 2026-07-15 02:00 UTCEPSS rescore
  4. 2026-07-14 22:34 UTCEG score recompute
  5. 2026-07-14 19:21 UTCNVD updateCVSS v3 → 5.9
  6. 2026-07-14 19:00 UTCMITRE cvelistV5CVSS v3 → 6.5
  7. 2026-07-13 22:30 UTCEPSS rescore
  8. 2026-07-13 22:18 UTCEG score recompute
  9. 2026-07-13 06:12 UTCEPSS rescore
  10. 2026-07-12 22:02 UTCEG score recompute
  11. 2026-07-12 05:46 UTCEPSS rescore
  12. 2026-07-11 21:44 UTCEG score recompute
  13. 2026-07-11 08:27 UTCEPSS rescore
  14. 2026-07-10 21:27 UTCEG score recompute
  15. 2026-07-09 21:10 UTCEG score recompute
  16. 2026-07-09 19:10 UTCEPSS rescore
  17. 2026-07-08 20:53 UTCEG score recompute
  18. 2026-07-08 15:15 UTCEPSS rescore
  19. 2026-07-08 15:15 UTCEPSS rescore
  20. 2026-07-07 20:37 UTCEG score recompute 0.60
  21. 2026-07-07 13:46 UTCEPSS rescore
  22. 2026-07-06 21:35 UTCNVD updateCVSS v3 → 5.9
  23. 2026-07-06 20:20 UTCEG score recompute
  24. 2026-07-06 16:27 UTCEPSS rescore
  25. 2026-07-06 02:23 UTCEPSS rescore
Show 12 more
  1. 2026-07-05 19:56 UTCEG score recompute
  2. 2026-07-05 02:30 UTCEPSS rescore
  3. 2026-07-05 02:30 UTCEPSS rescore
  4. 2026-07-04 19:39 UTCEG score recompute
  5. 2026-07-04 06:31 UTCEPSS rescore
  6. 2026-07-03 19:23 UTCEG score recompute
  7. 2026-07-02 19:06 UTCEG score recompute
  8. 2026-07-01 18:50 UTCEG score recompute
  9. 2026-07-01 15:06 UTCEPSS rescore
  10. 2026-07-01 15:06 UTCEPSS rescore
  11. 2026-06-30 18:34 UTCEG score recompute
  12. 2026-06-30 18:32 UTCNVD updatefirst tracked

Frequently asked(5)

What is CVE-2026-10655?
CVE-2026-10655 is a medium vulnerability published on June 30, 2026. The asynchronous SNTP client in Zephyr (subsys/net/lib/sntp/sntp.c, sntpcloseasync) closed the UDP socket file descriptor directly from the calling thread immediately after detaching it from the network socket service, without synchronizing with the socket-service poll thread. The socket service…
When was CVE-2026-10655 disclosed?
CVE-2026-10655 was first published in the National Vulnerability Database on June 30, 2026, with the most recent update on July 14, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-10655 actively exploited?
CVE-2026-10655 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 16.8% percentile likelihood of exploitation in the next 30 days — higher percentiles indicate greater predicted risk.
What is the CVSS score of CVE-2026-10655?
CVE-2026-10655 has a CVSS v3 base score of 5.9 (NVD).
How do I remediate CVE-2026-10655?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-10655, 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-10655

Explore →

Is Your Infrastructure Affected by CVE-2026-10655?

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