php防盗链的最有效的方法_PHP应用_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

php防盗链的最有效的方法

作者:黑客防线网安网站维护基地 来源:黑客防线网安网站维护基地 浏览次数:0

本篇关键词:php防盗链

1.简单防盗链

$ADMIN[defaulturl] = "http://down.rongsen.com.cn/404.htm";//盗链返回的地址
$okaysites = array("http://down.rongsen.com.cn/","http://www.down.rongsen.com.cn"); //白名单
$ADMIN[url_1] = "http://down.rongsen.com.cn/temp/download/";//下载地点1
$ADMIN[url_2] = "";//下载地点2以此类推

$reffer = $HTTP_REFERER;
if($reffer) {
$yes = 0;
while(list($domain, $subarray) = each($okaysites)) {
if (ereg($subarray,"$reffer")) {
$yes = 1;
}
}
$theu = "url"."_"."$site";
if ($ADMIN[$theu] AND $yes == 1) {
header("Location: $ADMIN[$theu]/$file");
} else {
header("Location: $ADMIN[defaulturl]");
}
} else {
header("Location: $ADMIN[defaulturl]");
}

?> 

使用方法:将上述代码保存为dao4.php,
比如我测试用的validatecode.rar在我的站点http://down.rongsen.com.cn/temp/download里面,
则用以下代码表示下载连接.


  CODE: [Copy to clipboard]  
文件名?site=1&file=文件 

2.服务器防盗链
用到软件  IIS防盗链插件(UUIIS防盗链) 高级版
下在地址    http://www.rongsen.com.cn/down/2008/0624/down_115.html

 IIS防盗链插件UUIIS防盗链By Cookie版
下在地址  http://www.rongsen.com.cn/down/2008/0624/down_116.html

3.软件下载的防盗链方法


  CODE: [Copy to clipboard]  
//放置下载软件的根目录相对于当前脚本目录的相对目录
$fileRelPath = "../../software";
//例外允许连接的网址注意:自身域名不需要填入,设定为肯定可以下载,
// 空字符串("")表示直接输入网址下载的情况
$excludeReferArr = array("www.rongsen.com.cn", "rongsen.com.cn");

chdir($fileRelPath);
$fileRootPath = getcwd() ."/";

$filePath=$HTTP_GET_VARS["file"];

$url=parse_url($_SERVER["HTTP_REFERER"]);

if($url[host]!=$_SERVER["HTTP_HOST"] && !in_array($referHost, $excludeReferArr)){
?>

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-480-1.html
网站维护教程更新时间:2008-06-24 20:33:10  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer