黑松山资源网 Design By www.paidiu.com
本文实例讲述了php实现的网络相册图片防盗链完美破解方法。分享给大家供大家参考。具体如下:
网络相册图片防盗链破解程序 - PHP版 这个防盗链破解版可以完美破解当下比较流行的: 百度相册,网易相册,360我喜欢等网站图片. 还可以实现简单的图片防盗链. 因为这个类是先进行获取远程图片, 然后再把图片发送到客户端,所以,算是进行了两次流量的传送.因此,会浪费空间流量,接下来,会开发缓存功能,这样可以实现节约流量!
<"Content-Type: $this->contentType;"); echo $this->CurlGet($link); }else{ fwrite($stream, $this->buildHeaders()); $this->body = ""; $img_size = get_headers($link,true); while (!feof($stream)) { $this->body .= fgets($stream, $img_size['Content-Length']); //fwrite($jpg,fread($stream, $img_size['Content-Length'])); } $content = explode("\r\n\r\n", $this->body, 2); $this->body = $content[1]; fclose($stream); // send 'ContentType' header for saving this file correctly // 如果不发送CT,则在试图保存图片时,IE7 会发生错误 (800700de) // Flock, Firefox 则没有这个问题,Opera 没有测试 header("Content-Type: $this->contentType;"); header("Cache-Control: max-age=315360000"); echo $this->body; //保存图片 //file_put_contents('hello.jpg', $this->body); } } /** * Compose HTTP request header * * @return string */ private function buildHeaders() { $request = "$this->method $this->path HTTP/1.1\r\n"; $request .= "Host: $this->host\r\n"; $request .= "Accept-Encoding: gzip, deflate\r\n"; $request .= "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; zh-CN; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1\r\n"; $request .= "Content-Type: image/jpeg\r\n"; $request .= "Accept: */*\r\n"; $request .= "Keep-Alive: 300\r\n"; $request .= "Referer: $this->referer\r\n"; $request .= "Cache-Control: max-age=315360000\r\n"; $request .= "Connection: close\r\n\r\n"; return $request; } /** * Strip initial header and filesize info */ private function extractBody(&$body) { // The status of link if(strpos($body, '200 OK') > 0) { // strip header $endpos = strpos($body, "\r\n\r\n"); $body = substr($body, $endpos + 4); // strip filesize at nextline $body = substr($body, strpos($body, "\r\n") + 2); } } /** * Extra the http url * * @param $link */ private function parseLink($link) { $this->link = $link; $this->components = parse_url($this->link); $this->host = $this->components['host']; $this->path = $this->components['path']; if(empty($this->referer)){ $this->referer = $this->components['scheme'] . '://' . $this->components['host']; }elseif($this->referer == '1'){ $this->referer = ''; } $this->filename = basename($this->path); // extract the content type $ext = substr(strrchr($this->path, '.'), 1); if ($ext == 'jpg' or $ext == 'jpeg') { $this->contentType = 'image/pjpeg'; } elseif ($ext == 'gif') { $this->contentType = 'image/gif'; } elseif ($ext == 'png') { $this->contentType = 'image/x-png'; } elseif ($ext == 'bmp') { $this->contentType = 'image/bmp'; } else { $this->contentType = 'application/octet-stream'; } } //抓取网页内容 function CurlGet($url){ $url = str_replace('&','&',$url); $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_REFERER,$url); curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; SeaPort/1.2; Windows NT 5.1; SV1; InfoPath.2)"); curl_setopt($curl, CURLOPT_COOKIEJAR, 'cookie.txt'); curl_setopt($curl, CURLOPT_COOKIEFILE, 'cookie.txt'); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 0); $values = curl_exec($curl); curl_close($curl); return $values; } } /** * 取得根域名 * * @author lonely * @create 2011-3-11 * @version 0.11 * @lastupdate lonely * @package Sl */ class RootDomain{ private static $self; private $domain=null; private $host=null; private $state_domain; private $top_domain; /** * 取得域名分析实例 * Enter description here ... */ public static function instace(){ if(!self::$self) self::$self=new self(); return self::$self; } public function __construct(){ $this->state_domain=array( 'al','dz','af','ar','ae','aw','om','az','eg','et','ie','ee','ad','ao','ai','ag','at','au','mo','bb','pg','bs','pk','py','ps','bh','pa','br','by','bm','bg','mp','bj','be','is','pr','ba','pl','bo','bz','bw','bt','bf','bi','bv','kp','gq','dk','de','tl','tp','tg','dm','do','ru','ec','er','fr','fo','pf','gf','tf','va','ph','fj','fi','cv','fk','gm','cg','cd','co','cr','gg','gd','gl','ge','cu','gp','gu','gy','kz','ht','kr','nl','an','hm','hn','ki','dj','kg','gn','gw','ca','gh','ga','kh','cz','zw','cm','qa','ky','km','ci','kw','cc','hr','ke','ck','lv','ls','la','lb','lt','lr','ly','li','re','lu','rw','ro','mg','im','mv','mt','mw','my','ml','mk','mh','mq','yt','mu','mr','us','um','as','vi','mn','ms','bd','pe','fm','mm','md','ma','mc','mz','mx','nr','np','ni','ne','ng','nu','no','nf','na','za','aq','gs','eu','pw','pn','pt','jp','se','ch','sv','ws','yu','sl','sn','cy','sc','sa','cx','st','sh','kn','lc','sm','pm','vc','lk','sk','si','sj','sz','sd','sr','sb','so','tj','tw','th','tz','to','tc','tt','tn','tv','tr','tm','tk','wf','vu','gt','ve','bn','ug','ua','uy','uz','es','eh','gr','hk','sg','nc','nz','hu','sy','jm','am','ac','ye','iq','ir','il','it','in','id','uk','vg','io','jo','vn','zm','je','td','gi','cl','cf','cn','yr' ); $this->top_domain=array('com','arpa','edu','gov','int','mil','net','org','biz','info','pro','name','museum','coop','aero','xxx','idv','me','mobi'); $this->url=$_SERVER['HTTP_HOST']; } /** * 设置URL * Enter description here ... * @param string $url */ public function setUrl($url=null){ $url=$url"/^http:/is", $url)) $url="http://".$url; $url=parse_url(strtolower($url)); $urlarr=explode(".", $url['host']); $count=count($urlarr); if ($count<=2){ $this->domain=$url['host']; }else if ($count>2){ $last=array_pop($urlarr); $last_1=array_pop($urlarr); if(in_array($last, $this->top_domain)){ $this->domain=$last_1.'.'.$last; $this->host=implode('.', $urlarr); }else if (in_array($last, $this->state_domain)){ $last_2=array_pop($urlarr); if(in_array($last_1, $this->top_domain)){ $this->domain=$last_2.'.'.$last_1.'.'.$last; $this->host=implode('.', $urlarr); }else{ $this->host=implode('.', $urlarr).$last_2; $this->domain=$last_1.'.'.$last; } } } return $this; } /** * 取得域名 * Enter description here ... */ public function getDomain(){ return $this->domain; } /** * 取得主机 * Enter description here ... */ public function getHost(){ return $this->host; } } $referer = array('xuehuwang.com','zangbala.cn','qianzhebaikou.net','sinaapp.com','163.com','sina.com.cn','weibo.com','abc.com'); // Get the url, maybe you should check the given url if (isset($_GET['url']) and $_GET['url'] != '') { //获取来路域名 $site = (isset($_SERVER['HTTP_REFERER']) && !empty($_SERVER['HTTP_REFERER'])) ? $_SERVER['HTTP_REFERER'] : ''; //匹配是否是一个图片链接 if(preg_match('/(http|https|ftp|rtsp|mms):(\/\/|\\\\){1}((\w)+[.]){1,}([a-zA-Z]|[0-9]{1,3})(\S*\/)((\S)+[.]{1}(gif|jpg|png|bmp))/i',$_GET['url'])){ if(!empty($site)){ $tempu = parse_url($site); $host = $tempu['host']; $root = new RootDomain(); $root->setUrl($site); if(in_array($root->getDomain(),$referer)){ $img_referer = (isset($_GET['referer']) && !empty($_GET['referer']))? trim($_GET['referer']) : ''; new Frivoller($_GET['url'],$img_referer); } }else{ $img_referer = (isset($_GET['referer']) && !empty($_GET['referer']))? trim($_GET['referer']) : ''; new Frivoller($_GET['url'],$img_referer); } } } ?>
希望本文所述对大家的php程序设计有所帮助。
黑松山资源网 Design By www.paidiu.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
黑松山资源网 Design By www.paidiu.com
暂无评论...
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
2025年03月02日
2025年03月02日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]