CVE-2020-2121: RCE vulnerability in Google Kubernetes Engine Plugin
8.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.83167%
CWE
Published
5/24/2022
Updated
1/30/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:google-kubernetes-engine | maven | < 0.8.1 | 0.8.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unsafe YAML deserialization. The advisory explicitly states the parser wasn't restricted to safe types. In Java/YAML ecosystems (e.g., SnakeYAML
), this typically manifests when using Yaml.load()
without a restricted constructor. The KubernetesEngineBuilder
class would logically handle YAML input during build steps, and the patch in 0.8.1 would have added a type-safe constructor configuration here. While exact method names aren't visible without code diffs, the pattern matches CWE-502 exploitation vectors in YAML parsing contexts.