1<?php 2$_SERVER['BASE_PAGE'] = 'releases/5_3_7.php'; 3include_once __DIR__ . '/../include/prepend.inc'; 4site_header("PHP 5.3.7 Release Announcement"); 5?> 6 7<h1>PHP 5.3.7 Release Announcement</h1> 8 9<p>The PHP development team would like to announce the immediate 10availability of PHP 5.3.7. This release focuses on improving the 11stability of the PHP 5.3.x branch with over 90 bug fixes, some of which 12are security related.</p> 13 14<p><b>Security Enhancements and Fixes in PHP 5.3.7:</b></p> 15<ul> 16 <li>Updated crypt_blowfish to 1.2. (CVE-2011-2483)</li> 17 <li>Fixed crash in error_log(). Reported by Mateusz Kocielski</li> 18 <li>Fixed buffer overflow on overlog salt in crypt().</li> 19 <li>Fixed bug #54939 (File path injection vulnerability in RFC1867 File upload filename). Reported by Krzysztof Kotowicz. (CVE-2011-2202)</li> 20 <li>Fixed stack buffer overflow in socket_connect(). (CVE-2011-1938)</li> 21 <li>Fixed bug #54238 (use-after-free in substr_replace()). (CVE-2011-1148)</li> 22</ul> 23 24<p><b>Key enhancements in PHP 5.3.7 include:</b></p> 25<ul> 26 <li>Upgraded bundled Sqlite3 to version 3.7.7.1</li> 27 <li>Upgraded bundled PCRE to version 8.12</li> 28 <li>Fixed bug #54910 (Crash when calling call_user_func with unknown function name)</li> 29 <li>Fixed bug #54585 (track_errors causes segfault)</li> 30 <li>Fixed bug #54262 (Crash when assigning value to a dimension in a non-array)</li> 31 <li>Fixed a crash inside dtor for error handling</li> 32 <li>Fixed bug #55339 (Segfault with allow_call_time_pass_reference = Off)</li> 33 <li>Fixed bug #54935 php_win_err can lead to crash</li> 34 <li>Fixed bug #54332 (Crash in zend_mm_check_ptr // Heap corruption)</li> 35 <li>Fixed bug #54305 (Crash in gc_remove_zval_from_buffer)</li> 36 <li>Fixed bug #54580 (get_browser() segmentation fault when browscap ini directive is set through php_admin_value)</li> 37 <li>Fixed bug #54529 (SAPI crashes on apache_config.c:197)</li> 38 <li>Fixed bug #54283 (new DatePeriod(NULL) causes crash).</li> 39 <li>Fixed bug #54269 (Short exception message buffer causes crash)</li> 40 <li>Fixed Bug #54221 (mysqli::get_warnings segfault when used in multi queries)</li> 41 <li>Fixed bug #54395 (Phar::mount() crashes when calling with wrong parameters)</li> 42 <li>Fixed bug #54384 (Dual iterators, GlobIterator, SplFileObject and SplTempFileObject crash when user-space classes don't call the parent constructor)</li> 43 <li>Fixed bug #54292 (Wrong parameter causes crash in SplFileObject::__construct())</li> 44 <li>Fixed bug #54291 (Crash iterating DirectoryIterator for dir name starting with \0)</li> 45 <li>Fixed bug #54281 (Crash in non-initialized RecursiveIteratorIterator)</li> 46 <li>Fixed bug #54623 (Segfault when writing to a persistent socket after closing a copy of the socket)</li> 47 <li>Fixed bug #54681 (addGlob() crashes on invalid flags)</li> 48 <li>Over 80 other bug fixes.</li> 49</ul> 50 51<p>Windows users: please mind that we do no longer provide builds created 52with Visual Studio C++ 6. It is impossible to maintain a high quality 53and safe build of PHP for Windows using this unmaintained compiler.</p> 54 55<p>For Apache SAPIs (php5_apache2_2.dll), be sure that you use a Visual 56Studio C++ 9 version of Apache. We recommend the Apache builds as provided 57by <a href="http://www.apachelounge.com/">ApacheLounge</a>. For any other 58SAPI (CLI, FastCGI via mod_fcgi, FastCGI with IIS or other FastCGI capable 59server), everything works as before. Third party extension providers 60must rebuild their extensions to make them compatible and loadable with 61the Visual Studio C++9 builds that we now provide.</p> 62 63<p>All PHP users should note that the PHP 5.2 series is NOT supported 64anymore. All users are strongly encouraged to upgrade to PHP 5.3.7.</p> 65 66 67<?php site_footer(); ?> 68