CVE-2026-12235

MEDIUMPre-NVD 6.36.3
EchelonGraph scoreMEDIUM confidence

This medium-severity CVE scores 6.3 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).

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

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

The Linkable Loadable Extensions (llext) subsystem mis-handles PLT/RELA relocation entries when linking a relocatable (partially-linked) ELF extension. In llext_link_plt() (subsys/llext/llext_link.c), the relocatable branch (tgt != NULL, the path used for Xtensa relocatable objects) computed the patch address as ext->mem[LLEXT_MEM_TEXT] - text.sh_offset + rela.r_offset + tgt->sh_offset and then performed the relocation write there without validating rela.r_offset. Its sibling shared/dynamic branch already rejected out-of-range offsets via llext_file_offset().

rela.r_offset is read directly from the ELF's RELA table, so a crafted entry with an offset larger than the target section makes the write land arbitrarily far outside the extension's text buffer. The result is an attacker-influenced out-of-bounds write (the location via r_offset, the written value being the resolved symbol address) performed in supervisor context at link time, before any extension code runs.

The path is reached from llext_load() whenever an application loads an attacker-influenced ELF extension on Xtensa with writable storage; llext is documented to accept extensions of untrusted origin. Impact is supervisor-context memory corruption (integrity and availability loss, and a sandbox-boundary escape for user-mode extensions). Exploitation is gated by the Xtensa relocatable PLT path and writable storage, and turning the out-of-range write into a useful primitive is non-trivial.

The fix adds a bound check rejecting any RELA entry whose r_offset >= tgt->sh_size, mirroring the existing validation in the shared branch.

CVSS v3
6.3
EG Score
6.3(medium)
EG Risk
44(Track)
EG Risk 44/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
Severity63% × 45%
Exploitation40% × 40%
Automatability0% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
0%
EPSS %ILE
1%
KEV
Not listed

Published

August 12, 2026

Last Modified

August 26, 2026

Advisory Details (2)

Auto-updated Aug 12, 2026
🔬 Proof of concept available. Patch available. Sources: github_commit, github.
github Patch Available🟡 PoC Available

Crafted LLEXT relocation entries can trigger kernel out-of-bounds writes during load via unchecked r_offset · Advisory · zephyrproject-rtos/zephyr · GitHub

https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-xv9q-6mrf-8j49
github_commit

commit 106540afbd22 (zephyrproject-rtos/zephyr)

Fix landed in zephyrproject-rtos/zephyr commit 106540afbd22 — awaiting tagged release

https://github.com/zephyrproject-rtos/zephyr/commit/106540afbd22087ad40b90f53fb22657754a719e

Weakness Classification(1)

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

Data Freshness Timeline

(refreshed 6× 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-27 16:34 UTCEG score recompute
  2. 2026-08-27 14:24 UTCEPSS rescore
  3. 2026-08-26 17:20 UTCEG score recompute
  4. 2026-08-26 01:26 UTCEG score recompute
  5. 2026-08-25 13:48 UTCEPSS rescore
  6. 2026-08-25 02:18 UTCEG score recompute
  7. 2026-08-22 04:55 UTCEG score recompute
  8. 2026-08-21 23:48 UTCEPSS rescore
  9. 2026-08-21 05:47 UTCEG score recompute
  10. 2026-08-20 22:55 UTCEPSS rescore
  11. 2026-08-20 06:39 UTCEG score recompute
  12. 2026-08-19 17:03 UTCEPSS rescore
  13. 2026-08-19 07:31 UTCEG score recompute
  14. 2026-08-18 13:48 UTCEPSS rescore
  15. 2026-08-18 08:23 UTCEG score recompute
  16. 2026-08-17 09:15 UTCEG score recompute
  17. 2026-08-16 14:56 UTCEPSS rescore
  18. 2026-08-16 10:07 UTCEG score recompute
  19. 2026-08-16 02:14 UTCEPSS rescore
  20. 2026-08-15 11:00 UTCEG score recompute
  21. 2026-08-15 01:30 UTCEPSS rescore
  22. 2026-08-13 12:45 UTCEG score recompute
  23. 2026-08-12 13:50 UTCEPSS rescore
  24. 2026-08-12 13:37 UTCEG score recompute
  25. 2026-08-12 12:55 UTCEG score recompute
Show 3 more
  1. 2026-08-12 05:29 UTCEG score recompute
  2. 2026-08-12 04:59 UTCEG score recompute
  3. 2026-08-12 04:58 UTCMITRE cvelistV5first tracked

Frequently asked(5)

What is CVE-2026-12235?
CVE-2026-12235 is a medium vulnerability published on August 12, 2026. The Linkable Loadable Extensions (llext) subsystem mis-handles PLT/RELA relocation entries when linking a relocatable (partially-linked) ELF extension. In llextlinkplt() (subsys/llext/llextlink.c), the relocatable branch (tgt != NULL, the path used for Xtensa relocatable objects) computed the patch…
When was CVE-2026-12235 disclosed?
CVE-2026-12235 was first published in the National Vulnerability Database on August 12, 2026, with the most recent update on August 26, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-12235 actively exploited?
CVE-2026-12235 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 99.3% of all scored CVEs.
What is the CVSS score of CVE-2026-12235?
CVE-2026-12235 has a CVSS v3 base score of 6.3 (NVD).
How do I remediate CVE-2026-12235?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-12235, 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-12235

Explore →

Is Your Infrastructure Affected by CVE-2026-12235?

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