Zephyr's DNS resolver (subsys/net/lib/dns) parses resource records from DNS responses in dns_unpack_answer(), which validated only the fixed RR header (type, class, TTL, rdlength) and accepted any attacker-declared rdlength, including one extending past the end of the received datagram. The TXT and SRV consumers in dns_validate_record() (resolve.c) then read up to rdlength bytes (clamped only to a record-type maximum such as DNS_MAX_TEXT_SIZE, default 64, not to the packet) from the receive buffer via memcpy without their own bounds check, and pass the result to the application's resolve callback. A malicious or spoofed DNS server, an on-path attacker forging UDP DNS replies, or (with mDNS/LLMNR enabled) any LAN node can craft a truncated TXT or SRV response that causes an out-of-bounds read of adjacent receive-pool memory; the disclosed stale bytes (residual contents of prior DNS packets / uninitialized pool memory) are returned to the application as TXT/SRV record contents, an information leak, and may in some configurations cross the allocation boundary and fault, causing a denial of service. The read is bounded (~64 bytes for TXT, ~6 for SRV) and read-only (no write). The fix rejects any record whose declared rdata extends past dns_msg->msg_size at the single chokepoint in dns_unpack_answer(). Affected: v4.3.0 and v4.4.0.
CVE-2026-10652
This high-severity CVE scores 7.4 under NVD CVSS v3. EPSS exploit probability: 0.3%, top 84% 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).
- High severity, but no confirmed exploitation yet
No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.
- CVSS v3
- 7.4
- EG Score
- 7.4(medium)
- EPSS
- 16.5%
- KEV
- Not listed
Published
June 30, 2026
Last Modified
July 14, 2026
Advisory Details (2)
Auto-updated Jun 30, 2026Out-of-bounds read in Zephyr DNS resolver TXT/SRV record parsing (unvalidated rdlength) · Advisory · zephyrproject-rtos/zephyr · GitHub
https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-3jxq-xx8g-q8j2commit 58b46c81c679 (zephyrproject-rtos/zephyr)
Fix landed in zephyrproject-rtos/zephyr commit 58b46c81c679 — awaiting tagged release
https://github.com/zephyrproject-rtos/zephyr/commit/58b46c81c6796dac4dc7391f32ba006474f94dc8Weakness Classification(1)
MITRE Common Weakness Enumeration — the root-cause categories this CVE belongs to.
Data Freshness Timeline
(refreshed 23× in last 7d / 45× 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.
- 2026-07-15 20:36 UTCEG score recompute
- 2026-07-15 16:57 UTCEPSS rescore
- 2026-07-15 08:31 UTCEG score recompute
- 2026-07-15 02:00 UTCEPSS rescore
- 2026-07-14 20:23 UTCEG score recompute
- 2026-07-14 19:21 UTCNVD updateCVSS v3 → 7.4 · severity → HIGH
- 2026-07-14 19:00 UTCMITRE cvelistV5CVSS v3 → 4.8 · severity → MEDIUM
- 2026-07-14 08:19 UTCEG score recompute
- 2026-07-13 22:30 UTCEPSS rescore
- 2026-07-13 20:14 UTCEG score recompute
- 2026-07-13 08:09 UTCEG score recompute
- 2026-07-13 06:12 UTCEPSS rescore
- 2026-07-12 20:04 UTCEG score recompute
- 2026-07-12 07:59 UTCEG score recompute
- 2026-07-12 05:46 UTCEPSS rescore
- 2026-07-11 19:54 UTCEG score recompute
- 2026-07-11 08:27 UTCEPSS rescore
- 2026-07-11 07:49 UTCEG score recompute
- 2026-07-10 19:44 UTCEG score recompute
- 2026-07-10 07:39 UTCEG score recompute
- 2026-07-09 19:34 UTCEG score recompute
- 2026-07-09 19:10 UTCEPSS rescore
- 2026-07-09 07:27 UTCEG score recompute
- 2026-07-08 19:21 UTCEG score recompute
- 2026-07-08 15:15 UTCEPSS rescore
Show 20 moreShow fewer
- 2026-07-08 15:15 UTCEPSS rescore
- 2026-07-08 07:15 UTCEG score recompute
- 2026-07-07 19:00 UTCEG score recompute
- 2026-07-07 13:46 UTCEPSS rescore
- 2026-07-07 06:53 UTCEG score recompute▲ 2.60
- 2026-07-06 21:35 UTCNVD updateCVSS v3 → 7.4 · severity → HIGH
- 2026-07-06 16:27 UTCEPSS rescore
- 2026-07-06 04:50 UTCEG score recompute
- 2026-07-06 02:23 UTCEPSS rescore
- 2026-07-05 02:47 UTCEG score recompute
- 2026-07-05 02:30 UTCEPSS rescore
- 2026-07-05 02:30 UTCEPSS rescore
- 2026-07-04 06:31 UTCEPSS rescore
- 2026-07-04 00:44 UTCEG score recompute
- 2026-07-02 22:40 UTCEG score recompute
- 2026-07-01 20:37 UTCEG score recompute
- 2026-07-01 15:06 UTCEPSS rescore
- 2026-07-01 15:06 UTCEPSS rescore
- 2026-06-30 18:34 UTCEG score recompute
- 2026-06-30 18:32 UTCNVD updatefirst tracked
Related CVEs(same CWE)
Same CWE
10 shownCWE-125
- CVE-2014-2898EG 9.8CRITICAL
- CVE-2014-2897EG 9.8CRITICAL
- CVE-2014-2896EG 9.8CRITICAL
- CVE-2015-9290EG 9.8CRITICAL
- CVE-2016-10749EG 9.8CRITICAL
- CVE-1999-0006EG 9.8EPSS 96%CRITICAL
- CVE-2014-3180EG 9.1CRITICAL
- CVE-2014-1508EG 9.1EPSS 90%CRITICAL
- CVE-2016-5198NVD 8.8EG 9.0 KEVEPSS 98%HIGH
- CVE-2016-4523NVD 7.5EG 9.0 KEVEPSS 98%HIGH
Frequently asked(5)
What is CVE-2026-10652?
When was CVE-2026-10652 disclosed?
Is CVE-2026-10652 actively exploited?
What is the CVSS score of CVE-2026-10652?
How do I remediate CVE-2026-10652?
Dependency Blast Radius
Explore the affected products and dependency analysis for CVE-2026-10652
Is Your Infrastructure Affected by CVE-2026-10652?
EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.