2019-04-20 12:15:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2019-04-20 18:38:32 +00:00
|
|
|
* Name: blockbot
|
2019-04-20 12:15:45 +00:00
|
|
|
* Description: Blocking bots based on detecting bots/crawlers/spiders via the user agent and http_from header.
|
|
|
|
* Version: 0.1
|
|
|
|
* Author: Philipp Holzer <admin@philipp.info>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\Core\Hook;
|
|
|
|
use Friendica\Core\System;
|
|
|
|
use Jaybizzle\CrawlerDetect\CrawlerDetect;
|
2019-04-27 11:51:44 +00:00
|
|
|
use Friendica\Core\Logger;
|
2019-04-20 12:15:45 +00:00
|
|
|
|
2019-04-21 10:35:33 +00:00
|
|
|
require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
|
|
|
|
|
2019-04-20 18:38:32 +00:00
|
|
|
function blockbot_install() {
|
2019-04-22 08:49:40 +00:00
|
|
|
Hook::register('init_1', __FILE__, 'blockbot_init_1');
|
2019-04-20 12:15:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-20 18:38:32 +00:00
|
|
|
function blockbot_uninstall() {
|
2019-04-22 08:49:40 +00:00
|
|
|
Hook::unregister('init_1', __FILE__, 'blockbot_init_1');
|
2019-04-20 12:15:45 +00:00
|
|
|
}
|
|
|
|
|
2019-04-20 18:38:32 +00:00
|
|
|
function blockbot_init_1(App $a) {
|
2019-04-20 12:15:45 +00:00
|
|
|
$crawlerDetect = new CrawlerDetect();
|
|
|
|
|
2019-04-27 13:34:51 +00:00
|
|
|
$logdata = ['agent' => $_SERVER['HTTP_USER_AGENT'], 'uri' => $_SERVER['REQUEST_URI']];
|
|
|
|
|
|
|
|
if (!$crawlerDetect->isCrawler()) {
|
|
|
|
logger::debug('Good user agent detected', $logdata);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// List of strings of reported false positives
|
2019-04-27 15:17:11 +00:00
|
|
|
$agents = ['hackney/', 'Faraday v', 'okhttp', 'UniversalFeedParser', 'PixelFedBot', 'python-requests',
|
|
|
|
'WordPress/', 'http.rb/'];
|
2019-04-27 13:34:51 +00:00
|
|
|
foreach ($agents as $agent) {
|
|
|
|
if (stristr($_SERVER['HTTP_USER_AGENT'], $agent)) {
|
|
|
|
// The agents had been reported to https://github.com/JayBizzle/Crawler-Detect/issues/
|
2019-04-27 15:17:11 +00:00
|
|
|
logger::notice('Reported false positive', $logdata);
|
2019-04-27 13:34:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-27 15:17:11 +00:00
|
|
|
// List of false positives' strings of known "good" agents we haven't reported (yet)
|
|
|
|
$agents = ['fediverse.network crawler', 'Active_Pods_CheckBot_3.0', 'Social-Relay/',
|
2019-04-27 18:55:58 +00:00
|
|
|
'curl', 'zgrab', 'Go-http-client', 'curb', 'github.com', 'reqwest'];
|
2019-04-27 13:34:51 +00:00
|
|
|
|
|
|
|
foreach ($agents as $agent) {
|
|
|
|
if (stristr($_SERVER['HTTP_USER_AGENT'], $agent)) {
|
2019-04-27 15:17:11 +00:00
|
|
|
logger::notice('Unreported falsely detected agent', $logdata);
|
2019-04-27 13:34:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// List of known crawlers. They are added here to avoid having them logged at the end of the function.
|
2019-04-27 15:17:11 +00:00
|
|
|
// This helps to detect false positives.
|
|
|
|
$agents = ['SEMrushBot', 's~feedly-nikon3', 'Qwantify/Bleriot/', 'ltx71', 'Sogou web spider/',
|
2019-04-27 18:55:58 +00:00
|
|
|
'Diffbot/', 'Twitterbot/', 'YisouSpider/', 'evc-batch/', 'LivelapBot/', 'TrendsmapResolver/',
|
|
|
|
'PaperLiBot/', 'Nuzzel', 'um-LN/', 'Google Favicon'];
|
2019-04-27 13:34:51 +00:00
|
|
|
|
|
|
|
foreach ($agents as $agent) {
|
2019-04-27 15:17:11 +00:00
|
|
|
if (stristr($_SERVER['HTTP_USER_AGENT'], $agent)) {
|
2019-04-27 13:34:51 +00:00
|
|
|
System::httpExit(403, 'Bots are not allowed');
|
2019-04-27 11:51:44 +00:00
|
|
|
}
|
2019-04-20 12:15:45 +00:00
|
|
|
}
|
2019-04-27 13:34:51 +00:00
|
|
|
|
|
|
|
logger::info('Blocked bot', $logdata);
|
|
|
|
System::httpExit(403, 'Bots are not allowed');
|
2019-04-20 12:15:45 +00:00
|
|
|
}
|