-
Notifications
You must be signed in to change notification settings - Fork 543
/
4_4_2.php
31 lines (29 loc) · 990 Bytes
/
4_4_2.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
$_SERVER['BASE_PAGE'] = 'releases/4_4_1.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header("PHP 4.4.2 Release Announcement");
?>
<h1>PHP 4.4.2. Release Announcement</h1>
<p>
The PHP Development Team would like to announce the immediate release of
<a href="/downloads.php">PHP 4.4.2</a>.
</p>
<p>
This is a bug fix release, which addresses some security problems too. The
major points that this release corrects are:
<ul>
<li>Prevent header injection by limiting each header to a single line.</li>
<li>Possible XSS inside error reporting functionality.</li>
<li>Missing safe_mode/open_basedir checks into cURL extension.</li>
<li>Apache 2 regression with sub-request handling on non-Linux systems.</li>
<li>key() and current() regression related to references.</li>
</ul>
</p>
<p>
This release also fixes about 30 other defects.
</p>
<p>
For a full list of changes in PHP 4.4.2, see the
<a href="/ChangeLog-4.php#4.4.2">ChangeLog</a>.
</p>
<?php site_footer(); ?>