Source code: Lib/xml/
Pythonâs interfaces for processing XML are grouped in the xml
package.
Note
If you need to parse untrusted or unauthenticated data, see XML security.
It is important to note that modules in the xml
package require that there be at least one SAX-compliant XML parser available. The Expat parser is included with Python, so the xml.parsers.expat
module will always be available.
The documentation for the xml.dom
and xml.sax
packages are the definition of the Python bindings for the DOM and SAX interfaces.
The XML handling submodules are:
xml.etree.ElementTree
: the ElementTree API, a simple and lightweight XML processor
xml.dom
: the DOM API definition
xml.dom.minidom
: a minimal DOM implementation
xml.dom.pulldom
: support for building partial DOM trees
xml.sax
: SAX2 base classes and convenience functions
xml.parsers.expat
: the Expat parser binding
An attacker can abuse XML features to carry out denial of service attacks, access local files, generate network connections to other machines, or circumvent firewalls.
Expat versions lower that 2.6.0 may be vulnerable to âbillion laughsâ, âquadratic blowupâ and âlarge tokensâ. Python may be vulnerable if it uses such older versions of Expat as a system-provided library. Check pyexpat.EXPAT_VERSION
.
xmlrpc
is vulnerable to the âdecompression bombâ attack.
The Billion Laughs attack â also known as exponential entity expansion â uses multiple levels of nested entities. Each entity refers to another entity several times, and the final entity definition contains a small string. The exponential expansion results in several gigabytes of text and consumes lots of memory and CPU time.
A quadratic blowup attack is similar to a Billion Laughs attack; it abuses entity expansion, too. Instead of nested entities it repeats one large entity with a couple of thousand chars over and over again. The attack isnât as efficient as the exponential case but it avoids triggering parser countermeasures that forbid deeply nested entities.
Decompression bombs (aka ZIP bomb) apply to all XML libraries that can parse compressed XML streams such as gzipped HTTP streams or LZMA-compressed files. For an attacker it can reduce the amount of transmitted data by three magnitudes or more.
Expat needs to re-parse unfinished tokens; without the protection introduced in Expat 2.6.0, this can lead to quadratic runtime that can be used to cause denial of service in the application parsing XML. The issue is known as CVE 2023-52425.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4