PHP仿盗链代码
程序员文章站
2022-04-28 15:42:27
复制代码 代码如下:
<?php
/**
* @author seraphim
* @copyright 2012
*/
$admin = array(
'defaulturl'=> 'http://www.xx.com/images/banner-header.gif', //盗链返回的地址
'url_1' => 'http://www.xx.net/file',
'url_2' => 'http://www.xx.net/file1',
);
$okaysites = array(
'http://box.baidu.com',
'http://tieba.baidu.com/p/1493336008', //白名单
'http://www.xx.com/1.html',
);
$reffer = $_server['http_referer'];
if ($reffer) {
$yes = 0;
while (list($domain, $subarray) = each($okaysites)) {
if (ereg($subarray, "$reffer")) {
$yes = 1;
}
}
$theu = 'url_' . $_get['site'];
$file = $_get['file'];
if ($admin[$theu] and $yes == 1) {
header("location: $admin[$theu]/$file");
} else {
header("location: $admin[defaulturl]");
}
} else {
header("location: $admin[defaulturl]");
}
print_r($_server['http_referer']);
?>
复制代码 代码如下:
<?php
/**
* @author seraphim
* @copyright 2012
*/
$admin = array(
'defaulturl'=> 'http://www.xx.com/images/banner-header.gif', //盗链返回的地址
'url_1' => 'http://www.xx.net/file',
'url_2' => 'http://www.xx.net/file1',
);
$okaysites = array(
'http://box.baidu.com',
'http://tieba.baidu.com/p/1493336008', //白名单
'http://www.xx.com/1.html',
);
$reffer = $_server['http_referer'];
if ($reffer) {
$yes = 0;
while (list($domain, $subarray) = each($okaysites)) {
if (ereg($subarray, "$reffer")) {
$yes = 1;
}
}
$theu = 'url_' . $_get['site'];
$file = $_get['file'];
if ($admin[$theu] and $yes == 1) {
header("location: $admin[$theu]/$file");
} else {
header("location: $admin[defaulturl]");
}
} else {
header("location: $admin[defaulturl]");
}
print_r($_server['http_referer']);
?>
上一篇: 快速排序