CVE-2026-11812
Last modified
CVE-2026-11812 is a low-severity vulnerability rated 2.5/10 on the CVSS scale. The UpdateHub management subsystem (subsys/mgmt/updatehub/updatehub.c) drives every update operation through a single file-scope ctx structure that holds the CoAP block context, payload buffer, status code, socket, and a one-element poll-fd array fds[1]. Access to ctx was not serialized, and prepare_fds() wrote ctx.fds[ctx.nfds] and incremented ctx.nfds with no bounds check. Two independent paths mutate ctx concurrently: the background autohandler running on the system workqueue, and user-triggered operations reached through the updatehub run shell command, direct API calls, or — since the operations are exposed as syscalls — userspace threads.
Description
The UpdateHub management subsystem (subsys/mgmt/updatehub/updatehub.c) drives every update operation through a single file-scope ctx structure that holds the CoAP block context, payload buffer, status code, socket, and a one-element poll-fd array fds[1]. Access to ctx was not serialized, and prepare_fds() wrote ctx.fds[ctx.nfds] and incremented ctx.nfds with no bounds check. Two independent paths mutate ctx concurrently: the background autohandler running on the system workqueue, and user-triggered operations reached through the updatehub run shell command, direct API calls, or — since the operations are exposed as syscalls — userspace threads. When a second flow enters prepare_fds() while ctx.nfds is already 1, the write lands one element past the array; by struct layout it overlaps the adjacent ctx.sock/ctx.nfds members. More broadly, the unsynchronized sharing lets two flows interleave connection setup and teardown, double-closing a socket descriptor or scribbling the shared buffers. The result is corruption of the update subsystem's internal state and denial of service of the firmware-update path; the out-of-bounds write is contained within the ctx structure and there is no demonstrated path to memory outside it or to code execution. Triggering requires a local actor able to invoke update operations (or, with CONFIG_USERSPACE, an unprivileged userspace thread) and to win a timing race against the background handler; remote peers cannot control the race timing. The fix serializes the entry points with a mutex and adds a bounds check to prepare_fds().
Metrics
CVSS:3.1/AV:L/AC:H/PR:L/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.1 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-11812?
How severe is CVE-2026-11812?
How do I fix CVE-2026-11812?
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-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-11809The UpdateHub OTA client in subsys/mgmt/updatehub/updatehub.…3.7
- 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-11814A command injection vulnerability in the listed NETGEAR mode…4.9
- CVE-2026-11815An attacker who intercepts and tampers with traffic between …5.3
- CVE-2026-11816Keras versions prior to 3.14.0 are vulnerable to a path trav…8.1
- CVE-2026-11818The WPCafe – Restaurant Menu, Online Food Ordering & Table B…5.4
- CVE-2026-11819Module: plugins/modules/keyring_info.py CVSS 3.1: 5.5 MEDI…5.5
- CVE-2026-1182GitLab has remediated an issue in GitLab CE/EE affecting all…4.3
Are you affected by CVE-2026-11812?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
