mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-02 02:29:58 +00:00
V3.2019.06.1450 [ci skip]
This commit is contained in:
parent
bd94cecb0e
commit
ec9436d53c
67 changed files with 501 additions and 72 deletions
|
@ -33,4 +33,4 @@
|
|||
# 111.111.111.111 0;
|
||||
|
||||
|
||||
104.154.113.151 0;
|
||||
35.188.73.34 0;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:39 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:42 SAST 2019
|
||||
### Bad Referrer Count: 6693
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
|
|
85
.dev-tools/_conf_files_test1/nginx.conf
Normal file
85
.dev-tools/_conf_files_test1/nginx.conf
Normal file
|
@ -0,0 +1,85 @@
|
|||
user www-data;
|
||||
worker_processes auto;
|
||||
pid /run/nginx.pid;
|
||||
include /etc/nginx/modules-enabled/*.conf;
|
||||
|
||||
events {
|
||||
worker_connections 768;
|
||||
# multi_accept on;
|
||||
}
|
||||
|
||||
http {
|
||||
|
||||
##
|
||||
# Basic Settings
|
||||
##
|
||||
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
keepalive_timeout 65;
|
||||
types_hash_max_size 2048;
|
||||
# server_tokens off;
|
||||
|
||||
# server_names_hash_bucket_size 64;
|
||||
# server_name_in_redirect off;
|
||||
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
##
|
||||
# SSL Settings
|
||||
##
|
||||
|
||||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
|
||||
ssl_prefer_server_ciphers on;
|
||||
|
||||
##
|
||||
# Logging Settings
|
||||
##
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
error_log /var/log/nginx/error.log;
|
||||
|
||||
##
|
||||
# Gzip Settings
|
||||
##
|
||||
|
||||
gzip on;
|
||||
|
||||
# gzip_vary on;
|
||||
# gzip_proxied any;
|
||||
# gzip_comp_level 6;
|
||||
# gzip_buffers 16 8k;
|
||||
# gzip_http_version 1.1;
|
||||
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
||||
|
||||
##
|
||||
# Virtual Host Configs
|
||||
##
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/sites-enabled/*;
|
||||
}
|
||||
|
||||
|
||||
#mail {
|
||||
# # See sample authentication script at:
|
||||
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
|
||||
#
|
||||
# # auth_http localhost/auth.php;
|
||||
# # pop3_capabilities "TOP" "USER";
|
||||
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
|
||||
#
|
||||
# server {
|
||||
# listen localhost:110;
|
||||
# protocol pop3;
|
||||
# proxy on;
|
||||
# }
|
||||
#
|
||||
# server {
|
||||
# listen localhost:143;
|
||||
# protocol imap;
|
||||
# proxy on;
|
||||
# }
|
||||
#}
|
|
@ -33,5 +33,5 @@
|
|||
# 111.111.111.111 0;
|
||||
|
||||
|
||||
35.192.187.174 0;
|
||||
35.188.73.34 0;
|
||||
35.192.136.167 0;
|
||||
104.154.113.151 0;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:39 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:42 SAST 2019
|
||||
### Bad Referrer Count: 6693
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
|
|
85
.dev-tools/_conf_files_test2/nginx.conf
Normal file
85
.dev-tools/_conf_files_test2/nginx.conf
Normal file
|
@ -0,0 +1,85 @@
|
|||
user www-data;
|
||||
worker_processes auto;
|
||||
pid /run/nginx.pid;
|
||||
include /etc/nginx/modules-enabled/*.conf;
|
||||
|
||||
events {
|
||||
worker_connections 768;
|
||||
# multi_accept on;
|
||||
}
|
||||
|
||||
http {
|
||||
|
||||
##
|
||||
# Basic Settings
|
||||
##
|
||||
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
keepalive_timeout 65;
|
||||
types_hash_max_size 2048;
|
||||
# server_tokens off;
|
||||
|
||||
# server_names_hash_bucket_size 64;
|
||||
# server_name_in_redirect off;
|
||||
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
##
|
||||
# SSL Settings
|
||||
##
|
||||
|
||||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
|
||||
ssl_prefer_server_ciphers on;
|
||||
|
||||
##
|
||||
# Logging Settings
|
||||
##
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
error_log /var/log/nginx/error.log;
|
||||
|
||||
##
|
||||
# Gzip Settings
|
||||
##
|
||||
|
||||
gzip on;
|
||||
|
||||
# gzip_vary on;
|
||||
# gzip_proxied any;
|
||||
# gzip_comp_level 6;
|
||||
# gzip_buffers 16 8k;
|
||||
# gzip_http_version 1.1;
|
||||
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
||||
|
||||
##
|
||||
# Virtual Host Configs
|
||||
##
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/sites-enabled/*;
|
||||
}
|
||||
|
||||
|
||||
#mail {
|
||||
# # See sample authentication script at:
|
||||
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
|
||||
#
|
||||
# # auth_http localhost/auth.php;
|
||||
# # pop3_capabilities "TOP" "USER";
|
||||
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
|
||||
#
|
||||
# server {
|
||||
# listen localhost:110;
|
||||
# protocol pop3;
|
||||
# proxy on;
|
||||
# }
|
||||
#
|
||||
# server {
|
||||
# listen localhost:143;
|
||||
# protocol imap;
|
||||
# proxy on;
|
||||
# }
|
||||
#}
|
|
@ -33,4 +33,5 @@
|
|||
# 111.111.111.111 0;
|
||||
|
||||
|
||||
104.154.113.151 0;
|
||||
35.188.73.34 0;
|
||||
35.192.136.167 0;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:39 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:42 SAST 2019
|
||||
### Bad Referrer Count: 6693
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
|
|
89
.dev-tools/_conf_files_test3/nginx.conf
Normal file
89
.dev-tools/_conf_files_test3/nginx.conf
Normal file
|
@ -0,0 +1,89 @@
|
|||
user www-data;
|
||||
# Bad Bot Blocker
|
||||
include /etc/nginx/myconf.d/botblocker-nginx-settings.conf;
|
||||
include /etc/nginx/myconf.d/globalblacklist.conf;
|
||||
|
||||
worker_processes auto;
|
||||
pid /run/nginx.pid;
|
||||
include /etc/nginx/modules-enabled/*.conf;
|
||||
|
||||
events {
|
||||
worker_connections 768;
|
||||
# multi_accept on;
|
||||
}
|
||||
|
||||
http {
|
||||
|
||||
##
|
||||
# Basic Settings
|
||||
##
|
||||
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
keepalive_timeout 65;
|
||||
types_hash_max_size 2048;
|
||||
# server_tokens off;
|
||||
|
||||
# server_names_hash_bucket_size 64;
|
||||
# server_name_in_redirect off;
|
||||
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
##
|
||||
# SSL Settings
|
||||
##
|
||||
|
||||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
|
||||
ssl_prefer_server_ciphers on;
|
||||
|
||||
##
|
||||
# Logging Settings
|
||||
##
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
error_log /var/log/nginx/error.log;
|
||||
|
||||
##
|
||||
# Gzip Settings
|
||||
##
|
||||
|
||||
gzip on;
|
||||
|
||||
# gzip_vary on;
|
||||
# gzip_proxied any;
|
||||
# gzip_comp_level 6;
|
||||
# gzip_buffers 16 8k;
|
||||
# gzip_http_version 1.1;
|
||||
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
||||
|
||||
##
|
||||
# Virtual Host Configs
|
||||
##
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/sites-enabled/*;
|
||||
}
|
||||
|
||||
|
||||
#mail {
|
||||
# # See sample authentication script at:
|
||||
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
|
||||
#
|
||||
# # auth_http localhost/auth.php;
|
||||
# # pop3_capabilities "TOP" "USER";
|
||||
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
|
||||
#
|
||||
# server {
|
||||
# listen localhost:110;
|
||||
# protocol pop3;
|
||||
# proxy on;
|
||||
# }
|
||||
#
|
||||
# server {
|
||||
# listen localhost:143;
|
||||
# protocol imap;
|
||||
# proxy on;
|
||||
# }
|
||||
#}
|
|
@ -34,4 +34,3 @@
|
|||
|
||||
|
||||
35.192.187.174 0;
|
||||
35.192.136.167 0;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:39 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:42 SAST 2019
|
||||
### Bad Referrer Count: 6693
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
|
|
85
.dev-tools/_conf_files_test4/nginx.conf
Normal file
85
.dev-tools/_conf_files_test4/nginx.conf
Normal file
|
@ -0,0 +1,85 @@
|
|||
user www-data;
|
||||
worker_processes auto;
|
||||
pid /run/nginx.pid;
|
||||
include /etc/nginx/modules-enabled/*.conf;
|
||||
|
||||
events {
|
||||
worker_connections 768;
|
||||
# multi_accept on;
|
||||
}
|
||||
|
||||
http {
|
||||
|
||||
##
|
||||
# Basic Settings
|
||||
##
|
||||
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
keepalive_timeout 65;
|
||||
types_hash_max_size 2048;
|
||||
# server_tokens off;
|
||||
|
||||
# server_names_hash_bucket_size 64;
|
||||
# server_name_in_redirect off;
|
||||
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
##
|
||||
# SSL Settings
|
||||
##
|
||||
|
||||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
|
||||
ssl_prefer_server_ciphers on;
|
||||
|
||||
##
|
||||
# Logging Settings
|
||||
##
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
error_log /var/log/nginx/error.log;
|
||||
|
||||
##
|
||||
# Gzip Settings
|
||||
##
|
||||
|
||||
gzip on;
|
||||
|
||||
# gzip_vary on;
|
||||
# gzip_proxied any;
|
||||
# gzip_comp_level 6;
|
||||
# gzip_buffers 16 8k;
|
||||
# gzip_http_version 1.1;
|
||||
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
||||
|
||||
##
|
||||
# Virtual Host Configs
|
||||
##
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/sites-enabled/*;
|
||||
}
|
||||
|
||||
|
||||
#mail {
|
||||
# # See sample authentication script at:
|
||||
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
|
||||
#
|
||||
# # auth_http localhost/auth.php;
|
||||
# # pop3_capabilities "TOP" "USER";
|
||||
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
|
||||
#
|
||||
# server {
|
||||
# listen localhost:110;
|
||||
# protocol pop3;
|
||||
# proxy on;
|
||||
# }
|
||||
#
|
||||
# server {
|
||||
# listen localhost:143;
|
||||
# protocol imap;
|
||||
# proxy on;
|
||||
# }
|
||||
#}
|
|
@ -33,4 +33,4 @@
|
|||
# 111.111.111.111 0;
|
||||
|
||||
|
||||
104.154.113.151 0;
|
||||
35.188.73.34 0;
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:40 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:43 SAST 2019
|
||||
### Bad Referrer Count: 6693
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
|
|
85
.dev-tools/_conf_files_testing_changes/nginx.conf
Normal file
85
.dev-tools/_conf_files_testing_changes/nginx.conf
Normal file
|
@ -0,0 +1,85 @@
|
|||
user www-data;
|
||||
worker_processes auto;
|
||||
pid /run/nginx.pid;
|
||||
include /etc/nginx/modules-enabled/*.conf;
|
||||
|
||||
events {
|
||||
worker_connections 768;
|
||||
# multi_accept on;
|
||||
}
|
||||
|
||||
http {
|
||||
|
||||
##
|
||||
# Basic Settings
|
||||
##
|
||||
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
keepalive_timeout 65;
|
||||
types_hash_max_size 2048;
|
||||
# server_tokens off;
|
||||
|
||||
# server_names_hash_bucket_size 64;
|
||||
# server_name_in_redirect off;
|
||||
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
##
|
||||
# SSL Settings
|
||||
##
|
||||
|
||||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
|
||||
ssl_prefer_server_ciphers on;
|
||||
|
||||
##
|
||||
# Logging Settings
|
||||
##
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
error_log /var/log/nginx/error.log;
|
||||
|
||||
##
|
||||
# Gzip Settings
|
||||
##
|
||||
|
||||
gzip on;
|
||||
|
||||
# gzip_vary on;
|
||||
# gzip_proxied any;
|
||||
# gzip_comp_level 6;
|
||||
# gzip_buffers 16 8k;
|
||||
# gzip_http_version 1.1;
|
||||
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
||||
|
||||
##
|
||||
# Virtual Host Configs
|
||||
##
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/sites-enabled/*;
|
||||
}
|
||||
|
||||
|
||||
#mail {
|
||||
# # See sample authentication script at:
|
||||
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
|
||||
#
|
||||
# # auth_http localhost/auth.php;
|
||||
# # pop3_capabilities "TOP" "USER";
|
||||
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
|
||||
#
|
||||
# server {
|
||||
# listen localhost:110;
|
||||
# protocol pop3;
|
||||
# proxy on;
|
||||
# }
|
||||
#
|
||||
# server {
|
||||
# listen localhost:143;
|
||||
# protocol imap;
|
||||
# proxy on;
|
||||
# }
|
||||
#}
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:56 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:56 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:56 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:56 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:56 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:56 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:56 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:56 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:04 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:09 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:04 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:09 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:04 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:09 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:04 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:09 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:04 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:09 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:04 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:09 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:04 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:09 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:04 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:09 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:13 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:21 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:13 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:21 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:13 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:21 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:13 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:21 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:13 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:21 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:13 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:21 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:13 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:21 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:13 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:21 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:45 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:52 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:45 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:52 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:45 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:52 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:45 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:52 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:45 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:52 SAST 2019
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:45 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:52 SAST 2019
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:45 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:52 SAST 2019
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:50:45 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:08:52 SAST 2019
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:57 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:57 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:57 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:57 SAST 2019
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:57 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:57 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:57 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Thu Jun 20 14:49:53 SAST 2019
|
||||
Last Tested: Thu Jun 20 15:07:57 SAST 2019
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:40 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:43 SAST 2019
|
||||
### Bad Referrer Count: 6693
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:39 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:42 SAST 2019
|
||||
### Bad Referrer Count: 6693
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -4,7 +4,7 @@
|
|||
### PLEASE READ CONFIGURATION INSTRUCTIONS BELOW THOROUGHLY :exclamation:
|
||||
|
||||
_______________
|
||||
#### Version: V3.2019.06.1449
|
||||
#### Version: V3.2019.06.1450
|
||||
#### Bad Referrer Count: 6693
|
||||
#### Bad Bot Count: 557
|
||||
____________________
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
### PLEASE READ CONFIGURATION INSTRUCTIONS BELOW THOROUGHLY :exclamation:
|
||||
|
||||
_______________
|
||||
#### Version: V3.2019.06.1449
|
||||
#### Version: V3.2019.06.1450
|
||||
#### Bad Referrer Count: 6693
|
||||
#### Bad Bot Count: 557
|
||||
____________________
|
||||
|
|
|
@ -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: V3.2019.06.1449
|
||||
#### Version: V3.2019.06.1450
|
||||
#### Bad Referrer Count: 6693
|
||||
#### Bad Bot Count: 557
|
||||
____________________
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# EASY CONFIGURATION INSTRUCTIONS FOR STOPPING GOOGLE ANALYTICS "GHOST" SPAM
|
||||
|
||||
_______________
|
||||
#### Version: V3.2019.06.1449
|
||||
#### Version: V3.2019.06.1450
|
||||
#### Bad Referrer Count: 6693
|
||||
#### Bad Bot Count: 557
|
||||
____________________
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:39 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:42 SAST 2019
|
||||
### Bad Referrer Count: 6693
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:40 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:43 SAST 2019
|
||||
### Bad Referrer Count: 6693
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:39 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:42 SAST 2019
|
||||
### Bad Referrer Count: 6693
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
### Version Information #
|
||||
###################################################
|
||||
### Version: V3.2019.06.1449
|
||||
### Updated: Thu Jun 20 14:49:41 SAST 2019
|
||||
### Version: V3.2019.06.1450
|
||||
### Updated: Thu Jun 20 15:07:44 SAST 2019
|
||||
### Bad Bot Count: 557
|
||||
###################################################
|
||||
### Version Information ##
|
||||
|
|
Loading…
Add table
Reference in a new issue