CVE-2020-15777: Maven Extension plugin for Gradle Enterprise vulnerable to Deserialization of Untrusted Data
7.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.59224%
CWE
Published
5/24/2022
Updated
5/16/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.gradle:gradle-enterprise-maven-extension | maven | < 1.6 | 1.6 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from insecure deserialization via Java's ObjectInputStream
without proper class restriction. The advisory explicitly states that 'ObjectInputStream was not restricted to a list of trusted classes', which directly implicates the readObject()
method used in deserialization. While exact code locations aren't provided, the technical description confirms the pattern of unsafe deserialization from socket streams, making ObjectInputStream.readObject()
the clear vulnerable function. The socket exposure expands the attack surface but doesn't change the root vulnerable function.