mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-02 18:50:13 +00:00
V3.2017.08.832 [ci skip]
This commit is contained in:
parent
f993e2508a
commit
ea4f48e9ee
33 changed files with 137 additions and 34 deletions
|
@ -0,0 +1,53 @@
|
|||
# EDIT THIS FILE AS YOU LIKE TO BLACKLIST OR WHITELIST ANY BAD USER-AGENT STRINGS YOU WANT TO SCAN FOR
|
||||
# ****************************************************************************************************
|
||||
|
||||
##############################################################################
|
||||
# _ __ _ #
|
||||
# / |/ /__ _(_)__ __ __ #
|
||||
# / / _ `/ / _ \\ \ / #
|
||||
# /_/|_/\_, /_/_//_/_\_\ #
|
||||
# __/___/ __ ___ __ ___ __ __ #
|
||||
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
|
||||
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
|
||||
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
|
||||
# #
|
||||
##############################################################################
|
||||
|
||||
# Add One Entry Per Line - List all the extra bad User-Agents you want to permanently block or whitelist.
|
||||
|
||||
# This is for User-Agents that are not included in the main list of the bot blocker
|
||||
# This file must exist on your system or Nginx will fail a reload due to a missing file
|
||||
# This allows you finer control of keeping certain bots blocked and automatic updates will
|
||||
# Never be able to remove this custom list of yours
|
||||
|
||||
# Please note this include file loads first before any of the already whitelisted User-Agents
|
||||
# in the bad bot blocker. By loading first in line it over-rides anything below it so for instance
|
||||
# if you want to block Baidu, Google or Bing for any reason you add them to this file which loads
|
||||
# first and takes precedence over anything below it. This now allows even finer control over the
|
||||
# bad bot blocker. Enjoy !!!
|
||||
|
||||
# Even though this file is called blacklist-user-agents, as mentioned it can also be used to whitelist user agents
|
||||
# By adding them below and setting the 3; to 0; this will permanently whitelist the User-Agent.
|
||||
|
||||
# Make sure any words that contain special characters are escaped and include word boundaries as per the Regex examples below.
|
||||
|
||||
# Example the User-Agent name "someverybaduseragentname1" is entered as "\bsomeverybaduseragentname1\b"
|
||||
# Example the User-Agent name "some-very-bad-useragentname2" is entered as "\bsome\-very\-bad\-useragentname1\b"
|
||||
# the "\b" are word boundaries which prevents partial matching and false positives.
|
||||
|
||||
# *********************
|
||||
# WHITELISTING EXAMPLES
|
||||
# *********************
|
||||
|
||||
"~*\bsomeverygooduseragentname1\b" 0;
|
||||
"~*\bsomeverygooduseragentname2\b" 0;
|
||||
"~*\bsome\-very\-good\-useragentname2\b" 0;
|
||||
|
||||
# *********************
|
||||
# BLACKLISTING EXAMPLES
|
||||
# *********************
|
||||
|
||||
"~*\bsomeverybaduseragentname1\b" 3;
|
||||
"~*\bsomeverybaduseragentname2\b" 3;
|
||||
"~*\bsome\-very\-bad\-useragentname2\b" 3;
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
# EDIT THIS FILE AS YOU LIKE TO WHITELIST YOUR OWN DOMAIN NAMES AND SPARE THEM FROM ANY REFERRER CHECKING ###
|
||||
|
||||
##############################################################################
|
||||
# _ __ _ #
|
||||
# / |/ /__ _(_)__ __ __ #
|
||||
# / / _ `/ / _ \\ \ / #
|
||||
# /_/|_/\_, /_/_//_/_\_\ #
|
||||
# __/___/ __ ___ __ ___ __ __ #
|
||||
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
|
||||
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
|
||||
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
|
||||
# #
|
||||
##############################################################################
|
||||
|
||||
# Add One Entry Per Line - List all your own domains of the sites you host on the server
|
||||
# This file must exist on your system or Nginx will fail a reload due to a missing file
|
||||
# Automatic updates will never be able to remove this custom list of yours
|
||||
# Add One Entry Per Line
|
||||
|
||||
# Make sure any domains have dots and special characters escaped as per the Regex examples below.
|
||||
# For example myfirstowndomainname.com should be entered as myfirstowndomainname\.com
|
||||
# and my-second-owndomainname.com should be entered as my\-second\-owndomainname\.com
|
||||
|
||||
"~*myfirstowndomainname\.com" 0;
|
||||
"~*my\-second\-owndomainname\.com" 0;
|
|
@ -19,4 +19,4 @@
|
|||
# Only add actual IP addresses and ranges here
|
||||
|
||||
111.111.111.111 0;
|
||||
35.192.217.176 0;
|
||||
104.197.93.48 0;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.08.830
|
||||
### Updated: Wed Aug 23 15:11:38 SAST 2017
|
||||
### Version: V3.2017.08.832
|
||||
### Updated: Wed Aug 23 21:46:33 SAST 2017
|
||||
### Bad Referrer Count: 5622
|
||||
### Bad Bot Count: 504
|
||||
###################################################
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
# EDIT THIS FILE AS YOU LIKE TO WHITELIST YOUR OWN DOMAIN NAMES AND SPARE THEM FROM ANY REFERRER CHECKING ###
|
||||
|
||||
##############################################################################
|
||||
# _ __ _ #
|
||||
# / |/ /__ _(_)__ __ __ #
|
||||
# / / _ `/ / _ \\ \ / #
|
||||
# /_/|_/\_, /_/_//_/_\_\ #
|
||||
# __/___/ __ ___ __ ___ __ __ #
|
||||
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
|
||||
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
|
||||
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
|
||||
# #
|
||||
##############################################################################
|
||||
|
||||
# Add One Entry Per Line - List all your own domains of the sites you host on the server
|
||||
# This file must exist on your system or Nginx will fail a reload due to a missing file
|
||||
# Automatic updates will never be able to remove this custom list of yours
|
||||
# Add One Entry Per Line
|
||||
|
||||
# Make sure any domains have dots and special characters escaped as per the Regex examples below.
|
||||
# For example myfirstowndomainname.com should be entered as myfirstowndomainname\.com
|
||||
# and my-second-owndomainname.com should be entered as my\-second\-owndomainname\.com
|
||||
|
||||
"~*myfirstowndomainname\.com" 0;
|
||||
"~*my\-second\-owndomainname\.com" 0;
|
|
@ -19,4 +19,4 @@
|
|||
# Only add actual IP addresses and ranges here
|
||||
|
||||
111.111.111.111 0;
|
||||
35.192.217.176 0;
|
||||
104.197.93.48 0;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.08.830
|
||||
### Updated: Wed Aug 23 15:11:38 SAST 2017
|
||||
### Version: V3.2017.08.832
|
||||
### Updated: Wed Aug 23 21:46:33 SAST 2017
|
||||
### Bad Referrer Count: 5622
|
||||
### Bad Bot Count: 504
|
||||
###################################################
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:13:44 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:37 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:13:44 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:37 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:13:44 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:37 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:13:44 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:37 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:13:44 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:37 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:13:44 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:37 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:13:44 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:37 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:13:44 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:37 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:14:14 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:40 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:14:14 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:40 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:14:14 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:40 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:14:14 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:40 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:14:14 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:40 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:14:14 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:40 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:14:14 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:40 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Wed Aug 23 15:14:14 SAST 2017
|
||||
Last Tested: Wed Aug 23 21:46:40 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.08.830
|
||||
### Updated: Wed Aug 23 15:11:38 SAST 2017
|
||||
### Version: V3.2017.08.832
|
||||
### Updated: Wed Aug 23 21:46:33 SAST 2017
|
||||
### Bad Referrer Count: 5622
|
||||
### Bad Bot Count: 504
|
||||
###################################################
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -4,7 +4,7 @@
|
|||
### PLEASE READ CONFIGURATION INSTRUCTIONS BELOW THOROUGHLY :exclamation:
|
||||
|
||||
_______________
|
||||
#### Version: V3.2017.08.830
|
||||
#### Version: V3.2017.08.832
|
||||
#### Bad Referrer Count: 5622
|
||||
#### Bad Bot Count: 504
|
||||
____________________
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
### PLEASE READ CONFIGURATION INSTRUCTIONS BELOW THOROUGHLY :exclamation:
|
||||
|
||||
_______________
|
||||
#### Version: V3.2017.08.830
|
||||
#### Version: V3.2017.08.832
|
||||
#### Bad Referrer Count: 5622
|
||||
#### Bad Bot Count: 504
|
||||
____________________
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
##### The Ultimate Nginx Bad Bot, User-Agent, Spam Referrer Blocker, Adware, Malware and Ransomware Blocker, Clickjacking Blocker, Click Re-Directing Blocker, SEO Companies and Bad IP Blocker with Anti DDOS System, Nginx Rate Limiting and Wordpress Theme Detector Blocking
|
||||
|
||||
_______________
|
||||
#### Version: V3.2017.08.830
|
||||
#### Version: V3.2017.08.832
|
||||
#### Bad Referrer Count: 5622
|
||||
#### Bad Bot Count: 504
|
||||
____________________
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# EASY CONFIGURATION INSTRUCTIONS FOR STOPPING GOOGLE ANALYTICS "GHOST" SPAM
|
||||
|
||||
_______________
|
||||
#### Version: V3.2017.08.830
|
||||
#### Version: V3.2017.08.832
|
||||
#### Bad Referrer Count: 5622
|
||||
#### Bad Bot Count: 504
|
||||
____________________
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.08.830
|
||||
### Updated: Wed Aug 23 15:11:38 SAST 2017
|
||||
### Version: V3.2017.08.832
|
||||
### Updated: Wed Aug 23 21:46:33 SAST 2017
|
||||
### Bad Referrer Count: 5622
|
||||
### Bad Bot Count: 504
|
||||
###################################################
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.08.830
|
||||
### Updated: Wed Aug 23 15:11:38 SAST 2017
|
||||
### Version: V3.2017.08.832
|
||||
### Updated: Wed Aug 23 21:46:33 SAST 2017
|
||||
### Bad Referrer Count: 5622
|
||||
### Bad Bot Count: 504
|
||||
###################################################
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
### Version Information #
|
||||
###################################################
|
||||
### Version: V3.2017.08.830
|
||||
### Updated: Wed Aug 23 15:11:38 SAST 2017
|
||||
### Version: V3.2017.08.832
|
||||
### Updated: Wed Aug 23 21:46:33 SAST 2017
|
||||
### Bad Bot Count: 504
|
||||
###################################################
|
||||
### Version Information ##
|
||||
|
|
Loading…
Add table
Reference in a new issue