diff options
author | Christian Heimes <christian@cheimes.de> | 2013-03-26 16:47:23 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-03-26 16:47:23 (GMT) |
commit | 768f6a53601a6c4e0b914aaedb977dd2ca97532a (patch) | |
tree | 0a15e62fa957038dd0e6ad2cd704d3378ac336a5 /Doc/library/pyexpat.rst | |
parent | c40f97f8beaacfb834d3f4f22d581e37dd82c14d (diff) | |
parent | 7380a67267d9ec59b70617ea59ff31819f530942 (diff) | |
download | cpython-768f6a53601a6c4e0b914aaedb977dd2ca97532a.zip cpython-768f6a53601a6c4e0b914aaedb977dd2ca97532a.tar.gz cpython-768f6a53601a6c4e0b914aaedb977dd2ca97532a.tar.bz2 |
Issue 17538: Document XML vulnerabilties
Diffstat (limited to 'Doc/library/pyexpat.rst')
-rw-r--r-- | Doc/library/pyexpat.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/pyexpat.rst b/Doc/library/pyexpat.rst index 861546c..420e407 100644 --- a/Doc/library/pyexpat.rst +++ b/Doc/library/pyexpat.rst @@ -14,6 +14,13 @@ references to these attributes should be marked using the :member: role. +.. warning:: + + The :mod:`pyexpat` module is not secure against maliciously + constructed data. If you need to parse untrusted or unauthenticated data see + :ref:`xml-vulnerabilities`. + + .. index:: single: Expat The :mod:`xml.parsers.expat` module is a Python interface to the Expat |