Description
The product behaves differently or sends different responses under different circumstances in a way that is observable to an unauthorized actor.
Potential Impact
Confidentiality, Access Control
Read Application Data, Bypass Protection Mechanism
Confidentiality
Read Application Data
Demonstrative Examples
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";
}"Login Failed - incorrect username or 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 1Suppose an algorithm for implementing an encryption routine works fine per se, but the time taken to output the result of the encryption routine depends on a relationship between the input plaintext and the key (e.g., suppose, if the plaintext is similar to the key, it would run very fast).Artificial delays may be added to ensure that all calculations take equal time to execute.Mitigations & Prevention
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 separation functionality. Architects and designers should rely on the principle of least
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
Real-World CVE Examples
| CVE ID | Description |
|---|---|
| CVE-2020-8695 | Observable discrepancy in the RAPL interface for some Intel processors allows information disclosure. |
| CVE-2019-14353 | Crypto hardware wallet's power consumption relates to total number of pixels illuminated, creating a side channel in the USB connection that allows attackers to determine secrets displayed such as PIN |
| CVE-2019-10071 | Java-oriented framework compares HMAC signatures using String.equals() instead of a constant-time algorithm, causing timing discrepancies |
| CVE-2002-2094 | This, and others, use ".." attacks and monitor error responses, so there is overlap with directory traversal. |
| CVE-2001-1483 | Enumeration of valid usernames based on inconsistent responses |
| CVE-2001-1528 | Account number enumeration via inconsistent responses. |
| CVE-2004-2150 | User enumeration via discrepancies in error messages. |
| CVE-2005-1650 | User enumeration via discrepancies in error messages. |
| CVE-2004-0294 | Bulletin Board displays different error messages when a user exists or not, which makes it easier for remote attackers to identify valid users and conduct a brute force password guessing attack. |
| CVE-2004-0243 | Operating System, when direct remote login is disabled, displays a different message if the password is correct, which allows remote attackers to guess the password via brute force methods. |
| CVE-2002-0514 | Product allows remote attackers to determine if a port is being filtered because the response packet TTL is different than the default TTL. |
| CVE-2002-0515 | Product sets a different TTL when a port is being filtered than when it is not being filtered, which allows remote attackers to identify filtered ports by comparing TTLs. |
| CVE-2002-0208 | Product modifies TCP/IP stack and ICMP error messages in unusual ways that show the product is in use. |
| CVE-2004-2252 | Behavioral infoleak by responding to SYN-FIN packets. |
| CVE-2001-1387 | Product may generate different responses than specified by the administrator, possibly leading to an information leak. |
Showing 15 of 23 observed examples.
Related Weaknesses
Taxonomy Mappings
- PLOVER: — Discrepancy Information Leaks
- OWASP Top Ten 2007: A6 — Information Leakage and Improper Error Handling
- OWASP Top Ten 2004: A7 — Improper Error Handling
Frequently Asked Questions
What is CWE-203?
CWE-203 (Observable Discrepancy) is a software weakness identified by MITRE's Common Weakness Enumeration. It is classified as a Base-level weakness. The product behaves differently or sends different responses under different circumstances in a way that is observable to an unauthorized actor.
How can CWE-203 be exploited?
Attackers can exploit CWE-203 (Observable Discrepancy) to read application data, bypass protection mechanism. This weakness is typically introduced during the Architecture and Design, Implementation phase of software development.
How do I prevent CWE-203?
Key mitigations include: 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 interfaci
What is the severity of CWE-203?
CWE-203 is classified as a Base-level weakness (Medium abstraction). It has been observed in 23 real-world CVEs.