{ "schema_version": "1.4.0", "id": "GHSA-8h9c-r582-mggc", "modified": "2024-10-07T21:17:55Z", "published": "2023-03-07T20:41:36Z", "aliases": [ "CVE-2023-27476" ], "summary": "OWSLib vulnerable to XML External Entity (XXE) Injection", "details": "### Impact\n\nOWSLib's XML parser (which supports both `lxml` and `xml.etree`) does not disable entity resolution for `lxml`, and could lead to arbitrary file reads from an attacker-controlled XML payload. This affects all XML parsing in the codebase.\n\n### Patches\n\n- Use only lxml for XML handling, adding `resolve_entities=False` to `lxml`'s parser: https://github.com/geopython/OWSLib/pull/863\n\n### Workarounds\n\n```python\npatch_well_known_namespaces(etree)\netree.set_default_parser(\n parser=etree.XMLParser(resolve_entities=False)\n)\n```\n\n### References\n\n- [`GHSL-2022-131`](https://securitylab.github.com/advisories/GHSL-2022-131_OWSLib/)\n", "severity": [ { "type": "CVSS_V3", "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:L" }, { "type": "CVSS_V4", "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:L/SC:N/SI:N/SA:N" } ], "affected": [ { "package": { "ecosystem": "PyPI", "name": "OWSLib" }, "ranges": [ { "type": "ECOSYSTEM", "events": [ { "introduced": "0" }, { "fixed": "0.28.1" } ] } ] } ], "references": [ { "type": "WEB", "url": "https://github.com/geopython/OWSLib/security/advisories/GHSA-8h9c-r582-mggc" }, { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-27476" }, { "type": "WEB", "url": "https://github.com/geopython/OWSLib/pull/863" }, { "type": "WEB", "url": "https://github.com/geopython/OWSLib/pull/863/commits/b92687702be9576c0681bb11cad21eb631b9122f" }, { "type": "PACKAGE", "url": "https://github.com/geopython/OWSLib" }, { "type": "WEB", "url": "https://github.com/geopython/OWSLib/releases/tag/0.28.1" }, { "type": "WEB", "url": "https://github.com/pypa/advisory-database/tree/main/vulns/owslib/PYSEC-2023-86.yaml" }, { "type": "WEB", "url": "https://lists.debian.org/debian-lts-announce/2023/06/msg00032.html" }, { "type": "ADVISORY", "url": "https://securitylab.github.com/advisories/GHSL-2022-131_owslib" }, { "type": "WEB", "url": "https://www.debian.org/security/2023/dsa-5426" } ], "database_specific": { "cwe_ids": [ "CWE-611" ], "severity": "HIGH", "github_reviewed": true, "github_reviewed_at": "2023-03-07T20:41:36Z", "nvd_published_at": "2023-03-08T00:15:00Z" } }