Home > Backend Development > PHP Tutorial > 使用PHP破解防盗链图片的一个简单方法_PHP

使用PHP破解防盗链图片的一个简单方法_PHP

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-01 11:52:55
Original
1111 people have browsed it

有自己的主机一般都会设计"防盗链", 其实包括图片防盗链,和下载防盗链等,如:
1.使用.htaccess设置防盗链
复制代码 代码如下:RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?bitsCN.com/.*$ [NC]
RewriteRule \.(gif|jpg)$ http://www.bitsCN.com/image.gif [R,L]
2.nginx设置防盗链
复制代码 代码如下:location ~* \.(gif|jpg|png|swf|flv)$ {
 valid_referers none blocked bitsCN.com;
 if ($invalid_referer) {
  rewrite ^/ http://bitsCN.com/234_s.gif;
  #return 404;
 }
}
但怎么破解防盗链呢? 一般的防盗链是判断来路是否为自己的域名, 我们可以使用 php 内置的 file_get_contents 方法来请求这个图片(当然别的后端语言也有类似的方法), 如:
复制代码 代码如下://getImg.php?url=目标图片连接
header('Content-type: image/jpeg');
echo file_get_contents(isset($_GET["url"])?$_GET["url"]:'http://static.bitsCN.com/images/v1/loading-16-16.gif');
?>
看例子:

1, 直接加载防盗链图片:(该站未授权的图片显示都是空白)
使用PHP破解防盗链图片的一个简单方法_PHP

2, 通过php读取图片:
使用PHP破解防盗链图片的一个简单方法_PHP

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template