本文实例讲述了php实现图片防盗链破解操作。分享给大家供大家参考,具体如下:
很多小伙伴的博客,网站都是用图床来实现的,那么现在很多稳定的图床接口都被做了防盗链处理,例如百度、阿里、京东、小米、搜狗等。
所以我们应该怎么避开防盗链直接使用图片呢?
当客户端(浏览器)向服务器请求内容的时候,会提交一个header,这个header中包含了如:浏览器信息、cookie等内容,那么有一个叫referer的东东,也包含在这里面。
referer是干啥用的呢?
它就是告诉服务器,这个请求的来源是谁,比如:从页面a跳转到页面b,那么页面b收到的referer就是页面a。
但是在图片身上和这个有点不同,图片是在html页面加载完毕后才加载的,所以图片收到的referer不是网页的上一个页面,而是当前页面。
说这么多,不要被说绕了,简单点就是:对于图片而言,收到的referer就是引用图片的这个网页的网址。
那么现在的很多网站是如何利用referer来进行防图片盗链的呢?
三种情况下允许引用图片:
本网站。无referer信息的情况。(服务器认为是从浏览器直接访问的图片url,所以这种情况下能正常访问)白名单网址。1、需要有一个服务器
2、代码使用php
<?php class imgbridge{ private $water=''; private $imgurl=''; private $referer=''; private $ua='mqqbrowr/26 mozilla/5.0 (linux; u; android 2.3.7; zh-cn; mb200 build/grj22; cyanogenmod-7) applewebkit/533.1 (khtml, like gecko) version/4.0 mobile safari/533.1'; private $imgcode=''; private $imgheader=''; private $imgbody=''; private $imgtype=''; public function \_\_construct($config=array()){ foreach($config as $key=>$value){ $this->$key=$value; } } public function getimg($imgurl){ $this->imgurl=$imgurl; /\*\* 处理url \*/ if(substr($this->imgurl,0,7)!=='http://' && substr($this->imgurl,0,8)!=='https://'){ $this->imgurl='http://'.$this->imgurl; } /\*\* 解析url中的host \*/ $url\_array=par\_url($this->imgurl); /\*\* 设置referer \*/ $this->referer=$this->referer==""?'http://'.$url\_array\['host'\]:$this->referer; /\*\*开始获取 \*/ $this->urlopen(); $this->imgbody; /\*\*处理错误 \*/ if($this->imgcode!=200){ $this->error(1); exit(); } /\*\*获取图片格式 \*/ preg\_match("/content-type: image\\/(.+?)\\n/sim",$this->imgheader,$result); /\*\*看看是不是图片 \*/ if(!ist($result\[1\])){ $this->error(2); exit(); }el{ $this->imgtype=$result\[1\]; } /\*\* 输出内容 \*/ $this->out(); } private function out(){ /\*\* gif 不处理,直接出图 \*/ if($this->imgtype=='gif'){ 欢乐颂资源 header("content-type: image/gif"); echo $this->imgbody; exit冬夜静悄悄(); } header("content-type: image/png"); /\*\* 其他类型的,加水印 \*/ $im=imagecreatefromstring($this->imgbody); $white = imagecolorallocate($im, 255, 255, 255); /\*加上水印\*/ if($this->water){ imagettftext($im, 12, 0, 20, 20, $white, "/fonts/hwxh.ttf", $this->water); } imagepng($im); } private function error($err){ header("content-type: image/jpeg"); $im=imagecreatefromstring(file\_get\_contents('./default.jpg')); imagejpeg($im); } private function urlopen() { $ch = curl\_init(); curl\_topt($ch, curlopt\_url, $this->imgurl); curl\_topt($ch, curlopt\_uragent, $this->ua); curl\_topt ($ch,curlopt\_referer,$this->referer); curl\_topt($ch, curlopt\_returntransfer, 1); curl\_topt($ch, curlopt\_header, 1); /\*\*跳转也要 \*/ curl\_topt($ch, curlopt\_followlocation, true); /\*\* 支持https \*/ $opt\[curlopt\_ssl\_verifyhost\] = 2; $opt\[curlopt\_ssl\_verifypeer\] = fal; curl\_topt\_array($ch, $opt); $respon = curl\_exec($ch); $this->imgcode=curl\_getinfo($ch, curlinfo\_http\_code) ; if ($this->imgcode == '200') { $headersize = curl\_getinfo($ch, curlinfo\_header\_size); $this->imgheader = substr($respon, 0, $headersize); $this->imgbody = substr($respon, $headersize); return ; } curl\_clo($ch); } }$img=new imgbr中学图书馆工作总结idge(array('water'=>''));$img->getimg(strstr($\_rver\["query\_string"\], "http"));
代码命名为dl.php
那么直接可以访问
http://域名/dl.php?url=防盗链图片地址
http://www.likeyunba.com/2.php?url=
请不要拿我的直接用,我的不会长期放着的,只保留短暂1-2个月用于给你们体验。
我用135编辑器上传一张图片,获得图片地址
https://image.135editor.com/files/urs/740/7407329/201912/ztefax8r_cmea.jpg
加上反向代理,四级英语听力破解防盗链处理
http://www.likeyunba.com/2.php?url=https://image.135editor.com/files/urs/740/7407329/201912/ztefax8r_cmea.jpg
html格式
<img src=”http://www.likeyunba.com/2.php?url=https://image.135editor.com/files/urs/740/7407329/201912/ztefax8r_cmea欢迎辞.jpg” width=”500″ />
本文发布于:2023-04-08 17:52:30,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/2b994d08a74558efa7777fabd3d52804.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP实现图片防盗链破解操作示例【解决图片防盗链问题/反向代理】.doc
本文 PDF 下载地址:PHP实现图片防盗链破解操作示例【解决图片防盗链问题/反向代理】.pdf
留言与评论(共有 0 条评论) |