Skip to content
Snippets Groups Projects
Commit 89538f57 authored by Daniel P. Berrangé's avatar Daniel P. Berrangé :speech_balloon: Committed by Eric Blake
Browse files

LSN-2014-0003: Don't expand entities when parsing XML


If the XML_PARSE_NOENT flag is passed to libxml2, then any
entities in the input document will be fully expanded. This
allows the user to read arbitrary files on the host machine
by creating an entity pointing to a local file. Removing
the XML_PARSE_NOENT flag means that any entities are left
unchanged by the parser, or expanded to "" by the XPath
APIs.

Signed-off-by: default avatarDaniel P. Berrange <berrange@redhat.com>
(cherry picked from commit d6b27d3e)
parent 4fb55871
No related branches found
No related tags found
No related merge requests found
......@@ -747,11 +747,11 @@ virXMLParseHelper(int domcode,
if (filename) {
xml = xmlCtxtReadFile(pctxt, filename, NULL,
XML_PARSE_NOENT | XML_PARSE_NONET |
XML_PARSE_NONET |
XML_PARSE_NOWARNING);
} else {
xml = xmlCtxtReadDoc(pctxt, BAD_CAST xmlStr, url, NULL,
XML_PARSE_NOENT | XML_PARSE_NONET |
XML_PARSE_NONET |
XML_PARSE_NOWARNING);
}
if (!xml)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment