Base · Medium

CWE-209: Generation of Error Message Containing Sensitive Information

The product generates an error message that includes sensitive information about its environment, users, or associated data.

CWE-209 · Base Level ·9 CVEs ·7 Mitigations

Description

The product generates an error message that includes sensitive information about its environment, users, or associated data.

Potential Impact

Confidentiality

Read Application Data

Demonstrative Examples

In the following example, sensitive information might be printed depending on the exception that occurs.
Bad
try {/.../}catch (Exception e) {System.out.println(e);}
If an exception related to SQL is handled by the catch, then the output might contain sensitive information such as SQL query structure or private information. If this output is redirected to a web user, this may represent a security problem.
This code tries to open a database connection, and prints any exceptions that occur.
Bad
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';}
If an exception occurs, the printed message exposes the location of the configuration file the script is using. An attacker can use this information to target the configuration file (perhaps exploiting a Path Traversal weakness). If the file can be read, the attacker could gain credentials for accessing the database. The attacker may also be able to replace the file with a malicious one, causing the application to use an arbitrary database.
The following code generates an error message that leaks the full pathname of the configuration file.
Bad
$ConfigDir = "/home/myprog/config";$uname = GetUserInput("username");
                     
                     # avoid CWE-22, CWE-78, others.
                     ExitError("Bad hacker!") if ($uname !~ /^\w+$/);$file = "$ConfigDir/$uname.txt";if (! (-e $file)) {ExitError("Error: $file does not exist");}...
If this code is running on a server, such as a web application, then the person making the request should not know what the full pathname of the configuration directory is. By submitting a username that does not produce a $file that exists, an attacker could get this pathname. It could then be used to exploit path traversal or symbolic link following problems that may exist elsewhere in the application.
In the example below, the method getUserBankAccount retrieves a bank account object from a database using the supplied username and account number to query the database. If an SQLException is raised when querying the database, an error message is created and output to a log file.
Bad
public BankAccount getUserBankAccount(String username, String accountNumber) {
                        BankAccount userAccount = null;String query = null;try {if (isAuthorizedUser(username)) {query = "SELECT * FROM accounts WHERE owner = "+ username + " AND accountID = " + accountNumber;DatabaseManager dbManager = new DatabaseManager();Connection conn = dbManager.getConnection();Statement stmt = conn.createStatement();ResultSet queryResult = stmt.executeQuery(query);userAccount = (BankAccount)queryResult.getObject(accountNumber);}} catch (SQLException ex) {String logMessage = "Unable to retrieve account information from database,\nquery: " + query;Logger.getLogger(BankManager.class.getName()).log(Level.SEVERE, logMessage, ex);}return userAccount;
                     }
The error message that is created includes information about the database query that may contain sensitive information about the database or query logic. In this case, the error message will expose the table name and column names used in the database. This data could be used to simplify other attacks, such as SQL injection (CWE-89) to directly access the database.

Mitigations & Prevention

Implementation

Ensure that error messages only contain minimal details that are useful to the intended audience and no one else. The messages need to strike the balance between being too cryptic (which can confuse users) or being too detailed (which may reveal more than intended). The messages should not reveal the methods that were used to determine the error. Attackers can use detailed information to refine or optimize their original attack, thereby increasing their chances of success. If

Implementation

Handle exceptions internally and do not display errors containing potentially sensitive information to a user.

Implementation Defense in Depth

Use naming conventions and strong types to make it easier to spot when sensitive data is being used. When creating structures, objects, or other complex entities, separate the sensitive and non-sensitive data as much as possible.

ImplementationBuild and Compilation

Debugging information should not make its way into a production release.

ImplementationBuild and Compilation

Debugging information should not make its way into a production release.

System Configuration

Where available, configure the environment to use less verbose error messages. For example, in PHP, disable the display_errors setting during configuration, or at runtime using the error_reporting() function.

System Configuration

Create default error pages or messages that do not leak any information.

Detection Methods

  • Manual Analysis High — This weakness generally requires domain-specific interpretation using manual analysis. However, the number of potential error conditions may be too large to cover completely within limited time constraints.
  • Automated Analysis Moderate — Automated methods may be able to detect certain idioms automatically, such as exposed stack traces or pathnames, but violation of business rules or privacy requirements is not typically feasible.
  • Automated Dynamic Analysis Moderate — This weakness can be detected using dynamic tools and techniques that interact with the software using large test suites with many diverse inputs, such as fuzz testing (fuzzing), robustness testing, and fault injection. The software's operation may slow down, but it should not become unstable, crash
  • Manual Dynamic Analysis — Identify error conditions that are not likely to occur during normal usage and trigger them. For example, run the program under low memory conditions, run with insufficient privileges or permissions, interrupt a transaction before it is completed, or disable connectivity to basic network services su
  • Automated Static Analysis — Automated static analysis, commonly referred to as Static Application Security Testing (SAST), can find some instances of this weakness by analyzing source code (or binary/compiled code) without having to execute it. Typically, this is done by building a model of data flow and control flow, then sea

Real-World CVE Examples

CVE IDDescription
CVE-2008-2049POP3 server reveals a password in an error message after multiple APOP commands are sent. Might be resultant from another weakness.
CVE-2007-5172Program reveals password in error message if attacker can trigger certain database errors.
CVE-2008-4638Composite: application running with high privileges (CWE-250) allows user to specify a restricted file to process, which generates a parsing error that leaks the contents of the file (CWE-209).
CVE-2008-1579Existence of user names can be determined by requesting a nonexistent blog and reading the error message.
CVE-2007-1409Direct request to library file in web application triggers pathname leak in error message.
CVE-2008-3060Malformed input to login page causes leak of full path when IMAP call fails.
CVE-2005-0603Malformed regexp syntax leads to information exposure in error message.
CVE-2017-9615verbose logging stores admin credentials in a world-readablelog file
CVE-2018-1999036SSH password for private key stored in build log

Taxonomy Mappings

  • CLASP: — Accidental leaking of sensitive information through error messages
  • OWASP Top Ten 2007: A6 — Information Leakage and Improper Error Handling
  • OWASP Top Ten 2004: A7 — Improper Error Handling
  • OWASP Top Ten 2004: A10 — Insecure Configuration Management
  • The CERT Oracle Secure Coding Standard for Java (2011): ERR01-J — Do not allow exceptions to expose sensitive information
  • Software Fault Patterns: SFP23 — Exposed Data

Frequently Asked Questions

What is CWE-209?

CWE-209 (Generation of Error Message Containing Sensitive Information) is a software weakness identified by MITRE's Common Weakness Enumeration. It is classified as a Base-level weakness. The product generates an error message that includes sensitive information about its environment, users, or associated data.

How can CWE-209 be exploited?

Attackers can exploit CWE-209 (Generation of Error Message Containing Sensitive Information) to read application data. This weakness is typically introduced during the Architecture and Design, Implementation, System Configuration, Operation phase of software development.

How do I prevent CWE-209?

Key mitigations include: Ensure that error messages only contain minimal details that are useful to the intended audience and no one else. The messages need to strike the balance between being too cryptic (which can confuse u

What is the severity of CWE-209?

CWE-209 is classified as a Base-level weakness (Medium abstraction). It has been observed in 9 real-world CVEs.