Python’s interfaces for processing XML are grouped in thexml package.
Warning
The XML modules are not secure against erroneous or maliciouslyconstructed data. If you need to parse untrusted orunauthenticated data see theXML vulnerabilities andThe defusedxml and defusedexpat Packages sections.
It is important to note that modules in thexml package require thatthere be at least one SAX-compliant XML parser available. The Expat parser isincluded with Python, so thexml.parsers.expat module will always beavailable.
The documentation for thexml.dom andxml.sax packages are thedefinition of the Python bindings for the DOM and SAX interfaces.
The XML handling submodules are:
The XML processing modules are not secure against maliciously constructed data.An attacker can abuse XML features to carry out denial of service attacks,access local files, generate network connections to other machines, orcircumvent firewalls.
The following table gives an overview of the known attacks and whetherthe various modules are vulnerable to them.
| kind | sax | etree | minidom | pulldom | xmlrpc |
|---|---|---|---|---|---|
| billion laughs | Yes | Yes | Yes | Yes | Yes |
| quadratic blowup | Yes | Yes | Yes | Yes | Yes |
| external entity expansion | Yes | No (1) | No (2) | Yes | No (3) |
| DTD retrieval | Yes | No | No | Yes | No |
| decompression bomb | No | No | No | No | Yes |
The documentation fordefusedxml on PyPI has further information aboutall known attack vectors with examples and references.
defusedxml is a pure Python package with modified subclasses of all stdlibXML parsers that prevent any potentially malicious operation. Use of thispackage is recommended for any server code that parses untrusted XML data. Thepackage also ships with example exploits and extended documentation on moreXML exploits such as XPath injection.
defusedexpat provides a modified libexpat and a patchedpyexpat module that have countermeasures against entity expansionDoS attacks. Thedefusedexpat module still allows a sane and configurable amount of entityexpansions. The modifications may be included in some future release of Python,but will not be included in any bugfix releases ofPython because they break backward compatibility.
20.3.html.entities — Definitions of HTML general entities
20.5.xml.etree.ElementTree — The ElementTree XML API
Enter search terms or a module, class or function name.