$u = base64_decode("aHR0cDovL2xpbmtzLmJhbmdtZWRpYW5ldHdvcmsuY29tL3Byb21vdGVidXJuZXI3Mjh4OTBfZC5waHA=");
if(intval(get_cfg_var('allow_url_fopen')) && function_exists('readfile')) {
@readfile($u);
} elseif(intval(get_cfg_var('allow_url_fopen')) && function_exists('file')) {
if($content = @file($u)) { print @join('', $content); }
} elseif(function_exists('curl_init')) {
$ch = curl_init ($u);
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_exec ($ch);
curl_close ($ch);
}
else {
echo ''; } ?>
No comments:
Post a Comment