mcp-server-semgrep
Version:
MCP Server for Semgrep Integration - static code analysis with AI
30 lines (29 loc) • 944 B
YAML
rules:
- id: use-defused-xml
metadata:
owasp:
- A04:2017 - XML External Entities (XXE)
- A05:2021 - Security Misconfiguration
cwe:
- 'CWE-611: Improper Restriction of XML External Entity Reference'
references:
- https://docs.python.org/3/library/xml.html
- https://github.com/tiran/defusedxml
- https://owasp.org/www-community/vulnerabilities/XML_External_Entity_(XXE)_Processing
category: security
technology:
- python
cwe2022-top25: true
cwe2021-top25: true
subcategory:
- audit
likelihood: LOW
impact: MEDIUM
confidence: LOW
message: >-
The Python documentation recommends using `defusedxml` instead of `xml` because the native Python
`xml` library is vulnerable to XML External Entity (XXE) attacks. These attacks can leak confidential
data and "XML bombs" can cause denial of service.
languages: [python]
severity: ERROR
pattern: import xml