From 5b6269a2531137cdb7c32f62bd47caa82b9c6bb5 Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Sat, 14 Feb 2015 05:34:57 +0900 Subject: [PATCH 1/3] Update NEWS --- NEWS | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS b/NEWS index 462d6a1733a..a3d35b77077 100644 --- a/NEWS +++ b/NEWS @@ -7,6 +7,7 @@ PHP NEWS (Stas) . Fixed bug #68925 (Mitigation for CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow). (Stas) + . Added NULL byte protection to exec, system and passthru. (Yasuo) 22 Jan 2015 PHP 5.4.37 - Core: From dbf7d525a5226adee586333ea9ffb1d61f8b5489 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Mon, 16 Feb 2015 15:23:13 +0300 Subject: [PATCH 2/3] BFN --- NEWS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NEWS b/NEWS index 3cb896089de..0d93c47b020 100644 --- a/NEWS +++ b/NEWS @@ -25,6 +25,9 @@ PHP NEWS - CGI: . Fixed bug #69015 (php-cgi's getopt does not see $argv). (Laruence) +- FPM: + . Fixed bug #68822 (request time is reset too early). (honghu069 at 163 dot com) + ?? ??? 2015, PHP 5.5.22 - Core: From 40c60b8212b8ab18fd5bf9a426f99e42d9908f8e Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Mon, 16 Feb 2015 12:08:07 -0200 Subject: [PATCH 3/3] - Fixed bug #67427 (SoapServer cannot handle large messages) patch by: brandt at docoloc dot de --- ext/soap/php_xml.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/soap/php_xml.c b/ext/soap/php_xml.c index f7c8fd51e59..bf30ab40aaa 100644 --- a/ext/soap/php_xml.c +++ b/ext/soap/php_xml.c @@ -100,6 +100,9 @@ xmlDocPtr soap_xmlParseFile(const char *filename TSRMLS_DC) ctxt->sax->warning = NULL; ctxt->sax->error = NULL; /*ctxt->sax->fatalError = NULL;*/ +#if LIBXML_VERSION >= 20703 + ctxt->options |= XML_PARSE_HUGE; +#endif old = php_libxml_disable_entity_loader(1 TSRMLS_CC); xmlParseDocument(ctxt); php_libxml_disable_entity_loader(old TSRMLS_CC);