Monitor vulnerabilities like this one. Sign up free to get alerted when software you use is affected.
9.8

CVE-2026-10666: Zephyr IPv4 Address Parsing Allows Remote Code Execution

CVE-2026-10666 CVE-2026-10666
Summary

A bug in Zephyr's IPv4 address parsing code allows an attacker to execute malicious code on a connected device. This can happen when a device connects to a network or receives a DNS response. To fix this, update your Zephyr software to the latest version, which includes a patch that prevents the bug from occurring.

What to do

No fix is available yet. Check with your software vendor for updates.

Affected software
VendorProductAffected versions
zephyrproject zephyr < 4.5.0
>= 1.9.0, <= 4.4.1
Original title
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_...
Original 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.
mitre CVSS3.1 8.1
Vulnerability type
CWE-787 Out-of-bounds Write
CWE-121 Stack-based Buffer Overflow
Published: 12 Jul 2026 · Updated: 18 Jul 2026 · First seen: 12 Jul 2026