blob: 01882190920194a423f71035f75564cc752ba425 [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
8.. sectionauthor:: Christian Heimes <christian@python.org>
9.. sectionauthor:: Georg Brandl <georg@python.org>
10
11
Georg Brandlfe7b00f2012-10-06 13:49:34 +020012Python's interfaces for processing XML are grouped in the ``xml`` package.
13
Christian Heimes7380a672013-03-26 17:35:55 +010014.. warning::
15
16 The XML modules are not secure against erroneous or maliciously
Larry Hastings3732ed22014-03-15 21:13:56 -070017 constructed data. If you need to parse untrusted or
18 unauthenticated data see the :ref:`xml-vulnerabilities` and
19 :ref:`defused-packages` sections.
Christian Heimes768f6a52013-03-26 17:47:23 +010020
Georg Brandlfe7b00f2012-10-06 13:49:34 +020021It is important to note that modules in the :mod:`xml` package require that
22there be at least one SAX-compliant XML parser available. The Expat parser is
23included with Python, so the :mod:`xml.parsers.expat` module will always be
24available.
25
26The documentation for the :mod:`xml.dom` and :mod:`xml.sax` packages are the
27definition of the Python bindings for the DOM and SAX interfaces.
28
29The XML handling submodules are:
30
31* :mod:`xml.etree.ElementTree`: the ElementTree API, a simple and lightweight
Zachary Ware19c1f3d2014-01-31 11:30:36 -060032 XML processor
Georg Brandlfe7b00f2012-10-06 13:49:34 +020033
34..
35
36* :mod:`xml.dom`: the DOM API definition
Antoine Pitrouf20ea132013-12-22 01:57:01 +010037* :mod:`xml.dom.minidom`: a minimal DOM implementation
Georg Brandlfe7b00f2012-10-06 13:49:34 +020038* :mod:`xml.dom.pulldom`: support for building partial DOM trees
39
40..
41
42* :mod:`xml.sax`: SAX2 base classes and convenience functions
43* :mod:`xml.parsers.expat`: the Expat parser binding
Christian Heimes7380a672013-03-26 17:35:55 +010044
45
46.. _xml-vulnerabilities:
47
48XML vulnerabilities
Larry Hastings3732ed22014-03-15 21:13:56 -070049-------------------
Christian Heimes7380a672013-03-26 17:35:55 +010050
51The XML processing modules are not secure against maliciously constructed data.
Larry Hastings3732ed22014-03-15 21:13:56 -070052An attacker can abuse XML features to carry out denial of service attacks,
53access local files, generate network connections to other machines, or
54circumvent firewalls.
Christian Heimes7380a672013-03-26 17:35:55 +010055
Larry Hastings3732ed22014-03-15 21:13:56 -070056The following table gives an overview of the known attacks and whether
57the various modules are vulnerable to them.
Christian Heimes7380a672013-03-26 17:35:55 +010058
59========================= ======== ========= ========= ======== =========
60kind sax etree minidom pulldom xmlrpc
61========================= ======== ========= ========= ======== =========
Georg Brandl57f936e2013-10-12 18:19:33 +020062billion laughs **Yes** **Yes** **Yes** **Yes** **Yes**
63quadratic blowup **Yes** **Yes** **Yes** **Yes** **Yes**
64external entity expansion **Yes** No (1) No (2) **Yes** No (3)
65DTD retrieval **Yes** No No **Yes** No
66decompression bomb No No No No **Yes**
Christian Heimes7380a672013-03-26 17:35:55 +010067========================= ======== ========= ========= ======== =========
68
691. :mod:`xml.etree.ElementTree` doesn't expand external entities and raises a
Larry Hastings3732ed22014-03-15 21:13:56 -070070 :exc:`ParserError` when an entity occurs.
Christian Heimes7380a672013-03-26 17:35:55 +0100712. :mod:`xml.dom.minidom` doesn't expand external entities and simply returns
72 the unexpanded entity verbatim.
733. :mod:`xmlrpclib` doesn't expand external entities and omits them.
74
75
76billion laughs / exponential entity expansion
77 The `Billion Laughs`_ attack -- also known as exponential entity expansion --
78 uses multiple levels of nested entities. Each entity refers to another entity
Larry Hastings3732ed22014-03-15 21:13:56 -070079 several times, and the final entity definition contains a small string.
80 The exponential expansion results in several gigabytes of text and
81 consumes lots of memory and CPU time.
Christian Heimes7380a672013-03-26 17:35:55 +010082
83quadratic blowup entity expansion
84 A quadratic blowup attack is similar to a `Billion Laughs`_ attack; it abuses
85 entity expansion, too. Instead of nested entities it repeats one large entity
86 with a couple of thousand chars over and over again. The attack isn't as
Larry Hastings3732ed22014-03-15 21:13:56 -070087 efficient as the exponential case but it avoids triggering parser countermeasures
88 that forbid deeply-nested entities.
Christian Heimes7380a672013-03-26 17:35:55 +010089
90external entity expansion
91 Entity declarations can contain more than just text for replacement. They can
Larry Hastings3732ed22014-03-15 21:13:56 -070092 also point to external resources or local files. The XML
93 parser accesses the resource and embeds the content into the XML document.
Christian Heimes7380a672013-03-26 17:35:55 +010094
95DTD retrieval
R David Murray66c93502014-01-13 13:51:17 -050096 Some XML libraries like Python's :mod:`xml.dom.pulldom` retrieve document type
Christian Heimes7380a672013-03-26 17:35:55 +010097 definitions from remote or local locations. The feature has similar
98 implications as the external entity expansion issue.
99
100decompression bomb
Larry Hastings3732ed22014-03-15 21:13:56 -0700101 Decompression bombs (aka `ZIP bomb`_) apply to all XML libraries
102 that can parse compressed XML streams such as gzipped HTTP streams or
103 LZMA-compressed
Christian Heimes7380a672013-03-26 17:35:55 +0100104 files. For an attacker it can reduce the amount of transmitted data by three
105 magnitudes or more.
106
Larry Hastings3732ed22014-03-15 21:13:56 -0700107The documentation for `defusedxml`_ on PyPI has further information about
Christian Heimes7380a672013-03-26 17:35:55 +0100108all known attack vectors with examples and references.
109
Larry Hastings3732ed22014-03-15 21:13:56 -0700110.. _defused-packages:
111
112The :mod:`defusedxml` and :mod:`defusedexpat` Packages
113------------------------------------------------------
Christian Heimes7380a672013-03-26 17:35:55 +0100114
115`defusedxml`_ is a pure Python package with modified subclasses of all stdlib
Larry Hastings3732ed22014-03-15 21:13:56 -0700116XML parsers that prevent any potentially malicious operation. Use of this
117package is recommended for any server code that parses untrusted XML data. The
118package also ships with example exploits and extended documentation on more
119XML exploits such as XPath injection.
Christian Heimes7380a672013-03-26 17:35:55 +0100120
Larry Hastings3732ed22014-03-15 21:13:56 -0700121`defusedexpat`_ provides a modified libexpat and a patched
122:mod:`pyexpat` module that have countermeasures against entity expansion
123DoS attacks. The :mod:`defusedexpat` module still allows a sane and configurable amount of entity
124expansions. The modifications may be included in some future release of Python,
125but will not be included in any bugfix releases of
126Python because they break backward compatibility.
Christian Heimes7380a672013-03-26 17:35:55 +0100127
128
Georg Brandl6ba6b132013-03-28 09:11:44 +0100129.. _defusedxml: https://pypi.python.org/pypi/defusedxml/
130.. _defusedexpat: https://pypi.python.org/pypi/defusedexpat/
Christian Heimes7380a672013-03-26 17:35:55 +0100131.. _Billion Laughs: http://en.wikipedia.org/wiki/Billion_laughs
132.. _ZIP bomb: http://en.wikipedia.org/wiki/Zip_bomb
133.. _DTD: http://en.wikipedia.org/wiki/Document_Type_Definition