CWE-1262 类弱点 6 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-1262 指内存映射 I/O 寄存器访问控制不当的漏洞。攻击者通常利用此缺陷,通过恶意软件直接篡改安全关键硬件数据,从而绕过软件层面的保护机制,获取未授权的设备控制权或敏感信息。开发者应避免直接暴露寄存器接口,实施严格的权限验证与隔离机制,确保仅授权进程能访问关键硬件资源,从而防止恶意代码对底层硬件进行非法操作。
Cryptographic key material stored in registers inside the cryptographic accelerator can be accessed by software.Key material stored in registers should never be accessible to software. Even if software can provide a key, all read-back paths to software should be disabled.if (csr_we || csr_read) begin if ((riscv::priv_lvl_t'(priv_lvl_o & csr_addr.csr_decode.priv_lvl) != csr_addr.csr_decode.priv_lvl) && !(csr_addr.address==riscv::CSR_MEPC)) begin csr_exception_o.cause = riscv::ILLEGAL_INSTR; csr_exception_o.valid = 1'b1; end // check access to debug mode only CSRs if (csr_addr_i[11:4] == 8'h7b && !debug_mode_q) begin csr_exception_o.cause = riscv::ILLEGAL_INSTR; csr_exception_o.valid = 1'b1; end endif (csr_we || csr_read) begin if ((riscv::priv_lvl_t'(priv_lvl_o & csr_addr.csr_decode.priv_lvl) != csr_addr.csr_decode.priv_lvl)) begin csr_exception_o.cause = riscv::ILLEGAL_INSTR; csr_exception_o.valid = 1'b1; end // check access to debug mode only CSRs if (csr_addr_i[11:4] == 8'h7b && !debug_mode_q) begin csr_exception_o.cause = riscv::ILLEGAL_INSTR; csr_exception_o.valid = 1'b1; end end| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2025-47385 | Qualcomm Chipsets 安全漏洞 — Snapdragon | 7.8 | High | 2026-03-02 |
| CVE-2025-36194 | IBM PowerVM Hypervisor 安全漏洞 — PowerVM Hypervisor | 2.8 | Low | 2026-02-02 |
| CVE-2025-20788 | MediaTek Chipsets 安全漏洞 — MT6991, MT8196 | 5.0AI | MediumAI | 2025-12-02 |
| CVE-2023-20599 | AMD EPYC 安全漏洞 — AMD EPYC™ 7002 Series Processors | 7.9 | High | 2025-06-10 |
| CVE-2024-45556 | Qualcomm Chipsets 安全漏洞 — Snapdragon | 6.5 | Medium | 2025-04-07 |
| CVE-2025-1882 | i-Drive i11和i-Drive i12 安全漏洞 — i11 | 5.0 | Medium | 2025-03-03 |
CWE-1262 是常见的弱点类别,本平台收录该类弱点关联的 6 条 CVE 漏洞。