目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CWE-208 通过时间差异性导致的信息暴露 类漏洞列表 148

CWE-208 通过时间差异性导致的信息暴露 类弱点 148 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-208 属于时序差异漏洞,指产品执行不同操作所需时间存在可观测差异,从而泄露安全相关信息。攻击者通常通过精确测量响应时间的微小波动,间接推断操作是否成功或系统内部状态,进而获取敏感数据。开发者应避免在验证逻辑中使用耗时不同的分支,确保成功与失败路径的执行时间保持一致,并采用恒定时间算法来消除时序侧信道风险。

MITRE CWE 官方描述
CWE:CWE-208 可观测的时间差异 (Observable Timing Discrepancy) 英文:产品中的两个独立操作完成所需的时间不同,且这种差异对攻击者 (actor) 是可观测的,从而泄露了关于产品状态的安全相关信息,例如特定操作是否成功。 在安全相关上下文 (security-relevant contexts) 中,即使是微小的时间变化也可能被攻击者利用,以间接推断出关于产品内部操作的某些细节。例如,在某些加密算法 (cryptographic algorithms) 中,攻击者可以利用时间差异来推断关于私钥 (private key) 的某些属性,从而使密钥更容易被猜测。时间差异 (Timing discrepancies) 实际上构成了一个时序侧信道 (timing side channel)。
常见影响 (1)
Confidentiality, Access Control Read Application Data, Bypass Protection Mechanism
代码示例 (2)
Consider an example hardware module that checks a user-provided password to grant access to a user. The user-provided password is compared against a golden value in a byte-by-byte manner.
always_comb @ (posedge clk) begin assign check_pass[3:0] = 4'b0; for (i = 0; i < 4; i++) begin if (entered_pass[(i*8 - 1) : i] eq golden_pass([i*8 - 1) : i]) assign check_pass[i] = 1; continue; else assign check_pass[i] = 0; break; end assign grant_access = (check_pass == 4'b1111) ? 1'b1: 1'b0; end
Bad · Verilog
always_comb @ (posedge clk) begin assign check_pass[3:0] = 4'b0; for (i = 0; i < 4; i++) begin if (entered_pass[(i*8 - 1) : i] eq golden_pass([i*8 -1) : i]) assign check_pass[i] = 1; continue; else assign check_pass[i] = 0; continue; end assign grant_access = (check_pass == 4'b1111) ? 1'b1: 1'b0; end
Good · Verilog
In this example, the attacker observes how long an authentication takes when the user types in the correct password.
def validate_password(actual_pw, typed_pw): if len(actual_pw) <> len(typed_pw): return 0 for i in len(actual_pw): if actual_pw[i] <> typed_pw[i]: return 0 return 1
Bad · Python
CVE ID 标题 CVSS 风险等级 Published
CVE-2026-53525 WeeChat 中继认证非恒定时间密码哈希比较漏洞 — weechat 7.4 High 2026-08-21
CVE-2026-44255 Wazuh 侧信道信息泄露漏洞 — wazuh 5.3 Medium 2026-08-19
CVE-2026-75589 Net::OAuth Perl模块0.33前版本时间比较漏洞 - - 2026-08-19
CVE-2026-16458 Oberon microsystem AG ocrypto library 侧信道信息泄露漏洞 — ocrypto 5.9 Medium 2026-08-13
CVE-2026-16459 Oberon PSA Crypto library 侧信道信息泄露漏洞 — Oberon PSA Crypto 5.9 Medium 2026-08-13
CVE-2026-43606 AMD Vitis 侧信道信息泄露漏洞 — Vitis™ Libraries - Security Module 7.7 High 2026-08-11
CVE-2025-49506 Apache Portable Runtime Utility 侧信道信息泄露漏洞 — Apache Portable Runtime Utility - - 2026-08-06
CVE-2026-16731 omicronenergy stationscout 侧信道信息泄露漏洞 — OMICRON StationScout 8.3 High 2026-08-06
CVE-2026-16315 omicronenergy stationguard 侧信道信息泄露漏洞 — OMICRON StationGuard 8.7 High 2026-08-06
CVE-2026-69247 Python Cryptographic Authority cryptography 信息泄露漏洞 — cryptography 8.2 High 2026-08-03
CVE-2026-8794 PaperCut NG/MF 侧信道信息泄露漏洞 — PaperCut NG/MF 6.9 Medium 2026-08-03
CVE-2024-14041 Bouncy Castle for Java 侧信道信息泄露漏洞 — BC-JAVA 8.2 High 2026-07-28
CVE-2026-13183 Progress Software Progress Telerik UI for AJAX 侧信道信息泄露漏洞 — Telerik UI for ASP.NET AJAX 7.5 High 2026-07-22
CVE-2026-15432 Google Tink-Java 侧信道信息泄露漏洞 — Tink-Java - - 2026-07-21
CVE-2026-54685 gtsteffaniak filebrowser 侧信道信息泄露漏洞 — filebrowser 5.3 Medium 2026-07-20
CVE-2026-6656 DRSTEVE Crypt::Password 侧信道信息泄露漏洞 — Crypt::Password - - 2026-07-20
CVE-2026-9537 JBERGER Mojo::JWT 侧信道信息泄露漏洞 — Mojo::JWT - - 2026-07-17
CVE-2026-56764 Hono 侧信道信息泄露漏洞 — Hono 3.7 Low 2026-07-15
CVE-2026-21840 HCL BigFix Platform 侧信道信息泄露漏洞 — HCL BigFix Platform 3.1 Low 2026-07-14
CVE-2026-54736 Phalcon 侧信道信息泄露漏洞 — cphalcon - - 2026-07-10
CVE-2026-59218 Open WebUI 侧信道信息泄露漏洞 — open-webui 5.3 Medium 2026-07-09
CVE-2026-15041 389 Directory Server 侧信道信息泄露漏洞 — Red Hat Directory Server 11 3.7 Low 2026-07-08
CVE-2026-41516 OP-TEE optee_os 侧信道信息泄露漏洞 — optee_os 2.5 Low 2026-07-06
CVE-2026-41515 OP-TEE optee_os 侧信道信息泄露漏洞 — optee_os 2.5 Low 2026-07-06
CVE-2026-41514 OP-TEE optee_os 侧信道信息泄露漏洞 — optee_os 2.5 Low 2026-07-06
CVE-2026-27882 CoolLabs Coolify 侧信道信息泄露漏洞 — coolify 4.8 Medium 2026-06-30
CVE-2026-13758 MIK CryptX 日志信息泄露漏洞 — CryptX - - 2026-06-29
CVE-2023-20572 AMD AthlonTM 3000 Series Mobile Processors with RadeonTM Graphics 信息泄露漏洞 — AMD Athlon™ 3000 Series Mobile Processors with Radeon™ Graphics - - 2026-06-26
CVE-2023-20540 AMD Ryzen™ 3000 Series Desktop Processors 信息泄露漏洞 — AMD Ryzen™ 3000 Series Desktop Processors - - 2026-06-26
CVE-2026-6291 wolfSSL 信息泄露漏洞 — wolfSSL - - 2026-06-25

CWE-208(通过时间差异性导致的信息暴露) 是常见的弱点类别,本平台收录该类弱点关联的 148 条 CVE 漏洞。