Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-502 (可信数据的反序列化) — Vulnerability Class 1687

1687 vulnerabilities classified as CWE-502 (可信数据的反序列化). AI Chinese analysis included.

CWE-502 represents a critical security weakness where applications deserialize untrusted data without validating its integrity or structure. Attackers typically exploit this vulnerability by crafting malicious serialized objects that, when processed by the application, trigger unintended code execution or logic flaws. This often leads to remote code execution, denial of service, or privilege escalation, as the deserialization process may instantiate dangerous classes or invoke unsafe methods. To mitigate this risk, developers must strictly avoid deserializing data from untrusted sources. Instead, they should implement robust input validation, use allowlists for permitted data types, or adopt safer serialization formats like JSON that do not inherently support arbitrary object instantiation. Additionally, employing cryptographic signatures to verify data authenticity before deserialization ensures that only trusted, unaltered payloads are processed, effectively neutralizing the threat of malicious object injection.

MITRE CWE Description
The product deserializes untrusted data without sufficiently ensuring that the resulting data will be valid.
Common Consequences (3)
IntegrityModify Application Data, Unexpected State
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.
AvailabilityDoS: Resource Consumption (CPU)
If a function is making an assumption on when to terminate, based on a sentry in a string, it could easily never terminate.
OtherVaries by Context
The consequences can vary widely, because it depends on which objects or methods are being deserialized, and how they are used. Making an assumption that the code in the deserialized object is valid is dangerous and can enable exploitation. One example is attackers using gadget chains to perform una…
Mitigations (5)
Architecture and Design, ImplementationIf 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.
ImplementationWhen 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.
ImplementationExplicitly define a final object() to prevent deserialization.
Architecture and Design, ImplementationMake 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.
ImplementationAvoid 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…
Examples (2)
This code snippet deserializes an object from a file and uses it as a UI button:
try { File file = new File("object.obj"); ObjectInputStream in = new ObjectInputStream(new FileInputStream(file)); javax.swing.JButton button = (javax.swing.JButton) in.readObject(); in.close(); }
Bad · Java
private final void readObject(ObjectInputStream in) throws java.io.IOException { throw new java.io.IOException("Cannot be deserialized"); }
Good · Java
In Python, the Pickle library handles the serialization and deserialization processes. In this example derived from [REF-467], the code receives and parses data, and afterwards tries to authenticate a user based on validating a token.
try { class ExampleProtocol(protocol.Protocol): def dataReceived(self, data): # Code that would be here would parse the incoming data # After receiving headers, call confirmAuth() to authenticate def confirmAuth(self, headers): try: token = cPickle.loads(base64.b64decode(headers['AuthToken'])) if not check_hmac(token['signature'], token['data'], getSecretKey()): raise AuthFail self.secure_data = token['data'] except: raise AuthFail }
Bad · Python
CVE IDTitleCVSSSeverityPublished
CVE-2021-33175 EMQ X Broker 安全漏洞 — EMQ X Broker 7.5 -2021-06-08
CVE-2021-23895 Authorized deserialization of untrusted data in McAfee DBSec — McAfee Database Security (DBSec) 9.0 Critical2021-06-02
CVE-2021-23894 Unauthorized deserialization of untrusted data in McAfee DBSec — McAfee Database Security (DBSec) 9.6 Critical2021-06-02
CVE-2021-24307 All in One SEO Pack < 4.1.0.2 - Admin RCE via unserialize — All in One SEO – Best WordPress SEO Plugin – Easily Improve Your SEO Rankings 8.8 -2021-05-24
CVE-2021-32634 Deserialization of Untrusted Data in Emissary — emissary 7.2 High2021-05-21
CVE-2021-31474 SolarWinds Network Performance Monitor 代码问题漏洞 — Network Performance Monitor 9.8 -2021-05-21
CVE-2021-24280 Redirection for Contact Form 7 < 2.3.4 - Authenticated PHP Object Injection — Redirection for Contact Form 7 8.8 -2021-05-14
CVE-2021-29508 Insecure deserialization in Wire — Wire 9.1 Critical2021-05-11
CVE-2021-29476 Insecure Deserialization of untrusted data in rmccue/requests — Requests 9.8 Critical2021-04-27
CVE-2020-7385 Metasploit Framework 'drb_remote_codeexec' code execution — Metasploit Framework 8.1 High2021-04-23
CVE-2021-27277 Solarwinds Orion Virtual Infrastructure Monitor 代码问题漏洞 — Orion Virtual Infrastructure Monitor 7.8 -2021-04-22
CVE-2021-21426 Fixes a bug in Zend Framework's Stream HTTP Wrapper — magento-lts 9.8 Critical2021-04-21
CVE-2021-3035 Bridgecrew Checkov: Unsafe deserialization of Terraform files allows code execution — Bridgecrew Checkov 6.7 Medium2021-04-20
CVE-2021-21524 Dell EMC Storage Resource Manager 代码问题漏洞 — Dell EMC Storage Monitoring and Reporting 9.8 -2021-04-12
CVE-2021-24217 Facebook for WordPress < 3.0.0 - PHP Object Injection with POP Chain — Facebook for WordPress 8.1 -2021-04-12
CVE-2021-1415 Cisco RV340, RV340W, RV345, and RV345P Dual WAN Gigabit VPN Routers Authenticated Remote Code Execution Vulnerabilities — Cisco Small Business RV Series Router Firmware 6.3 Medium2021-04-08
CVE-2021-1414 Cisco RV340, RV340W, RV345, and RV345P Dual WAN Gigabit VPN Routers Authenticated Remote Code Execution Vulnerabilities — Cisco Small Business RV Series Router Firmware 6.3 Medium2021-04-08
CVE-2021-1413 Cisco RV340, RV340W, RV345, and RV345P Dual WAN Gigabit VPN Routers Authenticated Remote Code Execution Vulnerabilities — Cisco Small Business RV Series Router Firmware 6.3 Medium2021-04-08
CVE-2021-27240 solarwinds Patch Manager 代码问题漏洞 — Patch Manager 7.8 -2021-03-29
CVE-2021-21349 A Server-Side Forgery Request can be activated unmarshalling with XStream to access data streams from an arbitrary URL referencing a resource in an intranet or the local host — xstream 6.1 Medium2021-03-22
CVE-2021-21342 A Server-Side Forgery Request can be activated unmarshalling with XStream to access data streams from an arbitrary URL referencing a resource in an intranet or the local host — xstream 5.3 Medium2021-03-22
CVE-2021-21371 Execution of untrusted code through config file — integration-jira-cloud 5.0 Medium2021-03-10
CVE-2021-22855 Soar Cloud System Co., Ltd. HR Portal - Arbitrary Code Execution — HR Portal 9.8 Critical2021-02-17
CVE-2020-27868 Qognify Ocularis 代码问题漏洞 — Ocularis 9.8 -2021-02-11
CVE-2020-12525 WAGO/M&M Software Deserialization of untrusted data in fdtCONTAINER component — fdtCONTAINER Component 7.3 High2021-01-22
CVE-2021-20190 FasterXML jackson-databind 代码问题漏洞 — jackson-databind 8.1 -2021-01-19
CVE-2020-11995 Apache Dubbo default deserialization protocol Hessian2 cause CRE — Apache Dubbo 9.8 -2021-01-11
CVE-2020-17531 Deserialization flaw in EOL Tapestry 4. — Apache Tapestry 9.8 -2020-12-08
CVE-2020-26207 Unsafe deserialization in DatabaseSchemaViewer — dbschemareader 8.0 High2020-11-04
CVE-2020-10721 fabric8-maven-plugin 代码问题漏洞 — fabric8-maven-plugin 7.8 -2020-10-22

Vulnerabilities classified as CWE-502 (可信数据的反序列化) represent 1687 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.