CVE-2018-11793: Stack Overflow in Apache Mesos
7.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.88336%
CWE
Published
3/6/2019
Updated
1/9/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.mesos:mesos | maven | < 1.4.3 | 1.4.3 |
org.apache.mesos:mesos | maven | >= 1.5.0, < 1.5.2 | 1.5.2 |
org.apache.mesos:mesos | maven | >= 1.6.0, < 1.6.2 | 1.6.2 |
org.apache.mesos:mesos | maven | = 1.7.0 | 1.7.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from picojson's recursive parsing without depth limits. The patch adds depth counters in both default_parse_context and null_parse_context, modifying their parse_array_start/parse_object_start methods. These functions would appear repeatedly in stack traces during exploitation of deep JSON nesting. The explicit addition of depth checks in these specific methods indicates they were the recursion points causing stack overflows in unpatched versions.