SNYK-JAVA-COMGOOGLECODEGSON-1730327
## Overview Affected versions of this package are vulnerable to Deserialization of Untrusted Data via the `writeReplace()` method in internal classes, which may allow a denial of service attack if combined with another exploit. ## Details Serialization is a process of converting an object into a sequence of bytes which can be persisted to a disk or database or can be sent through streams. The reverse process of creating object from sequence of bytes is called deserialization. Serialization is commonly used for communication (sharing objects between multiple hosts) and persistence (store the object state in a file or a database). It is an integral part of popular protocols like _Remote Method Invocation (RMI)_, _Java Management Extension (JMX)_, _Java Messaging System (JMS)_, _Action Message Format (AMF)_, _Java Server Faces (JSF) ViewState_, etc. _Deserialization of untrusted data_ ([CWE-502](https://cwe.mitre.org/data/definitions/502.html)), is when the application deserializes untrusted data without sufficiently verifying that the resulting data will be valid, letting the attacker to control the state or the flow of the execution. Java deserialization issues have been known for years. However, interest in the issue intensified greatly in 2015, when classes that could be abused to achieve remote code execution were found in a [popular library (Apache Commons Collection)](https://snyk.io/vuln/SNYK-JAVA-COMMONSCOLLECTIONS-30078). These classes were used in zero-days affecting IBM WebSphere, Oracle WebLogic and many other products. An attacker just needs to identify a piece of software that has both a vulnerable class on its path, and performs deserialization on untrusted data. Then all they need to do is send the payload into the deserializer, getting the command executed. > Developers put too much trust in Java Object Serialization. Some even de-serialize objects pre-authentication. When deserializing an Object in Java you typically cast it to an expected type, and therefore Java's strict type system will ensure you only get valid object trees. Unfortunately, by the time the type checking happens, platform code has already created and executed significant logic. So, before the final type is checked a lot of code is executed from the readObject() methods of various objects, all of which is out of the developer's control. By combining the readObject() methods of various classes which are available on the classpath of the vulnerable application, an attacker can execute functions (including calling Runtime.exec() to execute local OS commands). ## Remediation Upgrade `com.google.code.gson:gson` to version 2.8.9 or higher. ## References - [GitHub Commit Introducing Vulnerable Method](https://github.com/google/gson/commit/a0090c8382c12531d377002ad9f7717c0197dc5d) - [GitHub Fix Commit](https://github.com/google/gson/pull/1991/commits) - [GitHub PR](https://github.com/google/gson/pull/1991)
Risk Scores
Affected Products
| Vendor | Product | Versions |
|---|---|---|
| 2.2.3, 0 |
Timeline
- Oct 11, 2021 CVE Updated
- Nov 2, 2021 CVE Published
References
- https://security.snyk.io/vuln/SNYK-JAVA-COMGOOGLECODEGSON-1730327 advisory
- https://learn.snyk.io/lesson/insecure-deserialization/ technical
- https://cwe.mitre.org/data/definitions/502.html technical
- https://snyk.io/vuln/SNYK-JAVA-COMMONSCOLLECTIONS-30078 technical
- https://github.com/google/gson/commit/a0090c8382c12531d377002ad9f7717c0197dc5d patch
- https://github.com/google/gson/pull/1991/commits patch
- https://github.com/google/gson/pull/1991 patch