Skip to main content

Zephyr UpdateHub EUVDEUVD-2026-55805

| CVE-2026-11810 HIGH
NULL Pointer Dereference (CWE-476)
2026-08-10 zephyr
7.5
CVSS 3.1 · Vendor: zephyr
Share

Severity by source

Vendor (zephyr) PRIMARY
7.5 HIGH
AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
vuln.today AI
5.9 MEDIUM

Server compromise or network MITM is required, neither achievable at will, warranting AC:H over the vendor's AC:L; all other metrics match the description.

3.1 AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
4.0 AV:N/AC:H/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N

Primary rating from Vendor (zephyr).

CVSS VectorVendor: zephyr

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

3
Source Code Evidence Fetched
Aug 10, 2026 - 21:21 vuln.today
Analysis Generated
Aug 10, 2026 - 21:21 vuln.today
CVE Published
Aug 10, 2026 - 20:23 cve.org
HIGH 7.5

DescriptionCVE.org

The UpdateHub firmware-update agent's probe handler (z_impl_updatehub_probe() in subsys/mgmt/updatehub/updatehub.c) parses the JSON metadata returned by the update server into a fixed two-level nested-array struct. After parsing it validates only the outer array length (objects_len != 2) and then dereferences objects[1].objects[0].objects.sha256sum via strlen() without checking that the inner object array of element [1] is non-empty.

The metadata is attacker-influenceable network input: the agent fetches it over CoAP from the configured UpdateHub server during its routine OTA probe. A malicious or compromised update server (or, when DTLS is disabled, a network man-in-the-middle) can return a response whose second outer object array is empty. Because the parse target is zero-initialised, the corresponding objects[1].objects[0].objects.sha256sum pointer is NULL, and the subsequent strlen() dereferences address zero. The same defect exists in both the 'any boards' and 'some boards' metadata layouts.

The resulting CPU fault is fatal under Zephyr's default error handling, halting or resetting the device, so the flaw is a remotely triggerable denial of service. Impact is limited to availability; it is a read from NULL with no out-of-bounds write, memory corruption, or information disclosure. The fix rejects metadata whose inner object array is empty before any dereference, on both layouts.

AnalysisAI

Zephyr RTOS versions 3.7.0 through 4.4.1 expose a remotely triggerable NULL pointer dereference in the UpdateHub OTA firmware-update agent that crashes and resets any affected device. The probe handler parses CoAP-delivered JSON metadata into a fixed nested-array struct but validates only the outer array length, leaving the inner sha256sum pointer NULL when the server returns an empty inner object array; a subsequent strlen() on that NULL pointer produces a fatal CPU fault. A malicious or compromised UpdateHub server - or a network man-in-the-middle when DTLS is disabled - can trigger this unconditionally. No public exploit is identified at time of analysis; a vendor patch is available in version 4.4.2.

Technical ContextAI

The vulnerable component is the UpdateHub subsystem (subsys/mgmt/updatehub/updatehub.c) within the Zephyr real-time operating system (CPE: cpe:2.3:a:zephyrproject:zephyr). UpdateHub is an OTA firmware distribution mechanism that communicates with a configured update server over CoAP, optionally protected by DTLS. The JSON response is deserialized into a fixed two-level nested-array C struct covering both 'any boards' and 'some boards' metadata layouts. CWE-476 (NULL Pointer Dereference) is the root cause: the code validates that the outer array has exactly two elements but does not check that the inner array at objects[1] is non-empty. Because the struct is zero-initialized, an empty inner array leaves the sha256sum char-pointer NULL. The subsequent strlen() on that pointer dereferences address zero. Under Zephyr's default hard-fault handler this is an unrecoverable CPU exception, causing device halt or reset. The fix, visible in commit 3424082022cb39d568434021b1d6f68b6a7fb3bf, adds an explicit objects_len == 0 guard before any dereference in both layout paths.

RemediationAI

Upgrade to Zephyr RTOS 4.4.2 or later, which incorporates the fix introduced in upstream commit 3424082022cb39d568434021b1d6f68b6a7fb3bf; the patch adds inner-array length checks before any pointer dereference in both the 'any boards' and 'some boards' code paths, returning UPDATEHUB_METADATA_ERROR on malformed responses. The advisory and patch are at https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-jfpc-324j-84ww and https://github.com/zephyrproject-rtos/zephyr/commit/3424082022cb39d568434021b1d6f68b6a7fb3bf respectively. Where an immediate upgrade is not possible, enabling DTLS on all CoAP UpdateHub sessions eliminates the network MITM path, though it does not protect against a compromised update server. Additionally, restricting outbound device traffic so that UpdateHub probes can only reach the legitimate OTA server IP reduces the server-impersonation surface. Disabling the UpdateHub subsystem entirely eliminates the attack surface at the cost of losing OTA update capability until patching is feasible.

More in Zephyr

View all
CVE-2023-4260 CRITICAL POC
10.0 Sep 27

Potential off-by-one buffer overflow vulnerability in the Zephyr fuse file system. Rated critical severity (CVSS 10.0),

CVE-2023-5055 CRITICAL POC
9.8 Nov 21

Possible variant of CVE-2021-3434 in function le_ecred_reconf_req. Rated critical severity (CVSS 9.8), this vulnerabilit

CVE-2023-4257 CRITICAL POC
9.8 Oct 13

Unchecked user input length in /subsys/net/l2/wifi/wifi_shell.c can cause buffer overflows. Rated critical severity (CVS

CVE-2023-3725 CRITICAL POC
9.8 Oct 06

Potential buffer overflow vulnerability in the Zephyr CAN bus subsystem. Rated critical severity (CVSS 9.8), this vulner

CVE-2021-3323 CRITICAL POC
9.8 Oct 12

Integer Underflow in 6LoWPAN IPHC Header Uncompression in Zephyr. Rated critical severity (CVSS 9.8), this vulnerability

CVE-2021-3625 CRITICAL POC
9.8 Oct 05

Buffer overflow in Zephyr USB DFU DNLOAD. Rated critical severity (CVSS 9.8), this vulnerability is remotely exploitable

CVE-2021-3319 CRITICAL POC
9.8 Oct 05

DOS: Incorrect 802154 Frame Validation for Omitted Source / Dest Addresses. Rated critical severity (CVSS 9.8), this vul

CVE-2018-1000800 CRITICAL POC
9.8 Sep 06

zephyr-rtos version 1.12.0 contains a NULL base pointer reference vulnerability in sys_ring_buf_put(), sys_ring_buf_get(

CVE-2023-4264 CRITICAL POC
9.6 Sep 27

Potential buffer overflow vulnerabilities n the Zephyr Bluetooth subsystem. Rated critical severity (CVSS 9.6), this vul

CVE-2026-1678 CRITICAL POC
9.4 Mar 05

Buffer overflow in Zephyr RTOS dns_unpack_name() function causing OOB writes. PoC available.

CVE-2024-1638 CRITICAL POC
9.1 Feb 19

The documentation specifies that the BT_GATT_PERM_READ_LESC and BT_GATT_PERM_WRITE_LESC defines for a Bluetooth characte

CVE-2023-5753 HIGH POC
8.8 Oct 25

Potential buffer overflows in the Bluetooth subsystem due to asserts being disabled in /subsys/bluetooth/host/hci_core.c

Share

EUVD-2026-55805 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy