SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-10666

HIGH · CVSS 8.1 EPSS 0.45% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-07-12 · Last synced 2026-08-11

CyberRota Analysis

AI-Generated

The vulnerability exists in the `parse_ipv4()` function, where an attacker can exploit a buffer overflow by providing a crafted address string that exceeds the fixed 17-byte stack buffer size, leading to potential memory corruption and denial of service, or even control-flow hijacking. Applications that utilize the standard socket API for address resolution, particularly those using the Zephyr OS versions from v1.9.0 to v4.4.0, should prioritize patching this vulnerability to mitigate risks associated with untrusted network inputs. Additionally, it is important to note that a similar issue persists in the `parse_ipv6()` function, which also requires attention.

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-10666
Severity
HIGH
CVSS
8.1
EPSS
0.45%

Original NVD Description

parse_ipv4() in subsys/net/ip/utils.c (reached via net_ipaddr_parse() for strings of the form "a.b.c.d:port") copies the port substring into a fixed 17-byte stack buffer (char ipaddr[NET_IPV4_ADDR_LEN + 1]) using a length of str_len - end - 1, where str_len is the full, unbounded input length and end is only the (<=15-byte) offset of the ':' delimiter. Because the destination size is never consulted, a crafted address string with a long suffix after the colon (e.g. "1.2.3.4:" followed by hundreds of bytes) causes an out-of-bounds stack write whose length and contents are fully attacker-controlled (memcpy of the suffix plus a trailing NUL), enabling memory corruption and at minimum a denial of service, and potentially control-flow hijack. The parser is reached from the standard socket API (zsock_getaddrinfo / literal-address resolution), DNS server-string configuration, and the eswifi Wi-Fi co-processor DNS-response path, so an application that resolves a network-influenced address string is exposed. The bug was introduced when the parser was added (Zephyr v1.9.0) and shipped in all releases through v4.4.0. The fix removes the unbounded copy and validates the port length before copying into a small dedicated buffer. Note: the equivalent IPv6 "[addr]:port" path in parse_ipv6() retains the same unbounded copy at this commit and remains a separate, still-reachable instance of the defect.

Related CVEs

Other vulnerabilities affecting the same vendor(s)