CVE-2022-31471: untangle vulnerable to Improper Restriction of XML External Entity Reference
7.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.47852%
CWE
Published
8/6/2022
Updated
11/18/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
untangle | pip | < 1.2.1 | 1.2.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper XML parsing configuration. The release notes for 1.2.1 explicitly mention switching to defusedxml
to prevent XXE attacks, indicating the core parsing function (untangle.parse
) was previously using an insecure XML parser. This aligns with standard XXE vulnerability patterns where failure to configure safe parsing options (like disabling external entities) in XML processing functions creates exposure.