summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2013-02-07 16:07:05 +0400
committerJohannes Schlüter <johannes@php.net>2013-02-13 21:51:13 +0100
commit8710d330dadf614d9ebb7e5d4dc62b4ce9c9eeda (patch)
treeb220b3ef431eb8cb398795a9ab5d2226f908165c
parent71c63bcfc5456a59b090754cf0b0ba2815e1bf16 (diff)
downloadphp-git-8710d330dadf614d9ebb7e5d4dc62b4ce9c9eeda.tar.gz
Disabled external entities loading
(cherry picked from commit afe98b7829d50806559acac9b530acb8283c3bf4)
-rw-r--r--ext/soap/php_xml.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/soap/php_xml.c b/ext/soap/php_xml.c
index 65abed171a..a69d071164 100644
--- a/ext/soap/php_xml.c
+++ b/ext/soap/php_xml.c
@@ -92,6 +92,7 @@ xmlDocPtr soap_xmlParseFile(const char *filename TSRMLS_DC)
PG(allow_url_fopen) = old_allow_url_fopen;
if (ctxt) {
ctxt->keepBlanks = 0;
+ ctxt->options -= XML_PARSE_DTDLOAD;
ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace;
ctxt->sax->comment = soap_Comment;
ctxt->sax->warning = NULL;
@@ -133,6 +134,7 @@ xmlDocPtr soap_xmlParseMemory(const void *buf, size_t buf_size)
*/
ctxt = xmlCreateMemoryParserCtxt(buf, buf_size);
if (ctxt) {
+ ctxt->options -= XML_PARSE_DTDLOAD;
ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace;
ctxt->sax->comment = soap_Comment;
ctxt->sax->warning = NULL;