CWE-1231 类弱点 3 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-1231 属于硬件安全配置漏洞,指产品虽使用可信锁定比特限制对寄存器或地址区域的访问,却未防止该比特在设置后被修改。攻击者通常利用此缺陷,通过固件或硬件调试接口篡改锁定状态,从而绕过安全限制并获取未授权的资源访问权。开发者应避免此问题,确保锁定比特在初始化后具备防篡改机制,如通过只读存储器或硬件熔断技术,防止恶意软件或物理攻击者修改关键配置。
Register Field description CRITICAL_TEMP_LIMIT [31:8] Reserved field; Read only; Default 0 [7:0] Critical temp 0-255 Centigrade; Read-write-lock; Default 125 TEMP_SENSOR_CALIB [31:0] Thermal sensor calibration data. Slope value used to map sensor reading to degrees Centigrade. TEMP_SENSOR_LOCK [31:1] Reserved field; Read only; Default 0 [0] Lock bit, locks CRITICAL_TEMP_LIMIT and TEMP_SENSOR_CALIB registers; Write-1-once; Default 0 TEMP_HW_SHUTDOWN [31:2] Reserved field; Read only; Default 0 [1] Enable hardware shutdown on critical temperature detection; Read-write; Default 0 CURRENT_TEMP [31:To fix this weakness, one could change the TEMP_HW_SHUTDOWN field to be locked by TEMP_SENSOR_LOCK. TEMP_HW_SHUTDOWN [31:2] Reserved field; Read only; Default 0 [1] Enable hardware shutdown on critical temperature detection; Read-write-Lock; Default 0 [0] Locked by TEMP_SENSOR_LOCKalways @(posedge clk_i) begin if(~(rst_ni && ~jtag_unlock && ~rst_9)) begin for (j=0; j < 6; j=j+1) begin reglk_mem[j] <= 'h0; end end ...always @(posedge clk_i) begin if(~(rst_ni && ~jtag_unlock)) begin for (j=0; j < 6; j=j+1) begin reglk_mem[j] <= 'h0; end end ...| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2025-52536 | AMD Processors 安全漏洞 — AMD EPYC™ 9004 Series Processors | 4.4AI | MediumAI | 2026-02-10 |
| CVE-2024-36354 | AMD多款产品 安全漏洞 — AMD Ryzen™ Threadripper™ 3000 Processors | 7.5 | High | 2025-09-06 |
| CVE-2022-42285 | NVIDIA DGX 安全漏洞 — NVIDIA DGX servers | 6.0 | Medium | 2023-01-13 |
CWE-1231 是常见的弱点类别,本平台收录该类弱点关联的 3 条 CVE 漏洞。