CWE-502: CWE-502: Deserialization of Untrusted Data
Description
View on MITRETechnical Details
- Structure
- Simple
- Vulnerability Mapping
- ALLOWED
Applicable To
🏆 CWE Top 25 Historical Ranking
Security Consequences
Scope
Impact
Scope
Impact
Scope
Impact
Mitigation Strategies
Phase
Description
If available, use the signing/sealing features of the programming language to assure that deserialized data has not been tainted. For example, a hash-based message authentication code (HMAC) could be used to ensure that data has not been modified.
Phase
Description
When deserializing data, populate a new object rather than just deserializing. The result is that the data flows through safe input validation and that the functions are safe.
Phase
Description
Explicitly define a final object() to prevent deserialization.
Phase
Description
Make fields transient to protect them from deserialization. An attempt to serialize and then deserialize a class containing transient fields will result in NULLs where the transient data should be. This is an excellent way to prevent time, environment-based, or sensitive variables from being carried over and used improperly.
Phase
Description
Avoid having unnecessary types or gadgets (a sequence of instances and method invocations that can self-execute during the deserialization process, often found in libraries) available that can be leveraged for malicious ends. This limits the potential for unintended or unauthorized types and gadgets to be leveraged by the attacker. Add only acceptable classes to an allowlist. Note: new gadgets are constantly being discovered, so this alone is not a sufficient mitigation.
Phase
Description
Employ cryptography of the data or code for protection. However, it's important to note that it would still be client-side security. This is risky because if the client is compromised then the security implemented on the client (the cryptography) can be bypassed.
Phase
Description
Strategy: Firewall Use an application firewall that can detect attacks against this weakness. It can be beneficial in cases in which the code cannot be fixed (because it is controlled by a third party), as an emergency prevention measure while more comprehensive software assurance measures are applied, or to provide defense in depth [ REF-1481 ]. Effectiveness: Moderate Note: An application firewall might not cover all possible input vectors. In addition, attack techniques might be available to bypass the protection mechanism, such as using malformed inputs that can still be processed by the component that receives those inputs. Depending on functionality, an application firewall might inadvertently reject or modify legitimate requests. Finally, some manual effort may be required for customization.
Effectiveness
ModerateDetection Methods
No detection method information available for this CWE.
Code Examples & CVEs
No examples or observed CVEs available for this CWE.
Frequently Asked Questions
What is CWE-502: CWE-502: Deserialization of Untrusted Data?+
CWE-502: CWE-502: Deserialization of Untrusted Data is a Common Weakness Enumeration (CWE) entry maintained by MITRE. Description
Is CWE-502 in the CWE Top 25 Most Dangerous Software Weaknesses?+
Yes. CWE-502 ranked #19 in the CWE Top 25 for 2024, associated with 237 CVEs that year. The CWE Top 25 highlights the most common and impactful software weaknesses based on real-world vulnerability data.
What are the security consequences of CWE-502: Deserialization of Untrusted Data?+
If exploited, CWE-502 (CWE-502: Deserialization of Untrusted Data) it can compromise Modify Application Data, Unexpected State, DoS: Resource Consumption (CPU) and Varies by Context, leading to outcomes such as Scope: Integrity Attackers can modify unexpected objects or data that was assumed to be safe from modification. Deserialized data or code could be modified without using the provided accessor functions, or unexpected functions could be invoked., Scope: Availability If a function is making an assumption on when to terminate, based on a sentry in a string, it could easily never terminate. and Scope: Other The consequences can vary widely.
How do you prevent or mitigate CWE-502: Deserialization of Untrusted Data?+
Recommended mitigations for CWE-502 include: If available, use the signing/sealing features of the programming language to assure that deserialized data has not been tainted. For example, a hash-based message authentication code (HMAC) could be used to ensure that data has not been modified. When deserializing data, populate a new object rather than just deserializing. The result is that the data flows through safe input validation and that the functions are safe. Explicitly define a final object() to prevent deserialization.
Which programming languages are affected by CWE-502: Deserialization of Untrusted Data?+
CWE-502 commonly affects Languages. Note that weaknesses are often language-agnostic patterns, so secure coding practices apply broadly.
What is the difference between a CWE and a CVE?+
A CWE (Common Weakness Enumeration) like CWE-502 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
Search for vulnerabilities that exploit CWE-502
See how this weakness ranks against others
Understanding vulnerabilities vs weaknesses
How vulnerability severity is measured
Complete technical details and references