CVE-2026-11809
Last modified
CVE-2026-11809 is a low-severity vulnerability rated 3.7/10 on the CVSS scale. The UpdateHub OTA client in subsys/mgmt/updatehub/updatehub.c contains an out-of-bounds / uninitialized-memory read in z_impl_updatehub_probe(). The probe response from the UpdateHub server is copied into a heap buffer (metadata) that is correctly NUL-terminated, but a second buffer (metadata_copy) is allocated with k_malloc (unzeroed) and filled with memcpy(metadata_copy, metadata, strlen(metadata)), which omits the terminating NUL. EPSS estimates a 0.27% chance of exploitation in the next 30 days.
Description
The UpdateHub OTA client in subsys/mgmt/updatehub/updatehub.c contains an out-of-bounds / uninitialized-memory read in z_impl_updatehub_probe(). The probe response from the UpdateHub server is copied into a heap buffer (metadata) that is correctly NUL-terminated, but a second buffer (metadata_copy) is allocated with k_malloc (unzeroed) and filled with memcpy(metadata_copy, metadata, strlen(metadata)), which omits the terminating NUL. Everything after the copied content remains uninitialized heap. When the first json_obj_parse() over the array descriptor fails, the code falls back to json_obj_parse(metadata_copy, strlen(metadata_copy), ...). The strlen() call scans past the copied bytes through uninitialized heap and, if no zero byte is found before the end of the allocation, reads beyond the buffer; the resulting over-long length is then parsed as JSON. The probe payload is fully controlled by the (malicious, compromised, or — without the optional CONFIG_UPDATEHUB_DTLS — on-path) UpdateHub server, which can craft a large payload that fails the first parse to drive this path. The consequence is a read of uninitialized heap, with a worst case of an out-of-bounds read past the metadata_copy allocation that can fault and crash the update thread/device, producing a network-triggerable denial of service. The over-read data is consumed only internally to evaluate the update and is not returned to the attacker, so there is no direct information disclosure and no out-of-bounds write. The fix zeroes metadata_copy with memset before the copy, guaranteeing NUL termination and bounding strlen() within the allocation.
Metrics
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L
Weakness Enumeration
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| zephyrproject | zephyr | >= 2.0.0, < 4.4.2 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-11809?
How severe is CVE-2026-11809?
How do I fix CVE-2026-11809?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-11800A flaw was found in Keycloak. This JWT algorithm confusion v…8.1
- CVE-2026-11802The FoodBook Lite - Online Food Ordering System plugin for W…5.3
- CVE-2026-11803A maliciously crafted PDF file, when parsed through Autodesk…7.8
- CVE-2026-11804Improper handling of insufficient permissions or privileges …5.2
- CVE-2026-11806IBM WebSphere Application Server - Liberty 17.0.0.3 through …7.5
- CVE-2026-11807A missing authorization vulnerability was found in the Event…9.6
- CVE-2026-1181Altium 365 workspace endpoints were configured with an overl…9
- CVE-2026-11810The UpdateHub firmware-update agent's probe handler (z_impl_…7.5
- CVE-2026-11811The UpdateHub over-the-air update client's start_coap_client…3.7
- CVE-2026-11812The UpdateHub management subsystem (subsys/mgmt/updatehub/up…2.5
- CVE-2026-11814A command injection vulnerability in the listed NETGEAR mode…4.9
- CVE-2026-11815An attacker who intercepts and tampers with traffic between …5.3
Are you affected by CVE-2026-11809?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
