Sensitive Data Exposure
Sensitive data exposure occurs when private or confidential information, such as personal data, health records, credentials, or credit card numbers, is left accessible to unauthorized parties. This typically happens due to weak security settings, misconfigurations, or insufficient protection of data at rest or in transit. The exposure can lead to identity theft, fraud, harassment, or other harms to affected individuals.
Sensitive data exposure is a vulnerability class in which an application or system makes sensitive information accessible to actors not explicitly authorized to have access to it, as defined by CWE-200. This encompasses a range of root causes including inadequate encryption of data at rest or in transit, improper access controls, misconfigured storage or transport mechanisms, and insufficient protection of personally identifiable information (PII), credentials, health records, and financial data. It is distinct from an active data breach in that the data may be left accessible without necessarily having been exfiltrated yet. Sensitive data exposure was cataloged as A3 in the OWASP Top Ten 2017 edition, reflecting its prevalence in web application security. Detection typically requires a combination of static analysis (to identify missing encryption, hardcoded secrets, or insecure configurations in code) and runtime or deployment-context assessment (to evaluate actual transport layer security, access control enforcement, and storage configurations), since many exposure conditions depend on the operational environment rather than source code alone.
Why it matters
Sensitive data exposure represents one of the most consequential vulnerability classes in application security because it directly places individuals and organizations at risk of tangible harm. When personal data, credentials, health records, or financial information becomes accessible to unauthorized parties, the downstream effects can include identity theft, financial fraud, harassment, and regulatory penalties. The vulnerability was significant enough to be cataloged as A3 in the OWASP Top Ten 2017 edition, reflecting its widespread prevalence across web applications and the severity of its potential impact.
Who it's relevant to
Inside Sensitive Data Exposure
Common questions
Answers to the questions practitioners most commonly ask about Sensitive Data Exposure.