CVE-2026-12233

MEDIUMPre-NVD 5.95.9
EchelonGraph scoreMEDIUM confidence

This medium-severity CVE scores 5.9 under a secondary CVSS source (NVD's own analysis pending). EPSS exploit probability: 0.3%, top 77% 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).

Triggered by: NVD CVSS baseline
Sources: epss, secondary
5.9EG
EchelonGraph verdictMonitorLow exploitation likelihood right now — keep watching.
  • Lower severity and no public exploit yet
CISA-KEV: Not listedEPSS PROB: 0%CVSS: 5.9Exploit: None knownExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

The PSA Protected Storage credential backend (subsys/net/lib/tls_credentials/tls_credentials_trusted.c) declared its credential-store mutex as a plain zero-filled static struct k_mutex credential_lock; and never called k_mutex_init() on it. A statically zero-filled k_mutex has an uninitialized wait queue (its dlist head/tail are NULL instead of the self-referential sentinels that k_mutex_init/K_MUTEX_DEFINE install). The uncontended lock path does not touch the wait queue, so the defect is latent and serialized use behaves correctly.

When two execution contexts contend on the lock, k_mutex_lock() pends the blocking thread on the wait queue via z_pend_curr(), which calls sys_dlist_append() on the zeroed list and dereferences a NULL tail pointer (tail->next = node), faulting the kernel. The lock is held during TLS handshake credential loading and by all credential add/get/delete operations, so a deployment performing concurrent TLS handshakes (for example a server handling multiple simultaneous connections from a remote peer) or a credential-management operation concurrent with a handshake can trigger the dereference.

The impact is a denial of service: a deterministic kernel panic / device reset on the first contention. There is no memory corruption beyond the NULL dereference and no confidentiality or integrity impact; mutual exclusion on the fast path remains correct. Exposure is limited to builds with CONFIG_TLS_CREDENTIALS_BACKEND_PROTECTED_STORAGE enabled (PSA Protected Storage / TF-M platforms); the default volatile RAM backend initializes its lock correctly and is unaffected.

The fix initializes the mutex statically with K_MUTEX_DEFINE(credential_lock), providing a valid wait queue so the contended path no longer touches a NULL list.

CVSS v3
5.9
EG Score
5.9(medium)
EG Risk
27(Track)
EG Risk 27/100SSVC: Track

EG Risk is EchelonGraph's 0–100 priority score: it fuses intrinsic severity with real-world exploitation and automatability so you can rank equal-severity CVEs and fix the most dangerous first. Higher = act sooner. Distinct from the 0–10 EG Score (severity).

How it’s computed
Severity59% × 45%
Exploitation0% × 40%
Automatability0% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
0%
EPSS %ILE
23%
KEV
Not listed

Published

August 12, 2026

Last Modified

August 13, 2026

Advisory Details (2)

Auto-updated Aug 12, 2026
Patch available. Sources: github, github_commit.
github Patch Available

Uninitialized mutex in TLS trusted-credential backend causes kernel NULL-deref DoS under contention · Advisory · zephyrproject-rtos/zephyr · GitHub

https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-57c4-xcq2-fqj7
github_commit

commit 29581d586f3d (zephyrproject-rtos/zephyr)

Fix landed in zephyrproject-rtos/zephyr commit 29581d586f3d — awaiting tagged release

https://github.com/zephyrproject-rtos/zephyr/commit/29581d586f3d68ec8bb1448b522e5470d4a06aa9

Weakness Classification(1)

MITRE Common Weakness Enumeration — the root-cause categories this CVE belongs to.

Data Freshness Timeline

(refreshed 11× in last 7d / 28× 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.

  1. 2026-08-25 21:55 UTCEG score recompute
  2. 2026-08-25 13:48 UTCEPSS rescore
  3. 2026-08-24 21:37 UTCEG score recompute
  4. 2026-08-23 21:02 UTCEG score recompute
  5. 2026-08-23 00:19 UTCEPSS rescore
  6. 2026-08-22 20:45 UTCEG score recompute
  7. 2026-08-21 23:48 UTCEPSS rescore
  8. 2026-08-21 20:27 UTCEG score recompute
  9. 2026-08-20 22:55 UTCEPSS rescore
  10. 2026-08-19 19:51 UTCEG score recompute
  11. 2026-08-19 17:03 UTCEPSS rescore
  12. 2026-08-18 19:33 UTCEG score recompute
  13. 2026-08-18 13:48 UTCEPSS rescore
  14. 2026-08-17 19:15 UTCEG score recompute
  15. 2026-08-16 17:38 UTCEG score recompute
  16. 2026-08-16 14:56 UTCEPSS rescore
  17. 2026-08-16 02:14 UTCEPSS rescore
  18. 2026-08-15 17:10 UTCEG score recompute
  19. 2026-08-15 01:30 UTCEPSS rescore
  20. 2026-08-14 16:52 UTCEG score recompute
  21. 2026-08-13 22:00 UTCEPSS rescore
  22. 2026-08-13 16:31 UTCEG score recompute
  23. 2026-08-13 15:34 UTCEG score recompute
  24. 2026-08-13 05:47 UTCEG score recompute
  25. 2026-08-12 13:50 UTCEPSS rescore
Show 3 more
  1. 2026-08-12 05:29 UTCEG score recompute
  2. 2026-08-12 04:19 UTCEG score recompute
  3. 2026-08-12 04:19 UTCMITRE cvelistV5first tracked

Frequently asked(5)

What is CVE-2026-12233?
CVE-2026-12233 is a medium vulnerability published on August 12, 2026. The PSA Protected Storage credential backend (subsys/net/lib/tlscredentials/tlscredentialstrusted.c) declared its credential-store mutex as a plain zero-filled static struct kmutex credentiallock; and never called kmutexinit() on it. A statically zero-filled kmutex has an uninitialized wait queue…
When was CVE-2026-12233 disclosed?
CVE-2026-12233 was first published in the National Vulnerability Database on August 12, 2026, with the most recent update on August 13, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-12233 actively exploited?
CVE-2026-12233 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 0% probability of exploitation in the next 30 days, which ranks it in the top 77.3% of all scored CVEs.
What is the CVSS score of CVE-2026-12233?
CVE-2026-12233 has a CVSS v3 base score of 5.9 (NVD).
How do I remediate CVE-2026-12233?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-12233, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

Explore the affected products and dependency analysis for CVE-2026-12233

Explore →

Is Your Infrastructure Affected by CVE-2026-12233?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.