CWE-1191 类弱点 12 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-1191指片上调试与测试接口缺乏访问控制,属于硬件安全漏洞。攻击者常通过JTAG等物理接口,利用未受保护的扫描链非法读取内部寄存器或进入测试模式,从而窃取敏感数据或篡改固件。开发者需在芯片设计中实施严格的身份验证机制,确保仅授权用户可访问调试接口,并在生产阶段禁用或锁定测试端口,以阻断未授权访问路径。
If the JTAG interface on this device is not hidden by the manufacturer, the interface may be identified using tools such as JTAGulator. If it is hidden but not disabled, it can be exposed by physically wiring to the board. By issuing a "halt" command before the OS starts, the unauthorized user pauses the watchdog timer and prevents the router from restarting (once the watchdog timer would have expired). Having paused the router, an unauthorized user is able to execute code and inspect and modify data in the device, even extracting all of the router's firmware. This allows the user to examine tIn order to prevent exposing the debugging interface, manufacturers might try to obfuscate the JTAG interface or blow device internal fuses to disable the JTAG interface. Adding authentication and authorization to this interface makes use by unauthorized individuals much more difficult.... PassChkValid: begin if(hashValid) begin if(exp_hash == pass_hash) begin pass_check = 1'b1; end else begin pass_check = 1'b0; end state_d = Idle; end else begin state_d = PassChkValid; end end ...... case (state_q) Idle: begin ... else if ( (dm::dtm_op_e'(dmi.op) == dm::DTM_PASS) && (miss_pass_check_cnt_q != 2'b11) ) begin state_d = Write; pass_mode = 1'b1; end ... end ... PassChkValid: begin if(hashValid) begin if(exp_hash == pass_hash) begin pass_check = 1'b1; end else begin pass_check = 1'b0; miss_pass_check_cnt_d = miss_pass_check_cnt_q + 1 end state_d = Idle; end else begin state_d = PassChkValid; end end ...| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2024-36319 | AMD多款产品 安全漏洞 — AMD Ryzen™ 7040 Series Mobile Processors with Radeon™ Graphics; AMD Ryzen™ 8040 Series Mobile Processors with Radeon™ Graphics | 9.8AI | CriticalAI | 2026-02-12 |
| CVE-2025-52533 | AMD Processors 安全漏洞 — AMD EPYC™ 7003 Series Processors | 6.7AI | MediumAI | 2026-02-12 |
| CVE-2025-15083 | TOZED ZLT M30S 安全漏洞 — ZLT M30s | 2.0 | Low | 2025-12-25 |
| CVE-2025-12114 | Azure Access Technology BLU-IC2和Azure Access Technology BLU-IC4 安全漏洞 — BLU-IC2 | 6.5AI | MediumAI | 2025-10-23 |
| CVE-2025-9709 | Nordic Semiconductor nRF52810 安全漏洞 — nRF52810 | 6.1AI | MediumAI | 2025-09-05 |
| CVE-2025-7213 | FNKvision FNK-GU2 安全漏洞 — FNK-GU2 | 6.4 | Medium | 2025-07-09 |
| CVE-2025-47822 | Flock Safety LPR 安全漏洞 — License Plate Reader | 6.4 | Medium | 2025-06-27 |
| CVE-2025-47819 | Flock Safety Gunshot Detection 安全漏洞 — Gunshot Detection devices | 6.4 | Medium | 2025-06-27 |
| CVE-2025-26408 | Wattsense Bridge 安全漏洞 — Wattsense Bridge | 6.8 | - | 2025-02-11 |
| CVE-2024-48970 | Baxter Life2000 安全漏洞 — Life2000 Ventilation System | 9.3 | Critical | 2024-11-14 |
| CVE-2024-41692 | SyroTech SY-GPON-1110-WDONT 安全漏洞 — SyroTech SY-GPON-1110-WDONT router | 6.8 | - | 2024-07-26 |
| CVE-2024-4231 | Digisol Router 安全漏洞 — Digisol Router DG-GR1321 | 3.9 | - | 2024-05-10 |
CWE-1191 是常见的弱点类别,本平台收录该类弱点关联的 12 条 CVE 漏洞。