CWE-1244 类弱点 11 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-1244 指内部资产被暴露于不安全的调试访问级别或状态。该漏洞源于产品错误地为内部资产分配了过高的调试权限,导致未受信任的调试代理能意外访问敏感数据。攻击者通常利用物理调试接口,通过提升权限读取或修改受保护资源。开发者应避免在生产环境中启用调试功能,严格实施最小权限原则,并确保调试接口仅在受控测试环境下使用,从而防止敏感资产泄露。
1 bit 0x0 = JTAG debugger is enabled (default) JTAG_SHIELD 0x1 = JTAG debugger is disabledThe default value of this register bit should be set to 1 to prevent the JTAG from being enabled at system reset.module csr_regfile #( ... // check that we actually want to enter debug depending on the privilege level we are currently in unique case (priv_lvl_o) riscv::PRIV_LVL_M: begin debug_mode_d = dcsr_q.ebreakm; ... riscv::PRIV_LVL_U: begin debug_mode_d = dcsr_q.ebreaku; ... assign priv_lvl_o = (debug_mode_q || umode_i) ? riscv::PRIV_LVL_M : priv_lvl_q; ... debug_mode_q <= debug_mode_d; ...module csr_regfile #( ... // check that we actually want to enter debug depending on the privilege level we are currently in unique case (priv_lvl_o) riscv::PRIV_LVL_M: begin debug_mode_d = dcsr_q.ebreakm; ... riscv::PRIV_LVL_U: begin debug_mode_d = dcsr_q.ebreaku; ... assign priv_lvl_o = (debug_mode_q && umode_i) ? riscv::PRIV_LVL_M : priv_lvl_q; ... debug_mode_q <= debug_mode_d; ...| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2025-67862 | Fortinet FortiOS和Fortinet FortiProxy 安全漏洞 — FortiOS | 6.0 | Medium | 2026-06-09 |
| CVE-2025-36755 | CleverDisplay BlueOne 安全漏洞 — BlueOne (CleverDisplay Hardware Player) | 2.4AI | LowAI | 2025-12-12 |
| CVE-2025-42878 | SAP Web Dispatcher和SAP Internet Communication Manager 安全漏洞 — SAP Web Dispatcher and Internet Communication Manager (ICM) | 8.2 | High | 2025-12-09 |
| CVE-2025-23337 | NVIDIA多款产品 安全漏洞 — HGX GB200, HGX GB300, HGC B300 | 6.7 | Medium | 2025-09-17 |
| CVE-2025-23302 | NVIDIA DGX和NVIDIA HGX 安全漏洞 — HGX, DGX Hopper | 4.2 | Medium | 2025-09-04 |
| CVE-2025-23301 | NVIDIA DGX和NVIDIA HGX 安全漏洞 — HGX, DGX Hopper | 4.2 | Medium | 2025-09-04 |
| CVE-2025-20238 | Cisco Secure Firewall Adaptive Security Appliance和Cisco Secure Firewall Threat Defense 安全漏洞 — Cisco Adaptive Security Appliance (ASA) Software | 6.0 | Medium | 2025-08-14 |
| CVE-2025-23252 | NVIDIA NVDebug tool 安全漏洞 — NVDebug tool | 4.5 | Medium | 2025-06-18 |
| CVE-2024-0114 | NVIDIA Hopper HGX 8-GPU 安全漏洞 — NVIDIA Hopper HGX 8-GPU | 8.1 | High | 2025-03-05 |
| CVE-2022-32259 | Siemens SINEMA Remote Connect Server 安全漏洞 — SINEMA Remote Connect Server | 6.5 | Medium | 2022-06-14 |
| CVE-2020-5372 | Dell EMC PowerStore 安全漏洞 — PowerStore | 8.6 | High | 2020-07-06 |
CWE-1244 是常见的弱点类别,本平台收录该类弱点关联的 11 条 CVE 漏洞。