1 vulnerabilities classified as CWE-1310. AI Chinese analysis included.
CWE-1310 represents a critical architectural weakness where a System-on-Chip lacks the capability to patch immutable Read-Only Memory code. Because ROM-based bootloaders often establish the Root-of-Trust, any discovered vulnerabilities remain permanently exploitable, allowing attackers to bypass security mechanisms or execute arbitrary code with persistent privileges. This immutable nature prevents standard software updates from mitigating flaws, effectively locking the device into a vulnerable state. To avoid this, developers must implement secure boot processes that verify code integrity before execution and design hardware architectures supporting secure, authenticated firmware updates for critical boot components. By ensuring that only verified, updatable code runs during the initial boot phase, organizations can maintain system integrity and prevent long-term exploitation of foundational hardware vulnerabilities.
... bootrom i_bootrom_patch ( .clk_i , .req_i ( rom_req ), .addr_i ( rom_addr ), .rdata_o ( rom_rdata_patch ) ); bootrom_linux i_bootrom_linux ( .clk_i , .req_i ( rom_req ), .addr_i ( rom_addr ), .rdata_o ( rom_rdata_linux ) ); assign rom_rdata = (ariane_boot_sel_i) ? rom_rdata_linux : rom_rdata_linux; ...... bootrom i_bootrom_patch ( .clk_i , .req_i ( rom_req ), .addr_i ( rom_addr ), .rdata_o ( rom_rdata_patch ) ); bootrom_linux i_bootrom_linux ( .clk_i , .req_i ( rom_req ), .addr_i ( rom_addr ), .rdata_o ( rom_rdata_linux ) ); assign rom_rdata = (ariane_boot_sel_i) ? rom_rdata_patch : rom_rdata_linux; ...| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2025-55338 | Windows BitLocker Security Feature Bypass Vulnerability — Windows 10 Version 1507 | 6.1 | Medium | 2025-10-14 |
Vulnerabilities classified as CWE-1310 represent 1 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.