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

目标: 1000 元 · 已筹: 1325

100%

CWE-514 隐蔽通道 类漏洞列表 1

CWE-514 隐蔽通道 类弱点 1 条 CVE 漏洞汇总,含 AI 中文分析。

MITRE CWE 官方描述
A covert channel is a path that can be used to transfer information in a way not intended by the system's designers. Typically the system has not given authorization for the transmission and has no knowledge of its occurrence.
常见影响 (1)
Confidentiality, Access ControlRead Application Data, Bypass Protection Mechanism
代码示例 (1)
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-42768 OpenSSL 安全漏洞 — OpenSSL--2026-06-09

CWE-514(隐蔽通道) 是常见的弱点类别,本平台收录该类弱点关联的 1 条 CVE 漏洞。