1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
Files
archived-web-php/releases/5_1_5.php
Sara Golemon f1cb7e74c4 Swap uses of _SERVER[DOCUMENT_ROOT] for __DIR__
4/4 - Update releases directory.
2019-05-31 12:48:34 -04:00

36 lines
1.2 KiB
PHP

<?php
$_SERVER['BASE_PAGE'] = 'releases/5_1_5.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header("PHP 5.1.5 Release Announcement");
?>
<h1>PHP 5.1.5 Release Announcement</h1>
<p>
This release address a series of locally exploitable security problems discovered since PHP 5.1.4.
All PHP users are encouraged to upgrade to this release as soon as possible.
</p>
<p>
This release provides the following security fixes:
<ul>
<li>Added missing safe_mode/open_basedir checks inside the error_log(), file_exists(), imap_open() and imap_reopen() functions.</li>
<li>Fixed overflows inside str_repeat() and wordwrap() functions on 64bit systems.</li>
<li>Fixed possible open_basedir/safe_mode bypass in cURL extension and with realpath cache.</li>
<li>Fixed overflow in GD extension on invalid GIF images.</li>
<li>Fixed a buffer overflow inside sscanf() function.</li>
<li>Fixed an out of bounds read inside stripos() function.</li>
<li>Fixed memory_limit restriction on 64 bit system.</li>
</ul>
</p>
<p>
In addition to the security fixes, both releases include a small number of non-security related bug fixes.
</p>
<p>
For a full list of changes in PHP 5.1.5, see the
<a href="/ChangeLog-5.php#5.1.5">ChangeLog</a>.
</p>
<?php site_footer(); ?>