-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgen.php
21 lines (15 loc) · 825 Bytes
/
gen.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
$x= array(
"Googlebot" => "https://developers.google.com/search/apis/ipranges/googlebot.json",
"Bingbot" => "https://www.bing.com/toolbox/bingbot.json"
);
$fp=fopen("blockfakebots.conf","w");
foreach($x as $regex => $url){
if( empty($x = json_decode(file_get_contents($url)))) die("Cannot load IP-List for $url");
fprintf($fp,"RewriteCond %%{HTTP_USER_AGENT} ^(.*)%s(.*)$ [NC] \n",$regex);
#foreach($x->prefixes as $val){ if(isset($val->ipv4Prefix)){ fprintf($fp,"RewriteCond expr \"! -R '%s'\" \n",$val->ipv4Prefix); } }
foreach($x->prefixes as $val){ if(isset($val->ipv4Prefix)){ fprintf($fp,"RewriteCond expr \"! %%{REMOTE_ADDR} -ipmatch '%s'\"\n",$val->ipv4Prefix); } }
fprintf($fp,"RewriteRule ^ - [R=403,L] \n\n\n");
}
fclose($fp);
?>