mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-02 18:50:13 +00:00
New Referers / Bots Added
This commit is contained in:
parent
8f24f271aa
commit
0ba196ed29
4 changed files with 31 additions and 9 deletions
|
@ -929,6 +929,7 @@ dominateforex.ml
|
||||||
domination.ml
|
domination.ml
|
||||||
dominterior.org
|
dominterior.org
|
||||||
domoysshop.ru
|
domoysshop.ru
|
||||||
|
domznaniy.ru
|
||||||
donna7753191.ru
|
donna7753191.ru
|
||||||
donvito.unas.cz
|
donvito.unas.cz
|
||||||
doska-vsem.ru
|
doska-vsem.ru
|
||||||
|
@ -1331,6 +1332,7 @@ gamerextra.com
|
||||||
gamerscorps.com
|
gamerscorps.com
|
||||||
games.kolossale.ru
|
games.kolossale.ru
|
||||||
gamestube.pw
|
gamestube.pw
|
||||||
|
gamevalue7.weebly.com
|
||||||
gamewrath.com
|
gamewrath.com
|
||||||
gaming-journal.com
|
gaming-journal.com
|
||||||
gap-search.com
|
gap-search.com
|
||||||
|
@ -2064,6 +2066,7 @@ metarip.ru
|
||||||
metaxalonevstizanidine.blogspot.com
|
metaxalonevstizanidine.blogspot.com
|
||||||
methodsmarketing.com
|
methodsmarketing.com
|
||||||
mex-annushka.ru
|
mex-annushka.ru
|
||||||
|
mhi-systems.ru
|
||||||
micasainvest.com
|
micasainvest.com
|
||||||
microsearch.ru
|
microsearch.ru
|
||||||
microsoftportal.net
|
microsoftportal.net
|
||||||
|
@ -3303,6 +3306,7 @@ tsan.net
|
||||||
tsstcorpcddvdwshbbdriverfb.aircus.com
|
tsstcorpcddvdwshbbdriverfb.aircus.com
|
||||||
tuberkulezanet.ru
|
tuberkulezanet.ru
|
||||||
tuberkuleznik.ru
|
tuberkuleznik.ru
|
||||||
|
tuckermktg.com
|
||||||
tula.howotorg.ru
|
tula.howotorg.ru
|
||||||
tula.mdverey.ru
|
tula.mdverey.ru
|
||||||
tupper-posuda.ru
|
tupper-posuda.ru
|
||||||
|
@ -3356,6 +3360,7 @@ unitygame3d.com
|
||||||
unmaroll.ya.ru
|
unmaroll.ya.ru
|
||||||
unpredictable.ga
|
unpredictable.ga
|
||||||
uogonline.com
|
uogonline.com
|
||||||
|
upstore.me
|
||||||
uptime-alpha.net
|
uptime-alpha.net
|
||||||
uptime.com
|
uptime.com
|
||||||
uptimebot.net
|
uptimebot.net
|
||||||
|
|
|
@ -17,11 +17,11 @@
|
||||||
### - https://github.com/oohnoitz/nginx-blacklist
|
### - https://github.com/oohnoitz/nginx-blacklist
|
||||||
|
|
||||||
### Last Updated
|
### Last Updated
|
||||||
### Sun Jan 29 09:27:09 SAST 2017
|
### Sun Jan 29 11:24:21 SAST 2017
|
||||||
### End Last Updated
|
### End Last Updated
|
||||||
|
|
||||||
### Generated in
|
### Generated in
|
||||||
### 0.713077783585 seconds
|
### 0.29238986969 seconds
|
||||||
### End Generated in
|
### End Generated in
|
||||||
|
|
||||||
### Tested on: nginx/1.10.0 (Ubuntu 16.04)
|
### Tested on: nginx/1.10.0 (Ubuntu 16.04)
|
||||||
|
@ -52,6 +52,19 @@
|
||||||
### This is loaded and available for any vhost to use in its config
|
### This is loaded and available for any vhost to use in its config
|
||||||
### Each vhost then just needs the include file mentioned below for it to take effect.
|
### Each vhost then just needs the include file mentioned below for it to take effect.
|
||||||
|
|
||||||
|
### In Most cases your nginx.conf should already have an include statement as follows
|
||||||
|
### Include /etc/nginx/conf.d/*
|
||||||
|
### If that is the case then you can ignore the above include statement as Nginx will
|
||||||
|
### load anything in the conf.d folder and make it available to all sites.
|
||||||
|
|
||||||
|
### All you then need to do is use the include statements below in the server {} block of a vhost file for it to take effect.
|
||||||
|
# server {
|
||||||
|
# #Config stuff here
|
||||||
|
# include /etc/nginx/bots.d/blockbots.conf
|
||||||
|
# include /etc/nginx/bots.d/ddos.conf
|
||||||
|
# #Other config stuff here
|
||||||
|
# }
|
||||||
|
|
||||||
### Need I say, please don't just copy and paste this without reviewing what bots and
|
### Need I say, please don't just copy and paste this without reviewing what bots and
|
||||||
### referers are being blocked, you may want to exclude certain of them
|
### referers are being blocked, you may want to exclude certain of them
|
||||||
### Also make SURE to whitelist your own IP's in the geo $bad_referer section.
|
### Also make SURE to whitelist your own IP's in the geo $bad_referer section.
|
||||||
|
@ -66,12 +79,6 @@
|
||||||
### 2 = rate limited more
|
### 2 = rate limited more
|
||||||
### 3 = block completely
|
### 3 = block completely
|
||||||
|
|
||||||
### To enable it in a host file you just need to add the blockbots.conf file as an include
|
|
||||||
### in either a server / location context. I use this on all sites in the server content
|
|
||||||
### so it blocks access before any of your location directives even take effect.
|
|
||||||
### I have this in a location /etc/nginx/bots.d/blockbots.conf
|
|
||||||
### The include is then "include /etc/nginx/bots.d/blockbots.conf;"
|
|
||||||
|
|
||||||
### NEED I say do a "sudo nginx -t" to test the config is okay after adding these
|
### NEED I say do a "sudo nginx -t" to test the config is okay after adding these
|
||||||
### and if so then "sudo service nginx reload" for it to take effect.
|
### and if so then "sudo service nginx reload" for it to take effect.
|
||||||
|
|
||||||
|
@ -1752,6 +1759,7 @@ map $http_referer $bad_referer {
|
||||||
"~*domination.ml" 1;
|
"~*domination.ml" 1;
|
||||||
"~*dominterior.org" 1;
|
"~*dominterior.org" 1;
|
||||||
"~*domoysshop.ru" 1;
|
"~*domoysshop.ru" 1;
|
||||||
|
"~*domznaniy.ru" 1;
|
||||||
"~*donna7753191.ru" 1;
|
"~*donna7753191.ru" 1;
|
||||||
"~*donvito.unas.cz" 1;
|
"~*donvito.unas.cz" 1;
|
||||||
"~*doska-vsem.ru" 1;
|
"~*doska-vsem.ru" 1;
|
||||||
|
@ -2154,6 +2162,7 @@ map $http_referer $bad_referer {
|
||||||
"~*gamerscorps.com" 1;
|
"~*gamerscorps.com" 1;
|
||||||
"~*games.kolossale.ru" 1;
|
"~*games.kolossale.ru" 1;
|
||||||
"~*gamestube.pw" 1;
|
"~*gamestube.pw" 1;
|
||||||
|
"~*gamevalue7.weebly.com" 1;
|
||||||
"~*gamewrath.com" 1;
|
"~*gamewrath.com" 1;
|
||||||
"~*gaming-journal.com" 1;
|
"~*gaming-journal.com" 1;
|
||||||
"~*gap-search.com" 1;
|
"~*gap-search.com" 1;
|
||||||
|
@ -2887,6 +2896,7 @@ map $http_referer $bad_referer {
|
||||||
"~*metaxalonevstizanidine.blogspot.com" 1;
|
"~*metaxalonevstizanidine.blogspot.com" 1;
|
||||||
"~*methodsmarketing.com" 1;
|
"~*methodsmarketing.com" 1;
|
||||||
"~*mex-annushka.ru" 1;
|
"~*mex-annushka.ru" 1;
|
||||||
|
"~*mhi-systems.ru" 1;
|
||||||
"~*micasainvest.com" 1;
|
"~*micasainvest.com" 1;
|
||||||
"~*microsearch.ru" 1;
|
"~*microsearch.ru" 1;
|
||||||
"~*microsoftportal.net" 1;
|
"~*microsoftportal.net" 1;
|
||||||
|
@ -4126,6 +4136,7 @@ map $http_referer $bad_referer {
|
||||||
"~*tsstcorpcddvdwshbbdriverfb.aircus.com" 1;
|
"~*tsstcorpcddvdwshbbdriverfb.aircus.com" 1;
|
||||||
"~*tuberkulezanet.ru" 1;
|
"~*tuberkulezanet.ru" 1;
|
||||||
"~*tuberkuleznik.ru" 1;
|
"~*tuberkuleznik.ru" 1;
|
||||||
|
"~*tuckermktg.com" 1;
|
||||||
"~*tula.howotorg.ru" 1;
|
"~*tula.howotorg.ru" 1;
|
||||||
"~*tula.mdverey.ru" 1;
|
"~*tula.mdverey.ru" 1;
|
||||||
"~*tupper-posuda.ru" 1;
|
"~*tupper-posuda.ru" 1;
|
||||||
|
@ -4179,6 +4190,7 @@ map $http_referer $bad_referer {
|
||||||
"~*unmaroll.ya.ru" 1;
|
"~*unmaroll.ya.ru" 1;
|
||||||
"~*unpredictable.ga" 1;
|
"~*unpredictable.ga" 1;
|
||||||
"~*uogonline.com" 1;
|
"~*uogonline.com" 1;
|
||||||
|
"~*upstore.me" 1;
|
||||||
"~*uptime-alpha.net" 1;
|
"~*uptime-alpha.net" 1;
|
||||||
"~*uptime.com" 1;
|
"~*uptime.com" 1;
|
||||||
"~*uptimebot.net" 1;
|
"~*uptimebot.net" 1;
|
||||||
|
|
|
@ -929,6 +929,7 @@ domain:dominateforex.ml
|
||||||
domain:domination.ml
|
domain:domination.ml
|
||||||
domain:dominterior.org
|
domain:dominterior.org
|
||||||
domain:domoysshop.ru
|
domain:domoysshop.ru
|
||||||
|
domain:domznaniy.ru
|
||||||
domain:donna7753191.ru
|
domain:donna7753191.ru
|
||||||
domain:donvito.unas.cz
|
domain:donvito.unas.cz
|
||||||
domain:doska-vsem.ru
|
domain:doska-vsem.ru
|
||||||
|
@ -1331,6 +1332,7 @@ domain:gamerextra.com
|
||||||
domain:gamerscorps.com
|
domain:gamerscorps.com
|
||||||
domain:games.kolossale.ru
|
domain:games.kolossale.ru
|
||||||
domain:gamestube.pw
|
domain:gamestube.pw
|
||||||
|
domain:gamevalue7.weebly.com
|
||||||
domain:gamewrath.com
|
domain:gamewrath.com
|
||||||
domain:gaming-journal.com
|
domain:gaming-journal.com
|
||||||
domain:gap-search.com
|
domain:gap-search.com
|
||||||
|
@ -2064,6 +2066,7 @@ domain:metarip.ru
|
||||||
domain:metaxalonevstizanidine.blogspot.com
|
domain:metaxalonevstizanidine.blogspot.com
|
||||||
domain:methodsmarketing.com
|
domain:methodsmarketing.com
|
||||||
domain:mex-annushka.ru
|
domain:mex-annushka.ru
|
||||||
|
domain:mhi-systems.ru
|
||||||
domain:micasainvest.com
|
domain:micasainvest.com
|
||||||
domain:microsearch.ru
|
domain:microsearch.ru
|
||||||
domain:microsoftportal.net
|
domain:microsoftportal.net
|
||||||
|
@ -3303,6 +3306,7 @@ domain:tsan.net
|
||||||
domain:tsstcorpcddvdwshbbdriverfb.aircus.com
|
domain:tsstcorpcddvdwshbbdriverfb.aircus.com
|
||||||
domain:tuberkulezanet.ru
|
domain:tuberkulezanet.ru
|
||||||
domain:tuberkuleznik.ru
|
domain:tuberkuleznik.ru
|
||||||
|
domain:tuckermktg.com
|
||||||
domain:tula.howotorg.ru
|
domain:tula.howotorg.ru
|
||||||
domain:tula.mdverey.ru
|
domain:tula.mdverey.ru
|
||||||
domain:tupper-posuda.ru
|
domain:tupper-posuda.ru
|
||||||
|
@ -3356,6 +3360,7 @@ domain:unitygame3d.com
|
||||||
domain:unmaroll.ya.ru
|
domain:unmaroll.ya.ru
|
||||||
domain:unpredictable.ga
|
domain:unpredictable.ga
|
||||||
domain:uogonline.com
|
domain:uogonline.com
|
||||||
|
domain:upstore.me
|
||||||
domain:uptime-alpha.net
|
domain:uptime-alpha.net
|
||||||
domain:uptime.com
|
domain:uptime.com
|
||||||
domain:uptimebot.net
|
domain:uptimebot.net
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue