SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-10657

LOW · CVSS 3.7 EPSS 0.29% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-07-05 · Last synced 2026-08-04

CyberRota Analysis

AI-Generated

The vulnerability affects Zephyr's DNS resolver, specifically in the handling of mDNS queries where a fixed-length memory comparison can lead to an out-of-bounds read if the hostname's final label is shorter than expected. This can result in a denial of service due to potential faults when accessing unmapped memory regions, though it does not lead to information disclosure. Organizations using Zephyr with the mDNS resolver enabled should prioritize addressing this issue to mitigate the risk of service interruptions.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-10657
Severity
LOW
CVSS
3.7
EPSS
0.29%

Original NVD Description

Zephyr's DNS resolver detects mDNS (.local) queries in dns_resolve_name_internal() (subsys/net/lib/dns/resolve.c) with memcmp(strrchr(query, '.'), ".local", 7), which always reads a fixed 7 bytes from the suffix pointer. When the resolved hostname's final label is shorter than 7 bytes (e.g. names ending in .org, .com, .net, .io, or a trailing dot), the comparison reads 1-2 bytes past the string's NUL terminator. The hostname (query) is the caller-supplied name passed through the standard getaddrinfo()/dns_get_addr_info()/dns_resolve_name() path and is influenceable by operators or remote inputs (server names from configuration, parsed URLs, or app-facing interfaces). On a tightly-sized buffer with no slack (for example a userspace getaddrinfo call where the hostname is copied with k_usermode_string_alloc_copy to exactly strlen+1 bytes), the over-read crosses the allocation boundary; if that boundary is unmapped (guard page, memory-domain boundary under MPU, or an address sanitizer) the over-read faults, causing a denial of service. The over-read bytes are never returned, so there is no information disclosure. The flaw is compiled only when CONFIG_MDNS_RESOLVER is enabled, exists since v1.10.0, and is fixed by replacing the fixed-length memcmp with a NUL-safe strcmp(ptr, ".local").

Related CVEs

Other vulnerabilities affecting the same vendor(s)