CWE-649: Reliance on Obfuscation or Encryption of Security-Relevant Inputs without Integrity Checking

BaseIncompleteExploit Likelihood: High

The product uses obfuscation or encryption of inputs that should not be mutable by an external actor, but the product does not use integrity checks to detect if those inputs have been modified.

View on MITRE
Back to CWE Lookup

Extended Description

When an application relies on obfuscation or incorrectly applied / weak encryption to protect client-controllable tokens or parameters, that may have an effect on the user state, system state, or some decision made on the server. Without protecting the tokens/parameters for integrity, the application is vulnerable to an attack where an adversary traverses the space of possible values of the said token/parameter in order to attempt to gain an advantage. The goal of the attacker is to find another admissible value that will somehow elevate their privileges in the system, disclose information or change the behavior of the system in some way beneficial to the attacker. If the application does not protect these critical tokens/parameters for integrity, it will not be able to determine that these values have been tampered with. Measures that are used to protect data for confidentiality should not be relied upon to provide the integrity service.

Technical Details

Structure
Simple

Applicable To

Languages
Not Language-Specific
Platforms

Frequently Asked Questions

What is CWE-649: Reliance on Obfuscation or Encryption of Security-Relevant Inputs without Integrity Checking?+

CWE-649: Reliance on Obfuscation or Encryption of Security-Relevant Inputs without Integrity Checking is a Common Weakness Enumeration (CWE) entry maintained by MITRE. The product uses obfuscation or encryption of inputs that should not be mutable by an external actor, but the product does not use integrity checks to detect if those inputs have been modified. When an application relies on obfuscation or incorrectly applied / weak encryption to protect client-controllable tokens or parameters, that may have an effect on the user state, system state, or some decision made on the server. Without protecting the tokens/parameters for integrity, the application is vulnerable to an attack where an adversary traverses the space of possible values of the said token/parameter in order to attempt to gain an advantage. The goal of the attacker is to find another admissible value that will somehow elevate their privileges in the system, disclose information or change the behavior of the system in some way beneficial to the attacker. If the application does not protect these critical tokens/parameters for integrity, it will not be able to determine that these values have been tampered with. Measures that are used to protect data for confidentiality should not be relied upon to provide the integrity service.

What are the security consequences of Reliance on Obfuscation or Encryption of Security-Relevant Inputs without Integrity Checking?+

If exploited, CWE-649 (Reliance on Obfuscation or Encryption of Security-Relevant Inputs without Integrity Checking) it can compromise Integrity, leading to outcomes such as Unexpected State.

How do you prevent or mitigate Reliance on Obfuscation or Encryption of Security-Relevant Inputs without Integrity Checking?+

Recommended mitigations for CWE-649 include: Protect important client controllable tokens/parameters for integrity using PKI methods (i.e. digital signatures) or other means, and checks for integrity on the server side. Repeated requests from a particular user that include invalid values of tokens/parameters (those that should not be changed manually by users) should result in the user account lockout. Client side tokens/parameters should not be such that it would be easy/predictable to guess another valid state.

Which programming languages are affected by Reliance on Obfuscation or Encryption of Security-Relevant Inputs without Integrity Checking?+

CWE-649 commonly affects Not Language-Specific. Note that weaknesses are often language-agnostic patterns, so secure coding practices apply broadly.

What are real-world examples of Reliance on Obfuscation or Encryption of Security-Relevant Inputs without Integrity Checking?+

MITRE documents real CVEs mapped to CWE-649, including CVE-2005-0039. You can look up the full details of each CVE, including CVSS scores and remediation guidance, on our CVE Lookup tool.

What is the difference between a CWE and a CVE?+

A CWE (Common Weakness Enumeration) like CWE-649 describes a category of software weakness — the underlying flaw type. A CVE (Common Vulnerabilities and Exposures) identifies a specific, real-world vulnerability in a particular product. In short, a CWE is the kind of mistake, and a CVE is an instance of that mistake being found in software.

Learn More