8 vulnerabilities classified as CWE-1326. AI Chinese analysis included.
CWE-1326 represents a critical hardware design flaw where the foundational root of trust lacks immutability, allowing attackers to subvert secure boot mechanisms. This weakness typically manifests when the hardware’s initial verification stage relies on mutable storage or keys that can be altered, enabling adversaries to inject malicious boot code or bypass authentication checks entirely. By compromising the immutable root, attackers gain persistent low-level access, potentially leading to full system compromise and data exfiltration. To mitigate this risk, developers must ensure that the root of trust is established in read-only, hardware-enforced memory regions, such as one-time programmable fuses or secure boot ROMs. Rigorous validation of the boot chain’s integrity and strict separation between mutable software and immutable hardware components are essential strategies to prevent unauthorized code execution and maintain system authenticity from the earliest stages of initialization.
... always_ff @(posedge clk_i) begin if (req_i) begin if (!we_i) begin raddr_q <= addr_i[$clog2(RomSize)-1+3:3]; end else begin mem[addr_i[$clog2(RomSize)-1+3:3]] <= wdata_i; end end end ... // this prevents spurious Xes from propagating into the speculative fetch stage of the core assign rdata_o = (raddr_q < RomSize) ? mem[raddr_q] : '0; ...... always_ff @(posedge clk_i) begin if (req_i) begin raddr_q <= addr_i[$clog2(RomSize)-1+3:3]; end end ... // this prevents spurious Xes from propagating into the speculative fetch stage of the core assign rdata_o = (raddr_q < RomSize) ? mem[raddr_q] : '0; ...| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2025-34502 | Shuffle Master Deck Mate 2 Missing Secure Boot — Deck Mate 2 | 6.8 | - | 2025-10-24 |
| CVE-2025-5834 | Pioneer DMH-WT7600NEX Missing Immutable Root of Trust in Hardware Local Privilege Escalation Vulnerability — DMH-WT7600NEX | 7.8AI | HighAI | 2025-06-25 |
| CVE-2025-31929 | Siemens VersiCharge AC Series 安全漏洞 — IEC 1Ph 7.4kW Child socket | 4.2 | Medium | 2025-05-13 |
| CVE-2025-2762 | CarlinKit CPC200-CCPA Missing Root of Trust Local Privilege Escalation Vulnerability — CPC200-CCPA | 7.8 | - | 2025-04-23 |
| CVE-2024-8357 | Visteon Infotainment App SoC Missing Immutable Root of Trust in Hardware Local Privilege Escalation Vulnerability — Infotainment | 7.8 | - | 2024-11-22 |
| CVE-2024-30111 | Missing Root Detection vulnerability affects DRYiCE AEX v10 — DRYiCE AEX | 3.3 | Low | 2024-06-28 |
| CVE-2024-32742 | Siemens SIMATIC CN 4100 安全漏洞 — SIMATIC CN 4100 | 7.6 | High | 2024-05-14 |
| CVE-2022-38773 | Siemens SIMATIC S7-1500 安全漏洞 — SIMATIC Drive Controller CPU 1504D TF | 4.6 | Medium | 2023-01-10 |
Vulnerabilities classified as CWE-1326 represent 8 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.