Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-1342 — Vulnerability Class 1

1 vulnerabilities classified as CWE-1342. AI Chinese analysis included.

MITRE CWE Description
The processor does not properly clear microarchitectural state after incorrect microcode assists or speculative execution, resulting in transient execution. In many processor architectures an exception, mis-speculation, or microcode assist results in a flush operation to clear results that are no longer required. This action prevents these results from influencing architectural state that is intended to be visible from software. However, traces of this transient execution may remain in microarchitectural buffers, resulting in a change in microarchitectural state that can expose sensitive information to an attacker using side-channel analysis. For example, Load Value Injection (LVI) [REF-1202] can exploit direct injection of erroneous values into intermediate load and store buffers. Several conditions may need to be fulfilled for a successful attack: incorrect transient execution that results in remanence of sensitive information; attacker has the ability to provoke microarchitectural exceptions; operations and structures in victim code that can be exploited must be identified.
Common Consequences (1)
Confidentiality, Integrity Modify Memory, Read Memory, Execute Unauthorized Code or Commands
Mitigations (2)
Architecture and Design, Requirements Hardware ensures that no illegal data flows from faulting micro-ops exists at the microarchitectural level.
Effectiveness: High
Build and Compilation Include instructions that explicitly remove traces of unneeded computations from software interactions with microarchitectural elements e.g. lfence, sfence, mfence, clflush.
Effectiveness: High
Examples (1)
Faulting loads in a victim domain may trigger incorrect transient forwarding, which leaves secret-dependent traces in the microarchitectural state. Consider this example from [REF-1203].
void call_victim(size_t untrusted_arg) { *arg_copy = untrusted_arg; array[**trusted_ptr * 4096]; }
Bad · C
CVE ID Title CVSS Severity Published
CVE-2026-18796 QSPI flash encryption side-channel leakage — nRF5340 6.8 Medium 2026-09-07

Vulnerabilities classified as CWE-1342 represent 1 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.