Zephyr's dynamic kernel-object tracking (kernel/userspace/userspace.c, formerly kernel/userspace.c) maintains a doubly-linked list (obj_list) of dynamically allocated kernel objects. Iteration over this list in k_object_wordlist_foreach() was performed under lists_lock using the SAFE iterator (which caches the next node), but list removal and freeing of nodes was performed under different, disjoint spinlocks: objfree_lock in k_object_free() and obj_lock in unref_check(). On an SMP system, while one CPU iterated obj_list under lists_lock, another CPU could unlink and k_free() the dyn_obj node that the iterator had cached as its next pointer, causing the iterator to dereference freed kernel memory (use-after-free / dangling list traversal). All of the racing operations are reachable from unprivileged user-mode threads via system calls: k_object_alloc/k_object_alloc_size and k_object_release drive removals through unref_check() (under obj_lock), while k_thread_abort and thread creation drive the iteration through k_thread_perms_all_clear()/k_thread_perms_inherit() (under lists_lock). A deprivileged user thread on a CONFIG_SMP + CONFIG_USERSPACE build can therefore corrupt the kernel's object-tracking structures across the userspace security boundary, yielding kernel memory corruption (potential privilege escalation) or a kernel crash (denial of service). The fix removes objfree_lock and serializes every obj_list modification under lists_lock, including holding it across find+remove in k_object_free() and around unref_check() in k_thread_perms_clear(). Affects CONFIG_SMP+CONFIG_USERSPACE+CONFIG_DYNAMIC_OBJECTS configurations; the defect dates to the 2019 spinlockification (commit 8a3d57b6cc6, first released in v1.14.0) and shipped through v4.4.0.
CVE-2026-10667
This high-severity CVE scores 7.8 under a secondary CVSS source (NVD's own analysis pending). EPSS exploit probability: 0.1%, top 99% of all CVEs by exploit prediction. GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).
- High severity, but no confirmed exploitation yet
No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.
- CVSS v3
- 7.8
- EG Score
- 7.8(medium)
- EPSS
- 1.2%
- KEV
- Not listed
Published
July 12, 2026
Last Modified
July 14, 2026
Advisory Details (2)
Auto-updated Jul 12, 2026kernel: SMP use-after-free in dynamic object list due to inconsistent locking. · Advisory · zephyrproject-rtos/zephyr · GitHub
https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-9x5j-h3rh-x579commit fdc42fa256b8 (zephyrproject-rtos/zephyr)
Fix landed in zephyrproject-rtos/zephyr commit fdc42fa256b8 — awaiting tagged release
https://github.com/zephyrproject-rtos/zephyr/commit/fdc42fa256b8c2a7b27790f032d5385f8058c4a9Weakness Classification(1)
MITRE Common Weakness Enumeration — the root-cause categories this CVE belongs to.
Data Freshness Timeline
(refreshed 11× in last 7d / 11× in last 30d)
Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.
- 2026-07-15 21:47 UTCEG score recompute
- 2026-07-15 16:57 UTCEPSS rescore
- 2026-07-15 08:56 UTCEG score recompute
- 2026-07-15 02:00 UTCEPSS rescore
- 2026-07-14 20:00 UTCEG score recompute
- 2026-07-14 07:10 UTCEG score recompute
- 2026-07-13 22:30 UTCEPSS rescore
- 2026-07-13 18:20 UTCEG score recompute
- 2026-07-13 05:28 UTCEG score recompute
- 2026-07-12 16:38 UTCEG score recompute
- 2026-07-12 16:37 UTCMITRE cvelistV5first tracked
Frequently asked(5)
What is CVE-2026-10667?
When was CVE-2026-10667 disclosed?
Is CVE-2026-10667 actively exploited?
What is the CVSS score of CVE-2026-10667?
How do I remediate CVE-2026-10667?
Dependency Blast Radius
Explore the affected products and dependency analysis for CVE-2026-10667
Is Your Infrastructure Affected by CVE-2026-10667?
EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.