CVE-2020-1964:
Deserialization of Untrusted Data in Apache Heron
9.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.9326%
CWE
Published
1/6/2022
Updated
2/1/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.heron:heron-simulator | maven | >= 0.20.0-incubating, <= 0.20.2-incubating | 0.20.3-incubating |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unsafe YAML deserialization in Apache Heron's simulator component. While explicit patch details are unavailable, the CVE description explicitly identifies missing YAML parser security configurations as the root cause. In Java/YAML vulnerabilities, the critical functions are typically:
- The YAML loading/parsing entry point (loadFromString)
- The parser initialization method (createYaml)
These would appear in runtime profiles during exploitation as they directly handle untrusted data deserialization. The high confidence for loadFromString aligns with standard YAML attack patterns, while createYaml receives medium confidence as the configuration point that should enforce SafeConstructor usage.