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

目标: 1000 元 · 已筹: 1336

100%

CWE-200 信息暴露 类漏洞列表 3396

CWE-200 信息暴露 类弱点 3396 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-200 指产品向未授权主体暴露敏感信息,属于信息泄露类漏洞。攻击者常通过未加密通信、错误日志记录或调试接口获取密钥、用户数据等机密内容。开发者应避免在日志中记录敏感字段,实施最小权限原则,对传输数据进行加密,并严格限制调试模式的访问权限,从而有效防止信息被非法窃取。

MITRE CWE 官方描述
CWE:CWE-200 向未授权主体(Unauthorized Actor)暴露敏感信息 英文:产品向未明确授权访问该信息的主体(Actor)暴露了敏感信息。 导致信息暴露(Information Exposures)的错误种类繁多。错误的严重程度差异很大,具体取决于产品运行的上下文、所泄露的敏感信息类型以及其可能为攻击者带来的收益。某些类型的敏感信息包括: * 私人、个人信息,例如个人消息、财务数据、健康记录、地理位置或联系方式 * 系统状态和环境,例如操作系统和已安装的软件包 * 商业机密和知识产权 * 网络状态和配置 * 产品自身的代码或内部状态 * 元数据(Metadata),例如连接日志或消息头 * 间接信息,例如外部人员可观察到的两个内部操作之间的差异 信息对不同方而言可能具有敏感性,各方对于信息是否应受到保护可能有各自的期望。这些方包括: * 产品自身的用户 * 其信息由产品创建或使用的个人或组织,即使他们不是产品的直接用户 * 产品的管理员,包括产品所运行的系统(Systems)和/或网络的管理员 * 开发者 信息暴露可以通过不同方式发生: * 代码显式地将敏感信息插入到资源或消息中,这些资源或消息有意对未授权主体(Unauthorized Actors)可访问,但不应包含该信息——即,该信息本应被“清除”(Scrubbed)或“消毒”(Sanitized)。 * 不同的弱点或错误间接地将敏感信息插入到资源中,例如 Web 脚本错误揭示了程序的完整系统路径。 * 代码管理包含敏感信息的资源,但这些资源无意中对未授权主体(Unauthorized Actors)可访问。在这种情况下,信息暴露是结果性的——即,不同的弱点首先使得对该信息的访问成为可能。 将任何机密性(Confidentiality)丧失描述为“信息暴露”是常见做法,但这可能导致在 CWE 映射中过度使用 CWE-200。从 CWE 的角度来看,机密性丧失是一种技术影响,可能由数十种不同的弱点引起,例如不安全的文件权限或越界读取(Out-of-bounds Read)。CWE-200 及其低层级后代旨在涵盖在显式管理、存储、传输或清理敏感信息的行为中发生的错误。
常见影响 (1)
Confidentiality Read Application Data
缓解措施 (1)
Architecture and Design Compartmentalize the system to have "safe" areas where trust boundaries can be unambiguously drawn. Do not allow sensitive data to go outside of the trust boundary and always be careful when interfacing with a compartment outside of the safe area. Ensure that appropriate compartmentalization is built into the system design, and the compartmentalization allows for and reinforces privilege separatio…
代码示例 (2)
The following code checks validity of the supplied username and password and notifies the user of a successful or failed login.
my $username=param('username'); my $password=param('password'); if (IsValidUsername($username) == 1) { if (IsValidPassword($username, $password) == 1) { print "Login Successful"; } else { print "Login Failed - incorrect password"; } } else { print "Login Failed - unknown username"; }
Bad · Perl
"Login Failed - incorrect username or password"
Result
This code tries to open a database connection, and prints any exceptions that occur.
try { openDbConnection(); } //print exception message that includes exception message and configuration file location catch (Exception $e) { echo 'Caught exception: ', $e->getMessage(), '\n'; echo 'Check credentials in config file at: ', $Mysql_config_location, '\n'; }
Bad · PHP
CVE ID 标题 CVSS 风险等级 Published
CVE-2021-36095 OTRS 授权问题漏洞 — ((OTRS)) Community Edition 5.3 Medium 2021-09-06
CVE-2021-39192 Ghost CMS 信息泄露漏洞 — Ghost 6.5 Medium 2021-09-03
CVE-2021-38314 WordPress 插件安全漏洞 — Gutenberg Template Library & Redux Framework 5.3 Medium 2021-09-02
CVE-2021-22793 Schneider Electric AccuSine PCS+和Schneider Electric AccuSine PCSn 信息泄露漏洞 — AccuSine PCS+ / PFV+ (Versions prior to V1.6.7) and AccuSine PCSn (Versions prior to V2.2.4) 8.8 - 2021-09-02
CVE-2021-39164 Matrix 信息泄露漏洞 — synapse 3.1 Low 2021-08-31
CVE-2021-39163 Matrix 信息泄露漏洞 — synapse 3.1 Low 2021-08-31
CVE-2021-34749 Cisco Firepower Threat Defense 信息泄露漏洞 — Cisco Web Security Appliance (WSA) 5.8 Medium 2021-08-18
CVE-2021-35936 Apache Airflow 访问控制错误漏洞 — Apache Airflow 5.3 - 2021-08-16
CVE-2021-37703 Discourse 信息泄露漏洞 — discourse 4.3 Medium 2021-08-13
CVE-2021-37704 phpfastcache 信息泄露漏洞 — phpfastcache 5.4 Medium 2021-08-12
CVE-2021-21596 Dell OpenManage Enterprise 安全漏洞 — Dell OpenManage Enterprise 9.6 Critical 2021-08-09
CVE-2021-21584 Dell OpenManage Enterprise 信息泄露漏洞 — Dell OpenManage Enterprise 7.7 High 2021-08-09
CVE-2021-21564 Dell OpenManage Enterprise 授权问题漏洞 — Dell OpenManage Enterprise 9.8 Critical 2021-08-09
CVE-2021-3566 FFmpeg 信息泄露漏洞 — ffmpeg 6.5 - 2021-08-05
CVE-2021-22925 Arch Linux 安全漏洞 — https://github.com/curl/curl 7.5 - 2021-08-05
CVE-2021-34707 Cisco Evolved Programmable Network Manager 信息泄露漏洞 — Cisco Evolved Programmable Network Manager (EPNM) 6.5 Medium 2021-08-04
CVE-2021-32787 Sourcegraph 信息泄露漏洞 — sourcegraph 3.1 Low 2021-08-02
CVE-2021-20332 Rust 信息泄露漏洞 — MongoDB Rust Driver 4.2 Medium 2021-08-02
CVE-2021-36091 OTRS 信息泄露漏洞 — ((OTRS)) Community Edition 3.5 Low 2021-07-26
CVE-2021-21443 OTRS 信息泄露漏洞 — ((OTRS)) Community Edition 3.5 Low 2021-07-26
CVE-2021-21440 OTRS 信息泄露漏洞 — ((OTRS)) Community Edition 5.2 Medium 2021-07-26
CVE-2020-7387 Sage Group Sage X3 信息泄露漏洞 — X3 5.3 Medium 2021-07-22
CVE-2021-22001 UAA server 信息泄露漏洞 — Cloud Foundry UAA server 7.5 - 2021-07-22
CVE-2021-22145 Elastic 安全漏洞 — Elasticsearch 6.5 - 2021-07-21
CVE-2021-22728 EVlink City、EVlink Parking、EVlink Smart Wallbox 信息泄露漏洞 — EVlink City (EVC1S22P4 / EVC1S7P4 all versions prior to R8 V3.4.0.1), EVlink Parking (EVW2 / EVF2 / EV.2 all versions prior to R8 V3.4.0.1), and EVlink Smart Wallbox (EVB1A all versions prior to R8 V3.4.0.1 ) 6.5 - 2021-07-21
CVE-2021-22721 EVlink City、EVlink Parking和EVlink Smart Wallbox 信息泄露漏洞 — EVlink City (EVC1S22P4 / EVC1S7P4 all versions prior to R8 V3.4.0.1), EVlink Parking (EVW2 / EVF2 / EV.2 all versions prior to R8 V3.4.0.1), and EVlink Smart Wallbox (EVB1A all versions prior to R8 V3.4.0.1 ) 5.3 - 2021-07-21
CVE-2021-22770 Easergy T300 信息泄露漏洞 — Easergy T300 with firmware V2.7.1 and older 6.5 - 2021-07-21
CVE-2021-21816 D-LINK DIR-3040 信息泄露漏洞 — D-LINK 5.3 - 2021-07-16
CVE-2021-21817 D-LINK DIR-3040 信息泄露漏洞 — D-Link 7.5 - 2021-07-16
CVE-2021-32770 gatsby 信息泄露漏洞 — gatsby 7.5 High 2021-07-15

CWE-200(信息暴露) 是常见的弱点类别,本平台收录该类弱点关联的 3396 条 CVE 漏洞。