blob: fb86b6f5564d7673ebedab8fcf788fe9a6ad7f33 [file] [log] [blame]
Georg Brandlfe7b00f2012-10-06 13:49:34 +02001.. _xml:
2
3XML Processing Modules
4======================
5
Christian Heimes7380a672013-03-26 17:35:55 +01006.. module:: xml
7 :synopsis: Package containing XML processing modules
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04008
Christian Heimes7380a672013-03-26 17:35:55 +01009.. sectionauthor:: Christian Heimes <christian@python.org>
10.. sectionauthor:: Georg Brandl <georg@python.org>
11
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040012**Source code:** :source:`Lib/xml/`
13
14--------------
Christian Heimes7380a672013-03-26 17:35:55 +010015
Georg Brandlfe7b00f2012-10-06 13:49:34 +020016Python's interfaces for processing XML are grouped in the ``xml`` package.
17
Christian Heimes7380a672013-03-26 17:35:55 +010018.. warning::
19
20 The XML modules are not secure against erroneous or maliciously
Andrew Kuchling4da9ab02014-02-15 15:33:44 -050021 constructed data. If you need to parse untrusted or
22 unauthenticated data see the :ref:`xml-vulnerabilities` and
23 :ref:`defused-packages` sections.
Christian Heimes768f6a52013-03-26 17:47:23 +010024
Georg Brandlfe7b00f2012-10-06 13:49:34 +020025It is important to note that modules in the :mod:`xml` package require that
26there be at least one SAX-compliant XML parser available. The Expat parser is
27included with Python, so the :mod:`xml.parsers.expat` module will always be
28available.
29
30The documentation for the :mod:`xml.dom` and :mod:`xml.sax` packages are the
31definition of the Python bindings for the DOM and SAX interfaces.
32
33The XML handling submodules are:
34
35* :mod:`xml.etree.ElementTree`: the ElementTree API, a simple and lightweight
Zachary Ware19c1f3d2014-01-31 11:30:36 -060036 XML processor
Georg Brandlfe7b00f2012-10-06 13:49:34 +020037
38..
39
40* :mod:`xml.dom`: the DOM API definition
Antoine Pitrouf20ea132013-12-22 01:57:01 +010041* :mod:`xml.dom.minidom`: a minimal DOM implementation
Georg Brandlfe7b00f2012-10-06 13:49:34 +020042* :mod:`xml.dom.pulldom`: support for building partial DOM trees
43
44..
45
46* :mod:`xml.sax`: SAX2 base classes and convenience functions
47* :mod:`xml.parsers.expat`: the Expat parser binding
Christian Heimes7380a672013-03-26 17:35:55 +010048
49
50.. _xml-vulnerabilities:
51
52XML vulnerabilities
Andrew Kuchling4da9ab02014-02-15 15:33:44 -050053-------------------
Christian Heimes7380a672013-03-26 17:35:55 +010054
55The XML processing modules are not secure against maliciously constructed data.
Andrew Kuchling4da9ab02014-02-15 15:33:44 -050056An attacker can abuse XML features to carry out denial of service attacks,
57access local files, generate network connections to other machines, or
58circumvent firewalls.
Christian Heimes7380a672013-03-26 17:35:55 +010059
Andrew Kuchling4da9ab02014-02-15 15:33:44 -050060The following table gives an overview of the known attacks and whether
61the various modules are vulnerable to them.
Christian Heimes7380a672013-03-26 17:35:55 +010062
Guido van Rossume1478e42016-10-13 14:31:50 -070063========================= ============== =============== ============== ============== ==============
64kind sax etree minidom pulldom xmlrpc
65========================= ============== =============== ============== ============== ==============
66billion laughs **Vulnerable** **Vulnerable** **Vulnerable** **Vulnerable** **Vulnerable**
67quadratic blowup **Vulnerable** **Vulnerable** **Vulnerable** **Vulnerable** **Vulnerable**
Christian Heimes17b1d5d2018-09-23 09:50:25 +020068external entity expansion Safe (4) Safe (1) Safe (2) Safe (4) Safe (3)
69`DTD`_ retrieval Safe (4) Safe Safe Safe (4) Safe
Guido van Rossume1478e42016-10-13 14:31:50 -070070decompression bomb Safe Safe Safe Safe **Vulnerable**
71========================= ============== =============== ============== ============== ==============
Christian Heimes7380a672013-03-26 17:35:55 +010072
731. :mod:`xml.etree.ElementTree` doesn't expand external entities and raises a
Andrew Kuchling4da9ab02014-02-15 15:33:44 -050074 :exc:`ParserError` when an entity occurs.
Christian Heimes7380a672013-03-26 17:35:55 +0100752. :mod:`xml.dom.minidom` doesn't expand external entities and simply returns
76 the unexpanded entity verbatim.
773. :mod:`xmlrpclib` doesn't expand external entities and omits them.
Serhiy Storchakabf99bcf2018-12-19 15:29:04 +0200784. Since Python 3.7.1, external general entities are no longer processed by
Jules Lasne (jlasne)82d73552018-12-19 07:05:14 +010079 default.
Christian Heimes7380a672013-03-26 17:35:55 +010080
81
82billion laughs / exponential entity expansion
83 The `Billion Laughs`_ attack -- also known as exponential entity expansion --
84 uses multiple levels of nested entities. Each entity refers to another entity
Andrew Kuchling4da9ab02014-02-15 15:33:44 -050085 several times, and the final entity definition contains a small string.
86 The exponential expansion results in several gigabytes of text and
87 consumes lots of memory and CPU time.
Christian Heimes7380a672013-03-26 17:35:55 +010088
89quadratic blowup entity expansion
90 A quadratic blowup attack is similar to a `Billion Laughs`_ attack; it abuses
91 entity expansion, too. Instead of nested entities it repeats one large entity
92 with a couple of thousand chars over and over again. The attack isn't as
Andrew Kuchling4da9ab02014-02-15 15:33:44 -050093 efficient as the exponential case but it avoids triggering parser countermeasures
94 that forbid deeply-nested entities.
Christian Heimes7380a672013-03-26 17:35:55 +010095
96external entity expansion
97 Entity declarations can contain more than just text for replacement. They can
Andrew Kuchling4da9ab02014-02-15 15:33:44 -050098 also point to external resources or local files. The XML
99 parser accesses the resource and embeds the content into the XML document.
Christian Heimes7380a672013-03-26 17:35:55 +0100100
Georg Brandl5d941342016-02-26 19:37:12 +0100101`DTD`_ retrieval
R David Murray66c93502014-01-13 13:51:17 -0500102 Some XML libraries like Python's :mod:`xml.dom.pulldom` retrieve document type
Christian Heimes7380a672013-03-26 17:35:55 +0100103 definitions from remote or local locations. The feature has similar
104 implications as the external entity expansion issue.
105
106decompression bomb
Andrew Kuchling4da9ab02014-02-15 15:33:44 -0500107 Decompression bombs (aka `ZIP bomb`_) apply to all XML libraries
108 that can parse compressed XML streams such as gzipped HTTP streams or
109 LZMA-compressed
Christian Heimes7380a672013-03-26 17:35:55 +0100110 files. For an attacker it can reduce the amount of transmitted data by three
111 magnitudes or more.
112
Andrew Kuchling4da9ab02014-02-15 15:33:44 -0500113The documentation for `defusedxml`_ on PyPI has further information about
Christian Heimes7380a672013-03-26 17:35:55 +0100114all known attack vectors with examples and references.
115
Andrew Kuchling4da9ab02014-02-15 15:33:44 -0500116.. _defused-packages:
117
118The :mod:`defusedxml` and :mod:`defusedexpat` Packages
119------------------------------------------------------
Christian Heimes7380a672013-03-26 17:35:55 +0100120
121`defusedxml`_ is a pure Python package with modified subclasses of all stdlib
Andrew Kuchling4da9ab02014-02-15 15:33:44 -0500122XML parsers that prevent any potentially malicious operation. Use of this
123package is recommended for any server code that parses untrusted XML data. The
124package also ships with example exploits and extended documentation on more
125XML exploits such as XPath injection.
Christian Heimes7380a672013-03-26 17:35:55 +0100126
Andrew Kuchling4da9ab02014-02-15 15:33:44 -0500127`defusedexpat`_ provides a modified libexpat and a patched
128:mod:`pyexpat` module that have countermeasures against entity expansion
129DoS attacks. The :mod:`defusedexpat` module still allows a sane and configurable amount of entity
130expansions. The modifications may be included in some future release of Python,
131but will not be included in any bugfix releases of
132Python because they break backward compatibility.
Christian Heimes7380a672013-03-26 17:35:55 +0100133
134
Stéphane Wirtel19177fb2018-05-15 20:58:35 +0200135.. _defusedxml: https://pypi.org/project/defusedxml/
136.. _defusedexpat: https://pypi.org/project/defusedexpat/
Georg Brandl5d941342016-02-26 19:37:12 +0100137.. _Billion Laughs: https://en.wikipedia.org/wiki/Billion_laughs
138.. _ZIP bomb: https://en.wikipedia.org/wiki/Zip_bomb
139.. _DTD: https://en.wikipedia.org/wiki/Document_type_definition