Bugzilla – Bug 911535
VUL-1: CVE-2014-9425: php: Double-free in zend_ts_hash_graceful_destroy()
Last modified: 2015-01-06 10:49:12 UTC
CVE-2014-9425 Double free vulnerability in the zend_ts_hash_graceful_destroy function in zend_ts_hash.c in the Zend Engine in PHP through 5.5.20 and 5.6.x through 5.6.4 allows remote attackers to cause a denial of service or possibly have unspecified other impact via unknown vectors. References: https://bugzilla.redhat.com/show_bug.cgi?id=1177734 http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-9425 http://www.cvedetails.com/cve/CVE-2014-9425/ http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-9425 https://bugs.php.net/bug.php?id=68676 http://openwall.com/lists/oss-security/2014/12/29/6 http://git.php.net/?p=php-src.git;a=commit;h=fbf3a6bc1abcc8a5b5226b0ad9464c37f11ddbd6 http://git.php.net/?p=php-src.git;a=commit;h=2bcf69d073190e4f032d883f3416dea1b027a39e http://git.php.net/?p=php-src.git;a=commit;h=24125f0f26f3787c006e4a51611ba33ee3b841cb
bugbot adjusting priority
Relevant code is run for ZTS build: #ifdef ZTS tsrm_mutex_free(ht->mx_reader); tsrm_mutex_free(ht->mx_reader); #endif ZTS build can be turned on via --enable-maintainer-zts, but we do not enable it and it is off by default. checking whether to enable thread-safety... no
thank you for the detailed report.