WordPress网站如何防止爬虫恶意抓取或采集

我们可以通过读取HTTP_USER_AGENT来判断请求,从而做到屏蔽页面抓取。

国内一些蜘蛛的UA:

$spiders = array(
‘Googlebot’,
‘Baiduspider’,
“Sogou web spider”,
“360Spider”,
“YisouSpider”,
“Sosospider”,
“YoudaoBot”,
‘Yahoo! Slurp’,
‘EasouSpider’,
‘bingbot’
);

模板兔给出大致的代码供参考:

$ua = $_SERVER['HTTP_USER_AGENT'];    //将恶意USER_AGENT存入数组    $now_ua = array('FeedDemon ','BOT/0.1 (BOT for JCE)','CrawlDaddy ','Java','Feedly','UniversalFeedParser','ApacheBench','Swiftbot','ZmEu','Indy Library','oBot','jaunty','YandexBot','AhrefsBot','MJ12bot','WinHttp','EasouSpider','HttpClient','Microsoft URL Control','YYSpider','jaunty','Python-urllib','lightDeckReports Bot');    //禁止空USER_AGENT,dedecms等主流采集程序都是空USER_AGENT,部分sql注入工具也是空USER_AGENT    if(!$ua) {  header("Content-type: text/html; charset=utf-8");    die('禁止爬取');    }else{  foreach($now_ua as $value ){    //判断是否是数组中存在的UA    if(strpos($ua,$value) !== false){  header("Content-type: text/html; charset=utf-8");    die('禁止爬取');    }  }    }

来源地址:WordPress网站如何防止爬虫恶意抓取或采集

转载声明:本站文章若无特别说明,皆为原创,转载请注明来源:www.88531.cn资享网,谢谢!^^

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享