CVE-2020-17532: Arbitrary code execution in Apache ServiceComb java-chassis
8.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.83381%
CWE
Published
2/9/2022
Updated
2/1/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.apache.servicecomb:java-chassis | maven | >= 1.0.0, < 1.3.2 | 1.3.2 |
org.apache.servicecomb:java-chassis | maven | >= 2.0.0, < 2.1.5 | 2.1.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unsafe YAML deserialization using SnakeYAML's default parser, which allows arbitrary class instantiation. The patches replaced these usages with SafeConstructor (via YAMLUtil.yaml2Properties) or removed YAML parsing entirely (e.g., splitting headers by commas). The affected functions directly handled untrusted input (router rules, configuration data, headers) without proper validation, making them clear vectors for CWE-502 exploits. The confidence is high because the commit diffs explicitly address these points by introducing safe parsing mechanisms.