Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-200 (信息暴露) — Vulnerability Class 3255

3255 vulnerabilities classified as CWE-200 (信息暴露). AI Chinese analysis included.

CWE-200 represents a critical information disclosure weakness where software inadvertently reveals sensitive data to unauthorized entities. This vulnerability is typically exploited by attackers who leverage insufficient access controls, insecure direct object references, or verbose error messages to harvest credentials, personal identifiable information, or internal system details. By analyzing network traffic or manipulating application inputs, adversaries can extract this exposed data to facilitate further attacks, such as identity theft or privilege escalation. To mitigate this risk, developers must implement strict access control mechanisms, ensuring that data retrieval is validated against user permissions. Additionally, employing robust encryption for data at rest and in transit, along with sanitizing error outputs to prevent information leakage, significantly reduces the attack surface. Regular security audits and adherence to the principle of least privilege further ensure that sensitive information remains protected from unauthorized exposure.

MITRE CWE Description
The product exposes sensitive information to an actor that is not explicitly authorized to have access to that information. There are many different kinds of mistakes that introduce information exposures. The severity of the error can range widely, depending on the context in which the product operates, the type of sensitive information that is revealed, and the benefits it may provide to an attacker. Some kinds of sensitive information include: private, personal information, such as personal messages, financial data, health records, geographic location, or contact details system status and environment, such as the operating system and installed packages business secrets and intellectual property network status and configuration the product's own code or internal state metadata, e.g. logging of connections or message headers indirect information, such as a discrepancy between two internal operations that can be observed by an outsider Information might be sensitive to different parties, each of which may have their own expectations for whether the information should be protected. These parties include: the product's own users people or organizations whose information is created or used by the product, even if they are not direct product users the product's administrators, including the admins of the system(s) and/or networks on which the product operates the developer Information exposures can occur in different ways: the code explicitly inserts sensitive information into …
Common Consequences (1)
Confidentiality Read Application Data
Mitigations (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…
Examples (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 Title CVSS Severity Published
CVE-2019-15578 GitLab 信息泄露漏洞 — GitLab CE/EE 5.3 - 2020-01-28
CVE-2019-15579 GitLab 信息泄露漏洞 — GitLab CE/EE 5.3 - 2020-01-28
CVE-2019-5465 GitLab 信息泄露漏洞 — GitLab CE/EE 4.3 - 2020-01-28
CVE-2019-15583 GitLab 信息泄露漏洞 — GitLab CE/EE 7.5 - 2020-01-28
CVE-2019-14820 Red Hat Keycloak 信息泄露漏洞 — keycloak 7.5 - 2020-01-08
CVE-2019-9541 Telos Automated Message Handling System information disclosure in itemlookup.asp — Automated Message Handling System 6.1 - 2020-01-03
CVE-2019-11294 CAPI leaks service broker URLs and GUIDs to space developers — CAPI 4.3 - 2019-12-19
CVE-2019-15576 GitLab 信息泄露漏洞 — GitLab CE/EE 7.5 - 2019-12-18
CVE-2019-15577 GitLab 信息泄露漏洞 — GitLab CE/EE 5.3 - 2019-12-18
CVE-2019-3993 ELOG 信息泄露漏洞 — ELOG 7.5 - 2019-12-17
CVE-2019-3992 ELOG 信息泄露漏洞 — ELOG 7.5 - 2019-12-17
CVE-2019-18332 Siemens SPPA-T3000 授权问题漏洞 — SPPA-T3000 Application Server 5.3 - 2019-12-12
CVE-2019-18333 Siemens SPPA-T3000 信息泄露漏洞 — SPPA-T3000 Application Server 5.3 - 2019-12-12
CVE-2019-18334 Siemens SPPA-T3000 信息泄露漏洞 — SPPA-T3000 Application Server 5.3 - 2019-12-12
CVE-2019-18335 Siemens SPPA-T3000 信息泄露漏洞 — SPPA-T3000 Application Server 5.3 - 2019-12-12
CVE-2019-18331 Siemens SPPA-T3000 信息泄露漏洞 — SPPA-T3000 Application Server 5.3 - 2019-12-12
CVE-2019-10217 Ansible 信息泄露漏洞 — Ansible 6.5 - 2019-11-25
CVE-2019-6852 多款Schneider Electric产品信息泄露漏洞 — Modicon Controllers (M340 CPUs, M340 communication modules, Premium CPUs, Premium communication modules, Quantum CPUs, Quantum communication modules - see security notification for specific versions) 7.5 - 2019-11-20
CVE-2019-13557 Philips Tasy EMR和Tasy WebPortal 信息泄露漏洞 — Tasy EMR 5.3 - 2019-11-08
CVE-2019-1877 Cisco Enterprise Chat and Email Attachment Download Vulnerability — Cisco Enterprise Chat and Email 7.5 - 2019-11-05
CVE-2019-1734 Cisco FXOS and NX-OS Software Sensitive File Read Information Disclosure Vulnerability — Cisco NX-OS Software 5.5 - 2019-11-05
CVE-2019-10223 kube-state-metrics 信息泄露漏洞 — kube-state-metrics 4.9 - 2019-11-05
CVE-2019-17321 ClipSoft REXPERT 信息泄露漏洞 — REXPERT 5.3 - 2019-10-30
CVE-2019-7619 Elasticsearch 加密问题漏洞 — Elasticsearch 5.3 - 2019-10-30
CVE-2019-6850 多款Schneider Electric产品信息泄露漏洞 — Modicon M580, Modicon BMENOC 0311, Modicon BMENOC 0321 7.5 - 2019-10-29
CVE-2019-6849 Schneider Electric Modicon M580、Modicon BMENOC 0311和BMENOC 0321 信息泄露漏洞 — Modicon M580, Modicon BMENOC 0311, Modicon BMENOC 0321 7.5 - 2019-10-29
CVE-2019-11282 UAA is vulnerable to a Blind SCIM injection leading to information disclosure — UAA Release 4.3 - 2019-10-23
CVE-2019-13410 TOPMeeting version before version 8.8 (2019/08/19) allows an attacker to obtain sensitive information — TOPMeeting 7.5 - 2019-10-17
CVE-2019-15257 Cisco SPA100 Series Analog Telephone Adapters Running Configuration Information Disclosure Vulnerability — Cisco SPA112 2-Port Phone Adapter 6.5 - 2019-10-16
CVE-2019-12708 Cisco SPA100 Series Analog Telephone Adapters Administrative Credentials Information Disclosure Vulnerability — Cisco SPA112 2-Port Phone Adapter 6.5 - 2019-10-16

Vulnerabilities classified as CWE-200 (信息暴露) represent 3255 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.