Lines Matching refs:XML
3 XML Processing Modules
7 :synopsis: Package containing XML processing modules
16 Python's interfaces for processing XML are grouped in the ``xml`` package.
20 The XML modules are not secure against erroneous or maliciously
26 there be at least one SAX-compliant XML parser available. The Expat parser is
33 The XML handling submodules are:
36 XML processor
52 XML vulnerabilities
55 The XML processing modules are not secure against maliciously constructed data.
56 An attacker can abuse XML features to carry out denial of service attacks,
98 also point to external resources or local files. The XML
99 parser accesses the resource and embeds the content into the XML document.
102 Some XML libraries like Python's :mod:`xml.dom.pulldom` retrieve document type
107 Decompression bombs (aka `ZIP bomb`_) apply to all XML libraries
108 that can parse compressed XML streams such as gzipped HTTP streams or
122 XML parsers that prevent any potentially malicious operation. Use of this
123 package is recommended for any server code that parses untrusted XML data. The
125 XML exploits such as XPath injection.