mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-01 18:19:55 +00:00
V4.2019.06.1630 [ci skip]
This commit is contained in:
parent
803b09c4b2
commit
2fdb8675f2
30 changed files with 1692 additions and 1608 deletions
|
@ -7,7 +7,6 @@
|
|||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
||||
##############################################################################
|
||||
# _ __ _ #
|
||||
# / |/ /__ _(_)__ __ __ #
|
||||
|
@ -31,31 +30,53 @@
|
|||
|
||||
#######################################################################
|
||||
|
||||
# BOTS
|
||||
# ****
|
||||
# -----------------------------------
|
||||
# OVER-RIDE BLOCKER / SUPER WHITELIST
|
||||
# -----------------------------------
|
||||
# In this block you can allow any IP address specified here to over-ride any bad bot or IP blocking of the blocker.
|
||||
# This is useful for testing or allowing only specific IP's (ie. Internal ranges) to never be blocked.
|
||||
# More IP's can be added example > "(127.0.0.1)|(192.168.0.1)|(192.168.1.1)"
|
||||
# If you even blacklisted 127.0.0.1 or your own IP by giving it a value of 1 in any of the includes, this will over-ride that block.
|
||||
|
||||
if ($remote_addr ~ "(127.0.0.1)|(192.168.0.1)" ) {
|
||||
#set $bad_bot '0'; #Uncommenting this line will disable bad_bots functionality for specified IP(s)
|
||||
#set $validate_client '0'; #Uncommenting this line will disable validate_client ip blocking functionality for specified IP(s)
|
||||
}
|
||||
|
||||
# --------------
|
||||
# BLOCK BAD BOTS
|
||||
# --------------
|
||||
|
||||
# Section bot_1 Unused
|
||||
#limit_conn bot1_connlimit 100;
|
||||
limit_conn bot2_connlimit 10;
|
||||
#limit_req zone=bot1_reqlimitip burst=50;
|
||||
|
||||
limit_conn bot2_connlimit 10;
|
||||
limit_req zone=bot2_reqlimitip burst=10;
|
||||
if ($bad_bot = '3') {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# BAD REFER WORDS
|
||||
# ***************
|
||||
# ---------------------
|
||||
# BLOCK BAD REFER WORDS
|
||||
# ---------------------
|
||||
|
||||
if ($bad_words) {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# ------------------
|
||||
# BLOCK BAD REFERERS
|
||||
# ------------------
|
||||
|
||||
# REFERERS
|
||||
# ********
|
||||
if ($bad_referer) {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# IP BLOCKS
|
||||
# *********
|
||||
# -----------------------------
|
||||
# BLOCK IP ADDRESSES and RANGES
|
||||
# -----------------------------
|
||||
|
||||
if ($validate_client) {
|
||||
return 444;
|
||||
}
|
||||
|
|
|
@ -33,4 +33,4 @@
|
|||
# 111.111.111.111 0;
|
||||
|
||||
|
||||
35.193.7.13 0;
|
||||
104.198.131.58 0;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V4.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:13 SAST 2019
|
||||
### Version: V4.2019.06.1630
|
||||
### Updated: Wed Jun 26 15:38:14 SAST 2019
|
||||
### Bad Referrer Count: 6713
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
||||
##############################################################################
|
||||
# _ __ _ #
|
||||
# / |/ /__ _(_)__ __ __ #
|
||||
|
@ -31,31 +30,53 @@
|
|||
|
||||
#######################################################################
|
||||
|
||||
# BOTS
|
||||
# ****
|
||||
# -----------------------------------
|
||||
# OVER-RIDE BLOCKER / SUPER WHITELIST
|
||||
# -----------------------------------
|
||||
# In this block you can allow any IP address specified here to over-ride any bad bot or IP blocking of the blocker.
|
||||
# This is useful for testing or allowing only specific IP's (ie. Internal ranges) to never be blocked.
|
||||
# More IP's can be added example > "(127.0.0.1)|(192.168.0.1)|(192.168.1.1)"
|
||||
# If you even blacklisted 127.0.0.1 or your own IP by giving it a value of 1 in any of the includes, this will over-ride that block.
|
||||
|
||||
if ($remote_addr ~ "(127.0.0.1)|(192.168.0.1)" ) {
|
||||
#set $bad_bot '0'; #Uncommenting this line will disable bad_bots functionality for specified IP(s)
|
||||
#set $validate_client '0'; #Uncommenting this line will disable validate_client ip blocking functionality for specified IP(s)
|
||||
}
|
||||
|
||||
# --------------
|
||||
# BLOCK BAD BOTS
|
||||
# --------------
|
||||
|
||||
# Section bot_1 Unused
|
||||
#limit_conn bot1_connlimit 100;
|
||||
limit_conn bot2_connlimit 10;
|
||||
#limit_req zone=bot1_reqlimitip burst=50;
|
||||
|
||||
limit_conn bot2_connlimit 10;
|
||||
limit_req zone=bot2_reqlimitip burst=10;
|
||||
if ($bad_bot = '3') {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# BAD REFER WORDS
|
||||
# ***************
|
||||
# ---------------------
|
||||
# BLOCK BAD REFER WORDS
|
||||
# ---------------------
|
||||
|
||||
if ($bad_words) {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# ------------------
|
||||
# BLOCK BAD REFERERS
|
||||
# ------------------
|
||||
|
||||
# REFERERS
|
||||
# ********
|
||||
if ($bad_referer) {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# IP BLOCKS
|
||||
# *********
|
||||
# -----------------------------
|
||||
# BLOCK IP ADDRESSES and RANGES
|
||||
# -----------------------------
|
||||
|
||||
if ($validate_client) {
|
||||
return 444;
|
||||
}
|
||||
|
|
|
@ -33,4 +33,4 @@
|
|||
# 111.111.111.111 0;
|
||||
|
||||
|
||||
35.193.7.13 0;
|
||||
104.198.131.58 0;
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:14 SAST 2019
|
||||
### Version: V3.2019.06.1630
|
||||
### Updated: Wed Jun 26 15:38:15 SAST 2019
|
||||
### Bad Referrer Count: 6713
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
|
|
|
@ -31,39 +31,53 @@
|
|||
|
||||
#######################################################################
|
||||
|
||||
# ENABLE WHITELISTING TO WORK
|
||||
# This should over rule any other rule
|
||||
if ($remote_addr ~ "(127.0.0.1)" ) {
|
||||
#set $bad_bot '0';
|
||||
set $validate_client '0';
|
||||
# -----------------------------------
|
||||
# OVER-RIDE BLOCKER / SUPER WHITELIST
|
||||
# -----------------------------------
|
||||
# In this block you can allow any IP address specified here to over-ride any bad bot or IP blocking of the blocker.
|
||||
# This is useful for testing or allowing only specific IP's (ie. Internal ranges) to never be blocked.
|
||||
# More IP's can be added example > "(127.0.0.1)|(192.168.0.1)|(192.168.1.1)"
|
||||
# If you even blacklisted 127.0.0.1 or your own IP by giving it a value of 1 in any of the includes, this will over-ride that block.
|
||||
|
||||
if ($remote_addr ~ "(127.0.0.1)|(192.168.0.1)" ) {
|
||||
#set $bad_bot '0'; #Uncommenting this line will disable bad_bots functionality for specified IP(s)
|
||||
set $validate_client '0'; #Uncommenting this line will disable validate_client ip blocking functionality for specified IP(s)
|
||||
}
|
||||
|
||||
# --------------
|
||||
# BLOCK BAD BOTS
|
||||
# --------------
|
||||
|
||||
# BOTS
|
||||
# ****
|
||||
# Section bot_1 Unused
|
||||
#limit_conn bot1_connlimit 100;
|
||||
limit_conn bot2_connlimit 10;
|
||||
#limit_req zone=bot1_reqlimitip burst=50;
|
||||
|
||||
limit_conn bot2_connlimit 10;
|
||||
limit_req zone=bot2_reqlimitip burst=10;
|
||||
if ($bad_bot = '3') {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# BAD REFER WORDS
|
||||
# ***************
|
||||
# ---------------------
|
||||
# BLOCK BAD REFER WORDS
|
||||
# ---------------------
|
||||
|
||||
if ($bad_words) {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# ------------------
|
||||
# BLOCK BAD REFERERS
|
||||
# ------------------
|
||||
|
||||
# REFERERS
|
||||
# ********
|
||||
if ($bad_referer) {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# IP BLOCKS
|
||||
# *********
|
||||
# -----------------------------
|
||||
# BLOCK IP ADDRESSES and RANGES
|
||||
# -----------------------------
|
||||
|
||||
if ($validate_client) {
|
||||
return 444;
|
||||
}
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V4.2019.06.1628
|
||||
### Updated: Wed Jun 26 14:46:12 SAST 2019
|
||||
### Version: V4.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:13 SAST 2019
|
||||
### Bad Referrer Count: 6713
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
|
|
|
@ -31,39 +31,53 @@
|
|||
|
||||
#######################################################################
|
||||
|
||||
# ENABLE WHITELISTING TO WORK
|
||||
# This should over rule any other rule
|
||||
if ($remote_addr ~ "(127.0.0.1)" ) {
|
||||
#set $bad_bot '0';
|
||||
set $validate_client '0';
|
||||
# -----------------------------------
|
||||
# OVER-RIDE BLOCKER / SUPER WHITELIST
|
||||
# -----------------------------------
|
||||
# In this block you can allow any IP address specified here to over-ride any bad bot or IP blocking of the blocker.
|
||||
# This is useful for testing or allowing only specific IP's (ie. Internal ranges) to never be blocked.
|
||||
# More IP's can be added example > "(127.0.0.1)|(192.168.0.1)|(192.168.1.1)"
|
||||
# If you even blacklisted 127.0.0.1 or your own IP by giving it a value of 1 in any of the includes, this will over-ride that block.
|
||||
|
||||
if ($remote_addr ~ "(127.0.0.1)|(192.168.0.1)" ) {
|
||||
#set $bad_bot '0'; #Uncommenting this line will disable bad_bots functionality for specified IP(s)
|
||||
set $validate_client '0'; #Uncommenting this line will disable validate_client ip blocking functionality for specified IP(s)
|
||||
}
|
||||
|
||||
# --------------
|
||||
# BLOCK BAD BOTS
|
||||
# --------------
|
||||
|
||||
# BOTS
|
||||
# ****
|
||||
# Section bot_1 Unused
|
||||
#limit_conn bot1_connlimit 100;
|
||||
limit_conn bot2_connlimit 10;
|
||||
#limit_req zone=bot1_reqlimitip burst=50;
|
||||
|
||||
limit_conn bot2_connlimit 10;
|
||||
limit_req zone=bot2_reqlimitip burst=10;
|
||||
if ($bad_bot = '3') {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# BAD REFER WORDS
|
||||
# ***************
|
||||
# ---------------------
|
||||
# BLOCK BAD REFER WORDS
|
||||
# ---------------------
|
||||
|
||||
if ($bad_words) {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# ------------------
|
||||
# BLOCK BAD REFERERS
|
||||
# ------------------
|
||||
|
||||
# REFERERS
|
||||
# ********
|
||||
if ($bad_referer) {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# IP BLOCKS
|
||||
# *********
|
||||
# -----------------------------
|
||||
# BLOCK IP ADDRESSES and RANGES
|
||||
# -----------------------------
|
||||
|
||||
if ($validate_client) {
|
||||
return 444;
|
||||
}
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V4.2019.06.1628
|
||||
### Updated: Wed Jun 26 14:46:12 SAST 2019
|
||||
### Version: V4.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:13 SAST 2019
|
||||
### Bad Referrer Count: 6713
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
|
|
|
@ -31,39 +31,53 @@
|
|||
|
||||
#######################################################################
|
||||
|
||||
# ENABLE WHITELISTING TO WORK
|
||||
# This should over rule any other rule
|
||||
if ($remote_addr ~ "(127.0.0.1)" ) {
|
||||
#set $bad_bot '0';
|
||||
set $validate_client '0';
|
||||
# -----------------------------------
|
||||
# OVER-RIDE BLOCKER / SUPER WHITELIST
|
||||
# -----------------------------------
|
||||
# In this block you can allow any IP address specified here to over-ride any bad bot or IP blocking of the blocker.
|
||||
# This is useful for testing or allowing only specific IP's (ie. Internal ranges) to never be blocked.
|
||||
# More IP's can be added example > "(127.0.0.1)|(192.168.0.1)|(192.168.1.1)"
|
||||
# If you even blacklisted 127.0.0.1 or your own IP by giving it a value of 1 in any of the includes, this will over-ride that block.
|
||||
|
||||
if ($remote_addr ~ "(127.0.0.1)|(192.168.0.1)" ) {
|
||||
#set $bad_bot '0'; #Uncommenting this line will disable bad_bots functionality for specified IP(s)
|
||||
set $validate_client '0'; #Uncommenting this line will disable validate_client ip blocking functionality for specified IP(s)
|
||||
}
|
||||
|
||||
# --------------
|
||||
# BLOCK BAD BOTS
|
||||
# --------------
|
||||
|
||||
# BOTS
|
||||
# ****
|
||||
# Section bot_1 Unused
|
||||
#limit_conn bot1_connlimit 100;
|
||||
limit_conn bot2_connlimit 10;
|
||||
#limit_req zone=bot1_reqlimitip burst=50;
|
||||
|
||||
limit_conn bot2_connlimit 10;
|
||||
limit_req zone=bot2_reqlimitip burst=10;
|
||||
if ($bad_bot = '3') {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# BAD REFER WORDS
|
||||
# ***************
|
||||
# ---------------------
|
||||
# BLOCK BAD REFER WORDS
|
||||
# ---------------------
|
||||
|
||||
if ($bad_words) {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# ------------------
|
||||
# BLOCK BAD REFERERS
|
||||
# ------------------
|
||||
|
||||
# REFERERS
|
||||
# ********
|
||||
if ($bad_referer) {
|
||||
return 444;
|
||||
}
|
||||
|
||||
# IP BLOCKS
|
||||
# *********
|
||||
# -----------------------------
|
||||
# BLOCK IP ADDRESSES and RANGES
|
||||
# -----------------------------
|
||||
|
||||
if ($validate_client) {
|
||||
return 444;
|
||||
}
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V4.2019.06.1628
|
||||
### Updated: Wed Jun 26 14:46:12 SAST 2019
|
||||
### Version: V4.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:13 SAST 2019
|
||||
### Bad Referrer Count: 6713
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:14 SAST 2019
|
||||
### Version: V3.2019.06.1630
|
||||
### Updated: Wed Jun 26 15:38:15 SAST 2019
|
||||
### Bad Referrer Count: 6713
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V4.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:13 SAST 2019
|
||||
### Version: V4.2019.06.1630
|
||||
### Updated: Wed Jun 26 15:38:14 SAST 2019
|
||||
### Bad Referrer Count: 6713
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
|
|
|
@ -1,50 +1,50 @@
|
|||
Aipbot
|
||||
AlphaBot
|
||||
BatchFTP
|
||||
Aboundexbot
|
||||
AhrefsBot
|
||||
Alligator
|
||||
BackDoorBot
|
||||
BBBike
|
||||
Black Hole
|
||||
Bullseye
|
||||
Copyscape
|
||||
DataCha0s
|
||||
Demon
|
||||
DnyzBot
|
||||
Dragonfly
|
||||
Ebingbong
|
||||
Getintent
|
||||
Gigablast
|
||||
G-i-g-a-b-o-t
|
||||
GT::WWW
|
||||
HybridBot
|
||||
InfoNaviRobot
|
||||
LinkextractorPro
|
||||
CheeseBot
|
||||
Collector
|
||||
CSHttp
|
||||
DBLBot
|
||||
DomainStatsBot
|
||||
Drip
|
||||
ExtractorPro
|
||||
FrontPage
|
||||
GetWeb
|
||||
Iblog
|
||||
IndeedBot
|
||||
Iria
|
||||
JOC Web Spider
|
||||
Larbin
|
||||
LinkWalker
|
||||
lwp-request
|
||||
MarkMonitor
|
||||
meanpathbot
|
||||
MJ12bot
|
||||
MS Web Services Client Protocol
|
||||
Navroad
|
||||
NearSite
|
||||
Majestic12
|
||||
Metauri
|
||||
MFC_Tear_Sample
|
||||
Name Intelligence
|
||||
NetSpider
|
||||
Netvibes
|
||||
NICErsPRO
|
||||
oBot
|
||||
Openvas
|
||||
Probethenet
|
||||
RankingBot2
|
||||
Scrapy
|
||||
Semrush
|
||||
sexsearcher
|
||||
SiteExplorer
|
||||
SocialRankIOBot
|
||||
sp_auditbot
|
||||
TeleportPro
|
||||
Telesphorep
|
||||
The Intraformant
|
||||
Thumbor
|
||||
True_Robot
|
||||
Vagabondo
|
||||
VeriCiteCrawler
|
||||
VidibleScraper
|
||||
Nikto
|
||||
Pavuk
|
||||
PeoplePal
|
||||
ProPowerBot
|
||||
Rankivabot
|
||||
SEOkicks-Robot
|
||||
SeoSiteCheckup
|
||||
SEOstats
|
||||
Siphon
|
||||
SISTRIX
|
||||
Snapbot
|
||||
Szukacz
|
||||
T8Abot
|
||||
Titan
|
||||
trendiction.com
|
||||
WBSearchBot
|
||||
WebLeacher
|
||||
Webshag
|
||||
WiseGuys Robot
|
||||
x22Mozilla
|
||||
Zeus
|
||||
Webalta
|
||||
Web Sauger
|
||||
WinHTTrack
|
||||
Wonderbot
|
||||
ZumBot
|
||||
|
|
|
@ -1,250 +1,250 @@
|
|||
360Spider
|
||||
404enemy
|
||||
80legs
|
||||
Abonti
|
||||
Acunetix
|
||||
ADmantX
|
||||
AhrefsBot
|
||||
Aboundex
|
||||
Aboundexbot
|
||||
AfD-Verbotsverfahren
|
||||
AiHitBot
|
||||
Alligator
|
||||
AllSubmitter
|
||||
AlphaBot
|
||||
Anarchie
|
||||
ASPSeek
|
||||
Asterias
|
||||
Attach
|
||||
autoemailspider
|
||||
BackDoorBot
|
||||
backlink-check
|
||||
BacklinkCrawler
|
||||
BackWeb
|
||||
Bandit
|
||||
BatchFTP
|
||||
BDCbot
|
||||
BDFetch
|
||||
Blackboard
|
||||
Backlink-Ceck
|
||||
BackStreet
|
||||
Badass
|
||||
Barkrowler
|
||||
BBBike
|
||||
BetaBot
|
||||
Bitacle
|
||||
Black Hole
|
||||
BlackWidow
|
||||
BLEXBot
|
||||
Blow
|
||||
BotALot
|
||||
BuiltWith
|
||||
Bullseye
|
||||
BunnySlippers
|
||||
BuzzSumo
|
||||
CherryPicker
|
||||
Cloud mapping
|
||||
CATExplorador
|
||||
CCBot
|
||||
ChinaClaw
|
||||
Chlooe
|
||||
coccocbot-web
|
||||
Cogentbot
|
||||
Collector
|
||||
com.plumanalytics
|
||||
Copier
|
||||
CopyRightCheck
|
||||
Cosmos
|
||||
crawler4j
|
||||
crawler.feedback
|
||||
crawl.sogou.com
|
||||
Crescent
|
||||
CSHttp
|
||||
Curious
|
||||
Custo
|
||||
DataCha0s
|
||||
DBLBot
|
||||
Demon
|
||||
Deusu
|
||||
Dispatch
|
||||
Devil
|
||||
Digincore
|
||||
Dirbuster
|
||||
Disco
|
||||
Discobot
|
||||
DittoSpyder
|
||||
DomainAppender
|
||||
DomainSigmaCrawler
|
||||
DomainCrawler
|
||||
DomainStatsBot
|
||||
Dotbot
|
||||
Drip
|
||||
DSearch
|
||||
DTS Agent
|
||||
Download Wonder
|
||||
EasyDL
|
||||
Ebingbong
|
||||
eCatch
|
||||
ECCP/1.0
|
||||
Ecxi
|
||||
EirGrabber
|
||||
EMail Siphon
|
||||
EMail Wolf
|
||||
evc-batch
|
||||
Evil
|
||||
Extractor
|
||||
Extreme Picture Finder
|
||||
FemtosearchBot
|
||||
Ezooms
|
||||
facebookscraper
|
||||
FHscan
|
||||
Fimap
|
||||
Foobot
|
||||
Firefox/7.0
|
||||
Flunky
|
||||
Freeuploader
|
||||
FrontPage
|
||||
Fyrebot
|
||||
GermCrawler
|
||||
Getintent
|
||||
GetRight
|
||||
Gigablast
|
||||
GetWeb
|
||||
Gigabot
|
||||
Gotit
|
||||
Grabber
|
||||
GrabNet
|
||||
Grafula
|
||||
GridBot
|
||||
GT::WWW
|
||||
Haansoft
|
||||
HaosouSpider
|
||||
Harvest
|
||||
Havij
|
||||
Heritrix
|
||||
HEADMasterSEO
|
||||
Hloader
|
||||
HMView
|
||||
HTTP::Lite
|
||||
HTTrack
|
||||
Iblog
|
||||
HTMLparser
|
||||
Humanlinks
|
||||
HybridBot
|
||||
Id-search
|
||||
Image Fetch
|
||||
Image Sucker
|
||||
Indy Library
|
||||
Intelliseek
|
||||
InterGET
|
||||
Internet Ninja
|
||||
InternetSeer
|
||||
ips-agent
|
||||
IRLbot
|
||||
internetVista monitor
|
||||
Iskanie
|
||||
IstellaBot
|
||||
JamesBOT
|
||||
JetCar
|
||||
Jetty
|
||||
JikeSpider
|
||||
JOC Web Spider
|
||||
Jorgee
|
||||
JustView
|
||||
Kozmosbot
|
||||
Lanshanbot
|
||||
Larbin
|
||||
LeechFTP
|
||||
LeechGet
|
||||
LexiBot
|
||||
Lftp
|
||||
LibWeb
|
||||
Libwhisker
|
||||
Likse
|
||||
Linkdexbot
|
||||
LinkextractorPro
|
||||
LinkScan
|
||||
LinksManager
|
||||
LinqiaMetadataDownloaderBot
|
||||
LinqiaScrapeBot
|
||||
Lmspider
|
||||
lwp-request
|
||||
Lipperhey
|
||||
Litemage_walker
|
||||
Ltx71
|
||||
LWP::Simple
|
||||
lwp-trivial
|
||||
Magnet
|
||||
magpie-crawler
|
||||
Mail.RU_Bot
|
||||
Majestic12
|
||||
Majestic SEO
|
||||
Majestic-SEO
|
||||
Mata Hari
|
||||
MauiBot
|
||||
mediawords
|
||||
MegaIndex.ru
|
||||
Metauri
|
||||
Meanpathbot
|
||||
MFC_Tear_Sample
|
||||
MIIxpc
|
||||
Mister PiX
|
||||
MJ12bot
|
||||
Name Intelligence
|
||||
Microsoft Data Access
|
||||
MIDown tool
|
||||
Morfeus Fucking Scanner
|
||||
Msrabot
|
||||
MS Web Services Client Protocol
|
||||
Nameprotect
|
||||
Navroad
|
||||
Needle
|
||||
Nessus
|
||||
NetAnts
|
||||
Netcraft
|
||||
NetLyzer
|
||||
NetMechanic
|
||||
NetSpider
|
||||
Net Vampire
|
||||
Netvibes
|
||||
NetZIP
|
||||
Nikto
|
||||
NextGenSearchBot
|
||||
Nibbler
|
||||
NimbleCrawler
|
||||
Nimbostratus
|
||||
Ninja
|
||||
Nmap
|
||||
oBot
|
||||
Offline Explorer
|
||||
Offline Navigator
|
||||
OnCrawl
|
||||
OpenLinkProfiler
|
||||
PageAnalyzer
|
||||
Openvas
|
||||
OutclicksBot
|
||||
Page Analyzer
|
||||
Pandalytics
|
||||
Panscient
|
||||
PECL::HTTP
|
||||
Picscout
|
||||
Pi-Monster
|
||||
Pixray
|
||||
PleaseCrawl
|
||||
plumanalytics
|
||||
Probethenet
|
||||
page scorer
|
||||
PageScorer
|
||||
Papa Foto
|
||||
pcBrowser
|
||||
PHPCrawl
|
||||
PictureFinder
|
||||
Pimonster
|
||||
Pockey
|
||||
POE-Component-Client-HTTP
|
||||
ProPowerBot
|
||||
ProWebWalker
|
||||
Psbot
|
||||
Pump
|
||||
PxBroker
|
||||
QueryN Metasearch
|
||||
Quick-Crawler
|
||||
RankingBot
|
||||
RankActive
|
||||
RankingBot2
|
||||
RealDownload
|
||||
RebelMouse
|
||||
Recorder
|
||||
RedesScrapy
|
||||
ReGet
|
||||
Ripper
|
||||
s1z.ru
|
||||
SalesIntelligent
|
||||
Scanbot
|
||||
RocketCrawler
|
||||
SBIder
|
||||
scan.lol
|
||||
Scrapy
|
||||
Screaming
|
||||
Searchestate
|
||||
SearchmetricsBot
|
||||
Semrush
|
||||
SemrushBot
|
||||
SEOkicks
|
||||
SEOkicks-Robot
|
||||
SEOlyticsCrawler
|
||||
Seomoz
|
||||
SEOprofiler
|
||||
seoscanners
|
||||
SEOstats
|
||||
sexsearcher
|
||||
SISTRIX
|
||||
Sitebeam
|
||||
SiteExplorer
|
||||
Siteimprove
|
||||
SiteSucker
|
||||
Site Sucker
|
||||
SlySearch
|
||||
SmartDownload
|
||||
Snake
|
||||
Snapbot
|
||||
Snoopy
|
||||
SocialRankIOBot
|
||||
Sociscraper
|
||||
sogouspider
|
||||
Sogou web spider
|
||||
Sottopop
|
||||
SpankBot
|
||||
sp_auditbot
|
||||
Sqlworm
|
||||
Spammen
|
||||
spyfu
|
||||
Sqworm
|
||||
Sucuri
|
||||
Suzuran
|
||||
Szukacz
|
||||
T0PHackTeam
|
||||
Thumbor
|
||||
Titan
|
||||
Toweyabot
|
||||
Trendiction
|
||||
Sucker
|
||||
SuperBot
|
||||
Surfbot
|
||||
Swiftbot
|
||||
Teleport
|
||||
TeleportPro
|
||||
The Intraformant
|
||||
Toata
|
||||
Tracemyfile
|
||||
Trendictionbot
|
||||
trendiction.com
|
||||
trendiction.de
|
||||
True_Robot
|
||||
Turingos
|
||||
TwengaBot
|
||||
Twice
|
||||
UnisterBot
|
||||
Upflow
|
||||
URLy Warning
|
||||
Vacuum
|
||||
URLy.Warning
|
||||
Vagabondo
|
||||
VB Project
|
||||
Virusdie
|
||||
VeriCiteCrawler
|
||||
VoidEYE
|
||||
Voil
|
||||
Voltron
|
||||
WASALive-Bot
|
||||
Webalta
|
||||
WebAuto
|
||||
WBSearchBot
|
||||
Web Auto
|
||||
WebBandit
|
||||
WebCollage
|
||||
WebCopier
|
||||
WebEnhancer
|
||||
Web Enhancer
|
||||
WebFetch
|
||||
WebFuck
|
||||
Web Fetch
|
||||
WebGo IS
|
||||
WebmasterWorldForumBot
|
||||
webmeup-crawler
|
||||
WebPix
|
||||
Webshag
|
||||
WebImageCollector
|
||||
WebSauger
|
||||
WebsiteExtractor
|
||||
Webster
|
||||
Website Quester
|
||||
WebStripper
|
||||
Web Sucker
|
||||
WebZIP
|
||||
WeSEE
|
||||
Whacker
|
||||
WinHTTrack
|
||||
Woobot
|
||||
Whatweb
|
||||
Who.is Bot
|
||||
WiseGuys Robot
|
||||
Wonderbot
|
||||
Wotbox
|
||||
Wprecon
|
||||
WWW-Collector-E
|
||||
WWW-Mechanize
|
||||
x09Mozilla
|
||||
x22Mozilla
|
||||
Xaldon WebSpider
|
||||
Xaldon_WebSpider
|
||||
Zauba
|
||||
zauba.io
|
||||
Zeus
|
||||
zgrab
|
||||
WWWOFFLE
|
||||
ZmEu
|
||||
ZyBorg
|
||||
|
|
|
@ -1,64 +1,73 @@
|
|||
404enemy
|
||||
404checker
|
||||
80legs
|
||||
Abonti
|
||||
Acunetix
|
||||
ADmantX
|
||||
AhrefsBot
|
||||
AiHitBot
|
||||
AllSubmitter
|
||||
Aipbot
|
||||
AlphaBot
|
||||
Anarchie
|
||||
Apexoo
|
||||
Asterias
|
||||
BackDoorBot
|
||||
Backlink-Ceck
|
||||
archive.org_bot
|
||||
ASPSeek
|
||||
autoemailspider
|
||||
backlink-check
|
||||
BacklinkCrawler
|
||||
BackStreet
|
||||
BackWeb
|
||||
BatchFTP
|
||||
Badass
|
||||
Barkrowler
|
||||
Battleztar Bazinga
|
||||
BBBike
|
||||
BDCbot
|
||||
BDFetch
|
||||
BetaBot
|
||||
Bigfoot
|
||||
Bitacle
|
||||
Blackboard
|
||||
Black Hole
|
||||
BlackWidow
|
||||
Blow
|
||||
BuiltWith
|
||||
BunnySlippers
|
||||
Calculon
|
||||
CherryPicker
|
||||
BLEXBot
|
||||
Boardreader
|
||||
Bolt
|
||||
Brandwatch
|
||||
Buddy
|
||||
CCBot
|
||||
Cegbfeieh
|
||||
CheeseBot
|
||||
CheTeam
|
||||
ChinaClaw
|
||||
Chlooe
|
||||
Claritybot
|
||||
Cloud mapping
|
||||
Cogentbot
|
||||
cognitiveseo
|
||||
Cosmos
|
||||
CrazyWebCrawler
|
||||
Crescent
|
||||
DatabaseDriverMysqli
|
||||
coccocbot-web
|
||||
Collector
|
||||
CSHttp
|
||||
DataCha0s
|
||||
Deusu
|
||||
Digincore
|
||||
DigitalPebble
|
||||
demandbase-bot
|
||||
DIIbot
|
||||
Dirbuster
|
||||
Disco
|
||||
Discobot
|
||||
Discoverybot
|
||||
Dispatch
|
||||
DittoSpyder
|
||||
DomainAppender
|
||||
DomainSigmaCrawler
|
||||
DnyzBot
|
||||
DomainCrawler
|
||||
DomainStatsBot
|
||||
Dotbot
|
||||
Download Wonder
|
||||
Dragonfly
|
||||
Drip
|
||||
DSearch
|
||||
EasyDL
|
||||
Ebingbong
|
||||
ECCP/1.0
|
||||
Ecxi
|
||||
Evil
|
||||
EMail Siphon
|
||||
EMail Wolf
|
||||
evc-batch
|
||||
Exabot
|
||||
Express WebPictures
|
||||
ExtLinksBot
|
||||
Extractor
|
||||
ExtractorPro
|
||||
EyeNetIE
|
||||
FDM
|
||||
Ezooms
|
||||
facebookscraper
|
||||
FemtosearchBot
|
||||
FHscan
|
||||
FlashGet
|
||||
Flunky
|
||||
Foobot
|
||||
|
@ -66,185 +75,176 @@ FyberSpider
|
|||
Fyrebot
|
||||
GalaxyBot
|
||||
GermCrawler
|
||||
Getintent
|
||||
GetRight
|
||||
GetWeb
|
||||
Gigablast
|
||||
Gotit
|
||||
GoZilla
|
||||
Go!Zilla
|
||||
Grafula
|
||||
GrapeFX
|
||||
GridBot
|
||||
HaosouSpider
|
||||
Harvest
|
||||
Hloader
|
||||
HMView
|
||||
HTMLparser
|
||||
HTTP::Lite
|
||||
HTTrack
|
||||
Humanlinks
|
||||
Image Fetch
|
||||
HybridBot
|
||||
Id-search
|
||||
IlseBot
|
||||
Image Sucker
|
||||
Indy Library
|
||||
instabid
|
||||
InterGET
|
||||
Internet Ninja
|
||||
InfoNaviRobot
|
||||
ips-agent
|
||||
Iria
|
||||
IRLbot
|
||||
JamesBOT
|
||||
Iskanie
|
||||
Jbrofuzz
|
||||
JennyBot
|
||||
JikeSpider
|
||||
JustView
|
||||
JetCar
|
||||
Joomla
|
||||
Jorgee
|
||||
Jyxobot
|
||||
Kenjin Spider
|
||||
Keyword Density
|
||||
Lanshanbot
|
||||
LeechFTP
|
||||
LeechGet
|
||||
LibWeb
|
||||
Libwhisker
|
||||
Likse
|
||||
Linkdexbot
|
||||
LinkextractorPro
|
||||
LinksManager
|
||||
LinqiaMetadataDownloaderBot
|
||||
LinqiaRSSBot
|
||||
LinqiaScrapeBot
|
||||
Litemage_walker
|
||||
Lipperhey
|
||||
Lmspider
|
||||
LNSpiderguy
|
||||
Ltx71
|
||||
lwp-request
|
||||
LWP::Simple
|
||||
Mag-Net
|
||||
lwp-trivial
|
||||
magpie-crawler
|
||||
Majestic-SEO
|
||||
MarkMonitor
|
||||
MarkWatch
|
||||
Majestic12
|
||||
Majestic SEO
|
||||
Masscan
|
||||
meanpathbot
|
||||
MFC_Tear_Sample
|
||||
MauiBot
|
||||
Microsoft Data Access
|
||||
Microsoft URL Control
|
||||
Mojeek
|
||||
Morfeus Fucking Scanner
|
||||
MIIxpc
|
||||
Mister PiX
|
||||
Mr.4x3
|
||||
MSIECrawler
|
||||
MSFrontPage
|
||||
Msrabot
|
||||
muhstik-scan
|
||||
Musobot
|
||||
Nameprotect
|
||||
Navroad
|
||||
NearSite
|
||||
Nessus
|
||||
NetAnts
|
||||
netEstate NE Crawler
|
||||
NetLyzer
|
||||
NetSpider
|
||||
Net Vampire
|
||||
Nettrack
|
||||
Netvibes
|
||||
NetZIP
|
||||
Nibbler
|
||||
NICErsPRO
|
||||
Niki-bot
|
||||
NPbot
|
||||
NimbleCrawler
|
||||
Octopus
|
||||
Offline Navigator
|
||||
OpenLinkProfiler
|
||||
OrangeSpider
|
||||
OutclicksBot
|
||||
OutfoxBot
|
||||
PageAnalyzer
|
||||
Page Analyzer
|
||||
Panscient
|
||||
PageGrabber
|
||||
page scorer
|
||||
PageScorer
|
||||
Pandalytics
|
||||
Papa Foto
|
||||
Pavuk
|
||||
PeoplePal
|
||||
Pimonster
|
||||
Picsearch
|
||||
PictureFinder
|
||||
Pi-Monster
|
||||
Pixray
|
||||
plumanalytics
|
||||
Probethenet
|
||||
ProWebWalker
|
||||
Pump
|
||||
PxBroker
|
||||
RankActiveLinkBot
|
||||
ProPowerBot
|
||||
Psbot
|
||||
PyCurl
|
||||
Quick-Crawler
|
||||
RankingBot
|
||||
Ripper
|
||||
RankurBot
|
||||
RealDownload
|
||||
Reaper
|
||||
RepoMonkey
|
||||
RocketCrawler
|
||||
Rogerbot
|
||||
SalesIntelligent
|
||||
ScanAlert
|
||||
Scanbot
|
||||
ScoutJet
|
||||
scan.lol
|
||||
Screaming
|
||||
SemrushBot
|
||||
Searchestate
|
||||
Semrush
|
||||
Seomoz
|
||||
SEOprofiler
|
||||
seoscanners
|
||||
SeoSiteCheckup
|
||||
serpstatbot
|
||||
Shodan
|
||||
Siphon
|
||||
sexsearcher
|
||||
Sitebeam
|
||||
SiteExplorer
|
||||
Siteimprove
|
||||
SiteLockSpider
|
||||
SiteSnagger
|
||||
Sitevigil
|
||||
SlySearch
|
||||
SmartDownload
|
||||
Snapbot
|
||||
Snoopy
|
||||
SocialRankIOBot
|
||||
Sociscraper
|
||||
sogouspider
|
||||
Sottopop
|
||||
SpankBot
|
||||
Spbot
|
||||
spyfu
|
||||
Sqlworm
|
||||
Sqworm
|
||||
Spinn3r
|
||||
Sqlmap
|
||||
Steeler
|
||||
Stripper
|
||||
Sucker
|
||||
Sucuri
|
||||
SuperBot
|
||||
SurveyBot
|
||||
Surfbot
|
||||
Suzuran
|
||||
Swiftbot
|
||||
Szukacz
|
||||
T8Abot
|
||||
tAkeOut
|
||||
Teleport
|
||||
TeleportPro
|
||||
Telesoft
|
||||
Telesphorep
|
||||
The Intraformant
|
||||
TheNomad
|
||||
Thumbor
|
||||
Toweyabot
|
||||
Trendictionbot
|
||||
True_Robot
|
||||
Turnitin
|
||||
TightTwatBot
|
||||
Titan
|
||||
trendiction.com
|
||||
TurnitinBot
|
||||
TwengaBot
|
||||
Twice
|
||||
Typhoeus
|
||||
Upflow
|
||||
URLy Warning
|
||||
Vacuum
|
||||
Vagabondo
|
||||
VB Project
|
||||
VeriCiteCrawler
|
||||
Virusdie
|
||||
WASALive-Bot
|
||||
VidibleScraper
|
||||
Voltron
|
||||
Wallpapers/3.0
|
||||
WallpapersHD
|
||||
WebAuto
|
||||
Web Auto
|
||||
Web Collage
|
||||
WebCopier
|
||||
WEBDAV
|
||||
Web Enhancer
|
||||
Web Fetch
|
||||
WebImageCollector
|
||||
WebEnhancer
|
||||
WebmasterWorldForumBot
|
||||
webmeup-crawler
|
||||
Web Pix
|
||||
WebReaper
|
||||
WebPix
|
||||
WebSauger
|
||||
Webshag
|
||||
WebStripper
|
||||
Web Sauger
|
||||
WebsiteQuester
|
||||
Website Quester
|
||||
Webster
|
||||
WebSucker
|
||||
Web Sucker
|
||||
WebWhacker
|
||||
WeSEE
|
||||
Whack
|
||||
Whacker
|
||||
Whatweb
|
||||
Widow
|
||||
WiseGuys Robot
|
||||
Who.is Bot
|
||||
WinHTTrack
|
||||
WISENutbot
|
||||
Wprecon
|
||||
WPScan
|
||||
WWW-Collector-E
|
||||
WWW::Mechanize
|
||||
x09Mozilla
|
||||
Xaldon_WebSpider
|
||||
WWWOFFLE
|
||||
xpymep1.exe
|
||||
YoudaoBot
|
||||
Zade
|
||||
Zauba
|
||||
zauba.io
|
||||
Zermelo
|
||||
Zeus
|
||||
Zitebot
|
||||
ZmEu
|
||||
ZumBot
|
||||
|
|
|
@ -1,100 +1,100 @@
|
|||
2000k.ru
|
||||
2daytrendingnews.com
|
||||
45en.ru
|
||||
4webmasters.org
|
||||
7zap.com
|
||||
abwa.tk
|
||||
adexprts.com
|
||||
admitad.com
|
||||
all4wap.ru
|
||||
appfixing.space
|
||||
arenanews.com.ua
|
||||
arenda-avtoprokat-krasnodar.ru
|
||||
asacopaco.tk
|
||||
ayeartoforget.com
|
||||
baoxaydung.com.vn
|
||||
bolezniorganov.ru
|
||||
brains2.biz
|
||||
breastaugmentation.co.za
|
||||
buypanicdisorderpill.com
|
||||
cacheimages.com
|
||||
citetick.com
|
||||
classiquebijoux.ru
|
||||
compliance-margo.top
|
||||
cookielawblog.wordpress.com
|
||||
daretodonate.co
|
||||
djekxa.ru
|
||||
domain-tracker.com
|
||||
dood.live
|
||||
ecookna.com.ua
|
||||
eloxal.ru
|
||||
extstat.com
|
||||
fotoxxxru.com
|
||||
free-traffic.xyz
|
||||
freza-sverlo.ru
|
||||
fullfileaccess.com
|
||||
fun2cell.net
|
||||
funnel.co.za
|
||||
gabeshop.ru
|
||||
gambarxkata.co
|
||||
gembird.com
|
||||
gigapeta.com
|
||||
gwhwpxbw.bloger.index.hr
|
||||
hermesreplica.win
|
||||
homegardenlova.com
|
||||
igadgetsworld.com
|
||||
incest-ru.com
|
||||
indetiske.ya.ru
|
||||
internet-apteka.ru
|
||||
iqoption.com
|
||||
jabimgo.pw
|
||||
javatex.co.id
|
||||
jeremyeaton.co
|
||||
jerseysbizwholesalecheap.com
|
||||
job.icivil.ir
|
||||
kerwinandcariza.com
|
||||
kiwe-analytics.com
|
||||
kongruan.com
|
||||
konkursowo-24.pl
|
||||
linkarena.com
|
||||
live-sexcam.tk
|
||||
muzaporn.com
|
||||
my-aladin.com
|
||||
nordstar.pro
|
||||
onlinebay.ru
|
||||
pateaswing.com
|
||||
pathwhelp.org
|
||||
picture-group.com
|
||||
pinwallpaper.top
|
||||
pio.polytopesexempt.com
|
||||
pomoc-drogowa.cba.pl
|
||||
postclass.com
|
||||
proposal-engine.com
|
||||
quelle.ru
|
||||
1qingdao.com
|
||||
24x7-server-support.site
|
||||
adloads.com
|
||||
adpremium.org
|
||||
agardomains.com
|
||||
alltheviews.com
|
||||
app5.letmacworkfaster.world
|
||||
arenda-yeisk.ru
|
||||
aviapanda.ru
|
||||
avtointeres.ru
|
||||
ayerbo.xhost.ro
|
||||
azadnegar.com
|
||||
brainboostingsupplements.org
|
||||
celejihad.info
|
||||
cfacarrosserie74.com
|
||||
codq.info
|
||||
coldfilm.ru
|
||||
compiko.info
|
||||
coolwallpapers-hd.com
|
||||
descargar-musica-gratis.net
|
||||
deutschehobbyhuren.net
|
||||
djihispano.com
|
||||
drugs-no-rx.info
|
||||
dustyorate.com
|
||||
ecommerce-seo.org
|
||||
elektrischeziga.livejournal.com
|
||||
enge-fotzen.info
|
||||
erotiktreff24.info
|
||||
errorfixing.space
|
||||
extlinks.com
|
||||
extremepornos.net
|
||||
fodelsedagspresenter.nu
|
||||
free-share-buttons.top
|
||||
free-today.com
|
||||
gay.adultgalls.com
|
||||
geoads.com
|
||||
girlporn.ru
|
||||
hannasolution.ru
|
||||
hazardky.net
|
||||
heygidday.biz
|
||||
imgata.com
|
||||
investzalog.ru
|
||||
iptool.xyz
|
||||
iqoption.pro
|
||||
irkutsk.zrus.org
|
||||
istanbulit.com
|
||||
laudit.ru
|
||||
livefixer.com
|
||||
lulea-auktionsverk.se
|
||||
magicalfind-a.akamaihd.net
|
||||
mediawhirl.net
|
||||
mygameplus.com
|
||||
myhydros.org
|
||||
mymercy.info
|
||||
naphukete.ru
|
||||
nastydollars.com
|
||||
nippon-bearings.ru
|
||||
nootrino.com
|
||||
npoet.ru
|
||||
oecnhs.info
|
||||
onclickpredictiv.com
|
||||
oneminutesite.it
|
||||
onlinemeetingnow.com
|
||||
onlinetvseries.me
|
||||
picturesmania.com
|
||||
pornhive.org
|
||||
pornosmola.info
|
||||
praisong.net
|
||||
profitkode.com
|
||||
realmonte.net
|
||||
respublica-otel.ru
|
||||
rfd-split.hr
|
||||
ryetaw.com
|
||||
scanner-andrew.top
|
||||
sell-fb-group-here.com
|
||||
serialsway.ucoz.ru
|
||||
sexsearch.com
|
||||
s-forum.biz
|
||||
sharebutton.to
|
||||
skanninge.se
|
||||
sport-video-obzor.ru
|
||||
sps-shop.com
|
||||
squidoo.com
|
||||
theporndude.com
|
||||
timecrimea.ru
|
||||
titan-ads.life
|
||||
tizanidinestreetprice.blogspot.com
|
||||
tnctrx.com
|
||||
topquality.cf
|
||||
tubeline.biz
|
||||
u-cheats.ru
|
||||
viberdownload10.com
|
||||
voltrknc1.com
|
||||
x-diesel.org
|
||||
yubikk.info
|
||||
zaimhelp.ru
|
||||
zmoda.hostreo.com
|
||||
zootravel.com
|
||||
ritlweb.com
|
||||
saletool.ru
|
||||
sampleletters.net
|
||||
servisural.ru
|
||||
shoesonlinebuy.xyz
|
||||
sibvitr.ru
|
||||
sildenafilcitratemed.com
|
||||
siteaero.com
|
||||
souvenirua.com
|
||||
stromerrealty.com
|
||||
students-cheapskate.ml
|
||||
thaismartloan.com
|
||||
thebluffs.com
|
||||
tobeyouday.win
|
||||
torontoplumbinggroup.com
|
||||
um-razum.ru
|
||||
url2image.com
|
||||
us-america.ru
|
||||
video-hollywood.ru
|
||||
video-production.com
|
||||
viktoria-center.ru
|
||||
vkak.ru
|
||||
wareseeker.com
|
||||
xnxxandxvideos.com
|
||||
yes-com.com
|
||||
yoopsie.com
|
||||
zapiszto.pl
|
||||
zeg-distribution.com
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,250 +1,250 @@
|
|||
aa8b68101d388c446389283820863176e7.com
|
||||
abwa.tk
|
||||
adbetclickin.pink
|
||||
adclickservice.com
|
||||
adprotect.net
|
||||
advertex.info
|
||||
alert-fjg.xyz
|
||||
alert.scansafe.net
|
||||
alfa9.com
|
||||
alibestsale.com
|
||||
all4invest.info
|
||||
aludecor.info
|
||||
amehdaily.com
|
||||
amospalla.es
|
||||
an-donut.com
|
||||
animali.deagostinipassion.it
|
||||
apiholdingmypage-a.akamaihd.net
|
||||
apimountainbikei-a.akamaihd.net
|
||||
apioasisspacenet-a.akamaihd.net
|
||||
appiq.mobi
|
||||
applyneedy.xyz
|
||||
ap.senai.br
|
||||
architecturebest.com
|
||||
2x2fan.ru
|
||||
4inn.ru
|
||||
7wind.ru
|
||||
abovetherivernc.com
|
||||
addblueoff.com.ua
|
||||
adrunnr.com
|
||||
adtiger.tk
|
||||
advancedsoftwaresupport.com
|
||||
aksonural.ru
|
||||
alarmobninsk.ru
|
||||
alessandraleone.com
|
||||
allesohnegirls.net
|
||||
allkrim.com
|
||||
alot.com
|
||||
anal-acrobats.hol.es
|
||||
apartamentwroclaw.eu
|
||||
apiportalmorecom-a.akamaihd.net
|
||||
arclk.net
|
||||
arcteryxsale.online
|
||||
arkkivoltti.net
|
||||
arvut.org
|
||||
asacopaco.tk
|
||||
asiengirls.net
|
||||
asrvrep-a.akamaihd.net
|
||||
aviav.ru.com
|
||||
avkzarabotok.info
|
||||
avramstroy.ru
|
||||
avto-oligarh.ru
|
||||
back.dog
|
||||
backuperwebcam.weebly.com
|
||||
bank.uz
|
||||
becuo.com
|
||||
beetpics.pw
|
||||
best-businessman.ru
|
||||
bildsuche.ru
|
||||
bitcoins-live.ru
|
||||
bonkers.name
|
||||
brendbutik.ru
|
||||
budilneg.xyz
|
||||
buyparajumpers.online
|
||||
cactussoft.biz
|
||||
cardul.ru
|
||||
cdn.walkme.com
|
||||
cialischmrx.com
|
||||
citysecurity.nu
|
||||
clarithromycin500mg.com
|
||||
classicakuhni.ru
|
||||
clickbanksites.info
|
||||
cornerstone-countertops.com
|
||||
cornomase.win
|
||||
cracksplanet.com
|
||||
dayibiao.com
|
||||
dealitright.click
|
||||
de.zapmeta.com
|
||||
djstools.com
|
||||
downloadeer.net
|
||||
edge.sharethis.com
|
||||
ednorxmed.com
|
||||
asrvvv-a.akamaihd.net
|
||||
avon-ukraine.com
|
||||
ayerbo.xhost.ro
|
||||
bang-hotties.com
|
||||
bankmib.ru
|
||||
bannerswap.com
|
||||
beclean-nn.ru
|
||||
besthoro.ru
|
||||
besttorrentknifta.weebly.com
|
||||
bestwebsiteawards.com
|
||||
bidr.trellian.com
|
||||
bigcities.org
|
||||
billiard-classic.com.ua
|
||||
bkns.vn
|
||||
bloggerads.net
|
||||
bouda.kvalitne.cz
|
||||
braintobe.win
|
||||
bugof.gq
|
||||
burger-imperia.com
|
||||
buypanicdisorderpill.com
|
||||
carfax.com.ua
|
||||
carrauterie.be
|
||||
carsdined.org
|
||||
cb.iphantom.com
|
||||
ccjp.eu
|
||||
cejewelry.xyz
|
||||
chelnytruck.ru
|
||||
cherrypointplace.ca
|
||||
clippingphotoindia.com
|
||||
coderstate.com
|
||||
co.lumb.co
|
||||
com-secure.download
|
||||
concordexoticrentals.com
|
||||
countercrazy.com
|
||||
cowblog.fr
|
||||
cypernhuset.se
|
||||
dbmkfhqk.bloger.index.hr
|
||||
dealwifi.com
|
||||
derevesendeco.com
|
||||
diesel-parts28.ru
|
||||
digitalassetmanagement.site
|
||||
djonwatch.ru
|
||||
dktr.ru
|
||||
e-biznes.info
|
||||
e-c.al
|
||||
efnor-ac.com
|
||||
eshop4u.jp
|
||||
extads.net
|
||||
ezigarettenshop2.myblog.de
|
||||
femmesdenudees.com
|
||||
financeloan.us
|
||||
eldiariodeguadalajara.com
|
||||
elektrischezigarettekaufen2.cowblog.fr
|
||||
elektrozigaretten2.yn.lt
|
||||
excaliburfilms.com
|
||||
exoclick.com
|
||||
f07.de
|
||||
failingmarriege.blogspot.com
|
||||
fashion-stickers.ru
|
||||
fastcrawl.com
|
||||
favorcosmetics.com
|
||||
fealq.com
|
||||
fickblock18.com
|
||||
fitfloponline.store
|
||||
florida-tourism.net
|
||||
fm-upgrade.ru
|
||||
frighteningremain.cf
|
||||
front.to
|
||||
gallerily.com
|
||||
gamevalue7.weebly.com
|
||||
gayxperience.com
|
||||
ggiaro.com
|
||||
go2mike.ru
|
||||
gogalleryawesome.com
|
||||
gogps.me
|
||||
goodwinmetals.co
|
||||
gopixdatabase.com
|
||||
goroda-vsego-mira.ru
|
||||
gov.yanao.ru
|
||||
graphics8.info
|
||||
gta-club.ru
|
||||
hamptonoaks.ca
|
||||
handicapvantoday.com
|
||||
hd-filmy.net
|
||||
helvetia.com.ua
|
||||
hidemyass.com
|
||||
hobbyhuren-datenbank.com
|
||||
hotshoppymac.com
|
||||
howmuchdoestizanidinecost.blogspot.com
|
||||
howopen.ru
|
||||
hscsscotland.com
|
||||
img.wallpaperstock.net
|
||||
inome.com.ua
|
||||
internet-apteka.ru
|
||||
internetartfair.com
|
||||
itch.io
|
||||
javitas.info
|
||||
jongose.ninja
|
||||
jpcycles.com
|
||||
jyvopys.com
|
||||
forex.osobye.ru
|
||||
forex-procto.ru
|
||||
forums.d2jsp.org
|
||||
free-laptop-reward.com
|
||||
freeuploader.com
|
||||
fz139.ttk.ru
|
||||
gate5.co.za
|
||||
gaytube.com
|
||||
germes-trans.com
|
||||
gk-atlant.info
|
||||
glastecfilms.com.my
|
||||
guarrasdelporno.xxx
|
||||
hdapp1008-a.akamaihd.net
|
||||
herokuapp.com
|
||||
hildinghr.se
|
||||
hkladys.com
|
||||
holidaypics.org
|
||||
iboss.com
|
||||
ilmen.net
|
||||
imgarcade.com
|
||||
impresagaia.it
|
||||
infazavr.ru
|
||||
insta-add.pro
|
||||
in-tandem.co
|
||||
istizanidineanarcoticdrug.blogspot.com
|
||||
jerseyssportsshop.com
|
||||
jmat.cn
|
||||
kakadu-interior.com.ua
|
||||
kalb.ru
|
||||
kamorel.com
|
||||
kerwinandcariza.com
|
||||
keywordblocks.com
|
||||
khafre.us
|
||||
kinobaks.com
|
||||
ks1234.com
|
||||
kvartira-sutochno.com
|
||||
kvartir-remont.biz
|
||||
kvartiry-remont.ucoz.ru
|
||||
labelwater.se
|
||||
lacave.ntic.fr
|
||||
katushka.net
|
||||
kazan.zrus.org
|
||||
kenaba.su
|
||||
keyhantercume.com
|
||||
keywordsdoctor.com
|
||||
kmgamex.cf
|
||||
kotaku.com
|
||||
labplus.ru
|
||||
lacloop.info
|
||||
lanadelreyfans.us
|
||||
levaquin750mg.blogspot.com
|
||||
lexaprogeneric.link
|
||||
lion.playtap.us
|
||||
liupis.com
|
||||
localflirtbuddies.com
|
||||
lombia.com
|
||||
low-format.ru
|
||||
ltvperf.com
|
||||
lyngdalhudterapi.no
|
||||
m292.info
|
||||
mafcards.ru
|
||||
mailemedicinals.com
|
||||
marketland.ml
|
||||
mere.host.sk
|
||||
mezaruk.info
|
||||
mokrayakiska.com
|
||||
moneyteam24.com
|
||||
muznachas-service.ru
|
||||
negral.pluto.ro
|
||||
nfljerseyscheapchinabiz.com
|
||||
nhl09.ru
|
||||
notasprensa.info
|
||||
oecnhs.info
|
||||
onefilms.net
|
||||
paintingplanet.ru
|
||||
parfusale.se
|
||||
pearlisland.ru
|
||||
picurams.pw
|
||||
pills24h.com
|
||||
pirateday.ru
|
||||
pizda.lol
|
||||
pk-services.ru
|
||||
pornoblood.com
|
||||
pornoelita.info
|
||||
porno-play.net
|
||||
porno-video-chati.ru
|
||||
pozdrawleniya.com
|
||||
prizeestates.cricket
|
||||
pr-ten.de
|
||||
ptr.ruvds.com
|
||||
quickloanbank.com
|
||||
randki-sex.com
|
||||
realtytimes.com
|
||||
redhotfreebies.co.uk
|
||||
reelheroes.net
|
||||
regionshop.biz
|
||||
reklama-i-rabota.ru
|
||||
restaurantlescampi.com
|
||||
rossanasaavedra.net
|
||||
ruscopybook.com
|
||||
sammyweaver.com
|
||||
sawin.beth.webd.pl
|
||||
sbetodiodnye-lampy.ru
|
||||
scanner-elena.top
|
||||
scanner-george.top
|
||||
scanner-jack.top
|
||||
landoftracking.com
|
||||
larchik.net
|
||||
laxdrills.com
|
||||
ldrtrack.com
|
||||
lenvred.org
|
||||
lightinghomes.net
|
||||
loginduepunti.it
|
||||
mactechinfo.info
|
||||
magazin-pics.ru
|
||||
maglid.ru
|
||||
medanestesia.ru
|
||||
metalonly.info
|
||||
micasainvest.com
|
||||
mlvc4zzw.space
|
||||
mmostrike.ru
|
||||
monclercheap.xyz
|
||||
musicktab.com
|
||||
mydirtyhobby.com
|
||||
myghillie.info
|
||||
mypornfree.ru
|
||||
napalm51.nut.cc
|
||||
narutonaruto.ru
|
||||
nottyu.xyz
|
||||
nucia.biz.ly
|
||||
nuup.info
|
||||
nvssf.com
|
||||
offer.wpsecurity.website
|
||||
okayimage.com
|
||||
okeinfo.online
|
||||
onthemarch.co
|
||||
oops-cinema.ru
|
||||
outshop.ru
|
||||
ozoz.it
|
||||
page2rss.com
|
||||
partybunny.ru
|
||||
paydayloanslocal.com
|
||||
perso.wanadoo.es
|
||||
petitions.whitehouse.gov
|
||||
pic2fly.com
|
||||
pictures-and-images.net
|
||||
polimga.pw
|
||||
pontiacsolstice.info
|
||||
pornogratisdiario.com
|
||||
pornohd1080.online
|
||||
pornophoto.xyz
|
||||
pornoreino.com
|
||||
prodess.ru
|
||||
qpypcx.com
|
||||
qualitymarketzone.com
|
||||
ragecash.com
|
||||
remedyotc.com
|
||||
rewardit.com
|
||||
riders.ro
|
||||
rogervivierforsale.com
|
||||
roleforum.ru
|
||||
royal-betting.net
|
||||
rumamba.com
|
||||
sbornik-zakonov.ru
|
||||
sbwealthsolutions.ca
|
||||
scanner-jessica.top
|
||||
scanner-nelson.top
|
||||
search-goo.com
|
||||
searchinterneat-a.akamaihd.net
|
||||
searchtooknow-a.akamaihd.net
|
||||
seo-prof1.xyz
|
||||
servicecenter.co.ua
|
||||
score-ads.men
|
||||
seemoreresultshu-a.akamaihd.net
|
||||
semalt.com
|
||||
semaltmedia.com
|
||||
seoprofiler.com
|
||||
servingnotice.com
|
||||
serviporno.com
|
||||
sex-foto.pw
|
||||
sexiporno.net
|
||||
sexspornotub.com
|
||||
sharebutton.org
|
||||
shemale-sex.net
|
||||
shoppingmiracles.co.uk
|
||||
sex-sex-sex5.com
|
||||
shillyourcoins.com
|
||||
shopsellcardsdumps.com
|
||||
sideeffectsoftizanidine.blogspot.com
|
||||
simul.co
|
||||
site3.free-share-buttons.com
|
||||
sitiz.club
|
||||
slavia.info
|
||||
sluganarodu.ru
|
||||
smart-balancewheel.com
|
||||
snjatie-geroinovoy-lomki.ru
|
||||
socialmadesimple.com
|
||||
socialsignals24.com
|
||||
softwaretrend.net
|
||||
spammen.de
|
||||
speedup-my.site
|
||||
spywarespy.com
|
||||
statoutlook.info
|
||||
store-rx.com
|
||||
stromerrealty.com
|
||||
suhanpacktech.com
|
||||
tattoo33.ru
|
||||
templates.franklinfire.co
|
||||
theautoprofit.ml
|
||||
tizanidinehcl2mgsideeffects.blogspot.com
|
||||
tizanidinestreetvalue.blogspot.com
|
||||
tmm-kurs.ru
|
||||
tobeyouday.win
|
||||
toonfamilies.net
|
||||
topcar-krasnodar.ru
|
||||
toproadrunner5.info
|
||||
traxdom.ru
|
||||
trucri.me
|
||||
trudogolik.net
|
||||
uchil.net
|
||||
umityangin.net
|
||||
uptime-as.net
|
||||
uvozdeckych.info
|
||||
vandrie-ict.nl
|
||||
veles.shop
|
||||
vesnatehno.com
|
||||
via-energy-acquistare.com
|
||||
vkontaktemusic.ru
|
||||
wait3sec.org
|
||||
wallpapersdesk.info
|
||||
warningwar.ru
|
||||
webextract.profound.net
|
||||
weddingdresses.xyz
|
||||
wholesalejerseysgaa.com
|
||||
win-spy.com
|
||||
witherrom55.eklablog.fr
|
||||
wnoz.de
|
||||
wonderfulflowers.biz
|
||||
xlolitka.com
|
||||
xmlinde.com
|
||||
xn-----6kcaacnblni5c5bicdpcmficy.xn--p1ai
|
||||
xn----7sbbagbq7bd5aheftfllo4m.xn--p1ai
|
||||
xn--80ahdheogk5l.xn--p1ai
|
||||
xn--q1a.xn--b1aube0e.xn--c1acygb.xn--p1ai
|
||||
xxxrus.org
|
||||
y8games-free.com
|
||||
yaaknaa.info
|
||||
ypmuseum.ru
|
||||
zigzog.ru
|
||||
skachat-besplatno-obrazcy.ru
|
||||
skutecznetabletkinaporostwlosow.pl
|
||||
smartpet.ru
|
||||
sockshare.net
|
||||
solution4u.com
|
||||
sonata-arctica.wz.cz
|
||||
soviet-portal.do.am
|
||||
spy-app.info
|
||||
startufa.ru
|
||||
starwars.wikia.com
|
||||
svarkagid.com
|
||||
swimpool.ca
|
||||
szamponrevita.pl
|
||||
tabakur77.com
|
||||
takeprofitsystem.com
|
||||
telefonsexi.com
|
||||
telsis.com
|
||||
terraclicks.com
|
||||
theguardlan.com
|
||||
theprofitsmaker.net
|
||||
thetoiletpaper.com
|
||||
tiens2010.ru
|
||||
tizanidineforopiatewithdrawal.blogspot.com
|
||||
tizanidinehcl4mgtabinfo.blogspot.com
|
||||
tizanidinerestlesslegsyndrome.blogspot.com
|
||||
token-lab.org
|
||||
top250movies.ru
|
||||
topkarkas.com
|
||||
tsyndicate.com
|
||||
turist-strani.ru
|
||||
twojebook.pl
|
||||
uchetunet.su
|
||||
uhod-za-sobakoj.ru
|
||||
ukrobstep.com
|
||||
uk-zheu20.ru
|
||||
validccseller.com
|
||||
vashsvet.com
|
||||
vielporno.net
|
||||
volgograd.xrus.org
|
||||
wahicbefa31.soup.io
|
||||
wcb.su
|
||||
wdfdocando.com
|
||||
we-are-gamers.com
|
||||
wesharepics.info
|
||||
westermarkanjou.se
|
||||
winwotgold.pl
|
||||
world-mmo.com
|
||||
xblognetwork.com
|
||||
xn--80ak6aa92e.com
|
||||
xn----ctbbcjd3dbsehgi.xn--p1ai
|
||||
xpresscare.ru
|
||||
yellowfootprints.com
|
||||
yourporn.com
|
||||
yourporngay.com
|
||||
youtube-downloader.savetubevideo.com
|
||||
zarabotok--doma.ru
|
||||
zebradudka.com
|
||||
zed21.net
|
||||
zeroredirect11.com
|
||||
zog.link
|
||||
zone-kev717.info
|
||||
zoominfo.com
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -4,7 +4,7 @@
|
|||
### PLEASE READ CONFIGURATION INSTRUCTIONS BELOW THOROUGHLY :exclamation:
|
||||
|
||||
_______________
|
||||
#### Version: V4.2019.06.1629
|
||||
#### Version: V4.2019.06.1630
|
||||
#### Bad Referrer Count: 6713
|
||||
#### Bad Bot Count: 556
|
||||
____________________
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
### PLEASE READ CONFIGURATION INSTRUCTIONS BELOW THOROUGHLY :exclamation:
|
||||
|
||||
_______________
|
||||
#### Version: V4.2019.06.1629
|
||||
#### Version: V4.2019.06.1630
|
||||
#### Bad Referrer Count: 6713
|
||||
#### Bad Bot Count: 556
|
||||
____________________
|
||||
|
|
|
@ -11,7 +11,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. Stop and Block all kinds of bad internet traffic from ever reaching your web sites. [PLEASE SEE: Definition of Bad Bots](#define-bad-bots)
|
||||
|
||||
_______________
|
||||
#### Version: V4.2019.06.1629
|
||||
#### Version: V4.2019.06.1630
|
||||
#### Bad Referrer Count: 6713
|
||||
#### Bad Bot Count: 556
|
||||
____________________
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# EASY CONFIGURATION INSTRUCTIONS FOR STOPPING GOOGLE ANALYTICS "GHOST" SPAM
|
||||
|
||||
_______________
|
||||
#### Version: V4.2019.06.1629
|
||||
#### Version: V4.2019.06.1630
|
||||
#### Bad Referrer Count: 6713
|
||||
#### Bad Bot Count: 556
|
||||
____________________
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V4.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:13 SAST 2019
|
||||
### Version: V4.2019.06.1630
|
||||
### Updated: Wed Jun 26 15:38:14 SAST 2019
|
||||
### Bad Referrer Count: 6713
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:14 SAST 2019
|
||||
### Version: V3.2019.06.1630
|
||||
### Updated: Wed Jun 26 15:38:15 SAST 2019
|
||||
### Bad Referrer Count: 6713
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V4.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:13 SAST 2019
|
||||
### Version: V4.2019.06.1630
|
||||
### Updated: Wed Jun 26 15:38:14 SAST 2019
|
||||
### Bad Referrer Count: 6713
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
### Version Information #
|
||||
###################################################
|
||||
### Version: V4.2019.06.1629
|
||||
### Updated: Wed Jun 26 14:52:15 SAST 2019
|
||||
### Version: V4.2019.06.1630
|
||||
### Updated: Wed Jun 26 15:38:15 SAST 2019
|
||||
### Bad Bot Count: 556
|
||||
###################################################
|
||||
### Version Information ##
|
||||
|
|
Loading…
Add table
Reference in a new issue