CVE-2019-0226: Apache Karaf vulnerable to relative path traversal
4.9
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.81469%
CWE
Published
5/24/2022
Updated
1/28/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.karaf.config:org.apache.karaf.config.core | maven | < 4.2.5 | 4.2.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from insecure path handling in two entry points: 1) The JMX MBean interface (ConfigMBean#install
) and 2) The Karaf shell command (config:install
). Both were patched in KARAF-6230
to prevent relative path traversal by adding validation
. The JIRA ticket, CVE description, and associated pull request #805
explicitly reference these components as the vulnerable points where path sanitization was missing, allowing attackers to traverse directories using '../' sequences.