Fizmez Web Server空连接服务拒绝漏洞

漏洞信息详情

Fizmez Web Server空连接服务拒绝漏洞

漏洞简介

Fizmez Web Server 1.0版本存在提前结束漏洞。远程攻击者可以通过与服务器连接然后不发送任何数据就断开来导致服务拒绝(崩溃),该漏洞触发了一个空指针的解引用。

漏洞公告

The following is an untested, unconfirmed patch provided by a third party. It may be used to patch version 1.0 of the software:
( line: 268 of FizmezWebServer.java )
eh.debug(“Received input [“+line+”]”);
//Hash out request information
/* start of patch */
int firstSpaceIndex = 0;
try
{
firstSpaceIndex = line.indexOf(” “);
}
catch(NullPointerException npe)
{
System.out.println(“Void Connection Dropped…”);
break;
}
/* end of patch */
The vendor has released an update to address this issue:
Fizmez Web Server 1.0

参考网址

来源: XF
名称: fizmez-webserver-null-dos(15506)
链接:http://xforce.iss.net/xforce/xfdb/15506

来源: BID
名称: 9894
链接:http://www.securityfocus.com/bid/9894

来源: www.autistici.org
链接:http://www.autistici.org/fdonato/advisory/fws1.0-adv.txt

来源: SECTRACK
名称: 1009451
链接:http://securitytracker.com/id?1009451

来源: SECUNIA
名称: 11141
链接:http://secunia.com/advisories/11141/

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享