V4.2019.07.1734 [ci skip]

This commit is contained in:
Travis 2019-07-02 13:56:52 +02:00
parent cee08ad4bd
commit d0de5ddc20
60 changed files with 2164 additions and 1085 deletions

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V3.2019.07.1733 ### Version: V3.2019.07.1734
### Updated: Tue Jul 2 13:14:52 SAST 2019 ### Updated: Tue Jul 2 13:44:33 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -1,2 +1,2 @@
104.154.120.187 1; 35.188.73.34 1;
127.0.0.1 1; 127.0.0.1 1;

View file

@ -1,2 +1,2 @@
104.154.120.187 0; 35.188.73.34 0;
127.0.0.1 0; 127.0.0.1 0;

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V3.2019.07.1733 ### Version: V3.2019.07.1734
### Updated: Tue Jul 2 13:14:52 SAST 2019 ### Updated: Tue Jul 2 13:44:33 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -1,2 +1,2 @@
104.154.120.187 1; 35.188.73.34 1;
127.0.0.1 1; 127.0.0.1 1;

View file

@ -1,2 +1,2 @@
104.154.120.187 0; 35.188.73.34 0;
127.0.0.1 0; 127.0.0.1 0;

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V3.2019.07.1733 ### Version: V3.2019.07.1734
### Updated: Tue Jul 2 13:14:52 SAST 2019 ### Updated: Tue Jul 2 13:44:33 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -1,2 +1,2 @@
104.154.120.187 1; 35.188.73.34 1;
127.0.0.1 1; 127.0.0.1 1;

View file

@ -1,2 +1,2 @@
104.154.120.187 0; 35.188.73.34 0;
127.0.0.1 0; 127.0.0.1 0;

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V3.2019.07.1733 ### Version: V3.2019.07.1734
### Updated: Tue Jul 2 13:14:52 SAST 2019 ### Updated: Tue Jul 2 13:44:33 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V3.2019.07.1733 ### Version: V3.2019.07.1734
### Updated: Tue Jul 2 13:14:52 SAST 2019 ### Updated: Tue Jul 2 13:44:33 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:51 SAST 2019 ### Updated: Tue Jul 2 13:44:31 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -0,0 +1,124 @@
#user html;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
# Nginx Bad Bot Blocker Includes
# REPO: https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker
include /etc/nginx/conf.d/botblocker-nginx-settings.conf;
include /etc/nginx/conf.d/globalblacklist.conf;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}

View file

@ -0,0 +1,97 @@
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
# Nginx Bad Bot Blocker Includes
# REPO: https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker
include /etc/nginx/conf.d/botblocker-nginx-settings.conf;
include /etc/nginx/conf.d/globalblacklist.conf;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
# Settings for a TLS enabled server.
#
# server {
# listen 443 ssl http2 default_server;
# listen [::]:443 ssl http2 default_server;
# server_name _;
# root /usr/share/nginx/html;
#
# ssl_certificate "/etc/pki/nginx/server.crt";
# ssl_certificate_key "/etc/pki/nginx/private/server.key";
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 10m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
#
# # Load configuration files for the default server block.
# include /etc/nginx/default.d/*.conf;
#
# location / {
# }
#
# error_page 404 /404.html;
# location = /40x.html {
# }
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# }
# }
}

View file

@ -0,0 +1,97 @@
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
# Nginx Bad Bot Blocker Includes
# REPO: https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker
include /etc/nginx/conf.d/botblocker-nginx-settings.conf;
include /etc/nginx/conf.d/globalblacklist.conf;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
# Settings for a TLS enabled server.
#
# server {
# listen 443 ssl http2 default_server;
# listen [::]:443 ssl http2 default_server;
# server_name _;
# root /usr/share/nginx/html;
#
# ssl_certificate "/etc/pki/nginx/server.crt";
# ssl_certificate_key "/etc/pki/nginx/private/server.key";
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 10m;
# ssl_ciphers PROFILE=SYSTEM;
# ssl_prefer_server_ciphers on;
#
# # Load configuration files for the default server block.
# include /etc/nginx/default.d/*.conf;
#
# location / {
# }
#
# error_page 404 /404.html;
# location = /40x.html {
# }
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# }
# }
}

View file

@ -0,0 +1,143 @@
#user nginx;
worker_processes 1;
# load_module lib64/nginx/modules/ngx_http_fancyindex_module.so;
# load_module lib64/nginx/modules/ngx_http_geoip_module.so;
# load_module lib64/nginx/modules/ngx_http_headers_more_filter_module.so;
# load_module lib64/nginx/modules/ngx_http_image_filter_module.so;
# load_module lib64/nginx/modules/ngx_http_perl_module.so;
# load_module lib64/nginx/modules/ngx_http_xslt_filter_module.so;
# load_module lib64/nginx/modules/ngx_mail_module.so;
# load_module lib64/nginx/modules/ngx_rtmp_module.so;
# load_module lib64/nginx/modules/ngx_stream_geoip_module.so;
# load_module lib64/nginx/modules/ngx_stream_module.so;
#error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
#pid /run/nginx.pid;
events {
worker_connections 1024;
use epoll;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
# Nginx Bad Bot Blocker Includes
# REPO: https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker
include /etc/nginx/conf.d/botblocker-nginx-settings.conf;
include /etc/nginx/conf.d/globalblacklist.conf;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /srv/www/htdocs/;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /srv/www/htdocs/;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root /srv/www/htdocs/;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root /srv/www/htdocs/;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# Allow TLS version 1.2 only, which is a recommended default these days
# by international information security standards.
# ssl_protocols TLSv1.2;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root /srv/www/htdocs/;
# index index.html index.htm;
# }
#}
include vhosts.d/*.conf;
}

View file

@ -0,0 +1,91 @@
user www-data;
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
# Nginx Bad Bot Blocker Includes
# REPO: https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker
include /etc/nginx/conf.d/botblocker-nginx-settings.conf;
include /etc/nginx/conf.d/globalblacklist.conf;
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_disable "msie6";
# 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/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;
# }
#}

View file

@ -10,6 +10,12 @@ events {
http { http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
# Nginx Bad Bot Blocker Includes # Nginx Bad Bot Blocker Includes
@ -17,12 +23,6 @@ http {
include /etc/nginx/conf.d/botblocker-nginx-settings.conf; include /etc/nginx/conf.d/botblocker-nginx-settings.conf;
include /etc/nginx/conf.d/globalblacklist.conf; include /etc/nginx/conf.d/globalblacklist.conf;
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on; tcp_nodelay on;
keepalive_timeout 65; keepalive_timeout 65;
types_hash_max_size 2048; types_hash_max_size 2048;

View file

@ -0,0 +1,124 @@
#user html;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
# Nginx Bad Bot Blocker Includes
# REPO: https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker
include /etc/nginx/conf.d/botblocker-nginx-settings.conf;
include /etc/nginx/conf.d/globalblacklist.conf;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}

View file

@ -0,0 +1,90 @@
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
# Settings for a TLS enabled server.
#
# server {
# listen 443 ssl http2 default_server;
# listen [::]:443 ssl http2 default_server;
# server_name _;
# root /usr/share/nginx/html;
#
# ssl_certificate "/etc/pki/nginx/server.crt";
# ssl_certificate_key "/etc/pki/nginx/private/server.key";
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 10m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
#
# # Load configuration files for the default server block.
# include /etc/nginx/default.d/*.conf;
#
# location / {
# }
#
# error_page 404 /404.html;
# location = /40x.html {
# }
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# }
# }
}

View file

@ -0,0 +1,90 @@
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
# Settings for a TLS enabled server.
#
# server {
# listen 443 ssl http2 default_server;
# listen [::]:443 ssl http2 default_server;
# server_name _;
# root /usr/share/nginx/html;
#
# ssl_certificate "/etc/pki/nginx/server.crt";
# ssl_certificate_key "/etc/pki/nginx/private/server.key";
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 10m;
# ssl_ciphers PROFILE=SYSTEM;
# ssl_prefer_server_ciphers on;
#
# # Load configuration files for the default server block.
# include /etc/nginx/default.d/*.conf;
#
# location / {
# }
#
# error_page 404 /404.html;
# location = /40x.html {
# }
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# }
# }
}

View file

@ -0,0 +1,137 @@
#user nginx;
worker_processes 1;
# load_module lib64/nginx/modules/ngx_http_fancyindex_module.so;
# load_module lib64/nginx/modules/ngx_http_geoip_module.so;
# load_module lib64/nginx/modules/ngx_http_headers_more_filter_module.so;
# load_module lib64/nginx/modules/ngx_http_image_filter_module.so;
# load_module lib64/nginx/modules/ngx_http_perl_module.so;
# load_module lib64/nginx/modules/ngx_http_xslt_filter_module.so;
# load_module lib64/nginx/modules/ngx_mail_module.so;
# load_module lib64/nginx/modules/ngx_rtmp_module.so;
# load_module lib64/nginx/modules/ngx_stream_geoip_module.so;
# load_module lib64/nginx/modules/ngx_stream_module.so;
#error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
#pid /run/nginx.pid;
events {
worker_connections 1024;
use epoll;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
include conf.d/*.conf;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /srv/www/htdocs/;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /srv/www/htdocs/;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root /srv/www/htdocs/;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root /srv/www/htdocs/;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# Allow TLS version 1.2 only, which is a recommended default these days
# by international information security standards.
# ssl_protocols TLSv1.2;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root /srv/www/htdocs/;
# index index.html index.htm;
# }
#}
include vhosts.d/*.conf;
}

View file

@ -0,0 +1,85 @@
user www-data;
worker_processes auto;
pid /run/nginx.pid;
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_disable "msie6";
# 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;
# }
#}

View file

@ -45,4 +45,4 @@
# - Whitelisting IP's and RANGES here ONLY affects the IP blocking functions. # - Whitelisting IP's and RANGES here ONLY affects the IP blocking functions.
# - This file will NOT allow your own IP to bypass bad User-Agent or Referrer String checks. # - This file will NOT allow your own IP to bypass bad User-Agent or Referrer String checks.
# - To bypass everything for a certain IP see notes in blockbots.conf on SUPER WHITELIST # - To bypass everything for a certain IP see notes in blockbots.conf on SUPER WHITELIST
35.224.112.202 0; 104.198.131.58 0;

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:51 SAST 2019 ### Updated: Tue Jul 2 13:44:31 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -1,2 +1,2 @@
35.184.96.71 1; 34.68.144.114 1;
127.0.0.1 1; 127.0.0.1 1;

View file

@ -1,2 +1,2 @@
35.184.96.71 0; 34.68.144.114 0;
127.0.0.1 0; 127.0.0.1 0;

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:51 SAST 2019 ### Updated: Tue Jul 2 13:44:31 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -1,2 +1,2 @@
35.184.96.71 1; 34.68.144.114 1;
127.0.0.1 1; 127.0.0.1 1;

View file

@ -1,2 +1,2 @@
35.184.96.71 0; 34.68.144.114 0;
127.0.0.1 0; 127.0.0.1 0;

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:51 SAST 2019 ### Updated: Tue Jul 2 13:44:31 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -1,2 +1,2 @@
35.184.96.71 1; 34.68.144.114 1;
127.0.0.1 1; 127.0.0.1 1;

View file

@ -1,2 +1,2 @@
35.184.96.71 0; 34.68.144.114 0;
127.0.0.1 0; 127.0.0.1 0;

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:51 SAST 2019 ### Updated: Tue Jul 2 13:44:31 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -45,5 +45,5 @@
# - Whitelisting IP's and RANGES here ONLY affects the IP blocking functions. # - Whitelisting IP's and RANGES here ONLY affects the IP blocking functions.
# - This file will NOT allow your own IP to bypass bad User-Agent or Referrer String checks. # - This file will NOT allow your own IP to bypass bad User-Agent or Referrer String checks.
# - To bypass everything for a certain IP see notes in blockbots.conf on SUPER WHITELIST # - To bypass everything for a certain IP see notes in blockbots.conf on SUPER WHITELIST
35.202.145.110 0; 35.192.187.174 0;
104.154.120.187 0; 34.66.178.120 0;

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:51 SAST 2019 ### Updated: Tue Jul 2 13:44:31 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -45,6 +45,6 @@
# - Whitelisting IP's and RANGES here ONLY affects the IP blocking functions. # - Whitelisting IP's and RANGES here ONLY affects the IP blocking functions.
# - This file will NOT allow your own IP to bypass bad User-Agent or Referrer String checks. # - This file will NOT allow your own IP to bypass bad User-Agent or Referrer String checks.
# - To bypass everything for a certain IP see notes in blockbots.conf on SUPER WHITELIST # - To bypass everything for a certain IP see notes in blockbots.conf on SUPER WHITELIST
35.193.7.13 0; 104.198.131.58 0;
35.192.85.2 0; 35.192.136.167 0;
35.202.145.110 0; 35.193.14.140 0;

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:51 SAST 2019 ### Updated: Tue Jul 2 13:44:31 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -45,5 +45,6 @@
# - Whitelisting IP's and RANGES here ONLY affects the IP blocking functions. # - Whitelisting IP's and RANGES here ONLY affects the IP blocking functions.
# - This file will NOT allow your own IP to bypass bad User-Agent or Referrer String checks. # - This file will NOT allow your own IP to bypass bad User-Agent or Referrer String checks.
# - To bypass everything for a certain IP see notes in blockbots.conf on SUPER WHITELIST # - To bypass everything for a certain IP see notes in blockbots.conf on SUPER WHITELIST
35.184.96.71 0; 34.68.144.114 0;
35.202.145.110 0; 35.192.187.174 0;
35.192.136.167 0;

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:51 SAST 2019 ### Updated: Tue Jul 2 13:44:31 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -1,2 +1,2 @@
104.154.120.187 1; 35.188.73.34 1;
127.0.0.1 1; 127.0.0.1 1;

View file

@ -1,10 +1,10 @@
BackDoorBot eCatch
BDFetch Gotit
CSHttp HTMLparser
Ezooms ips-agent
Intelliseek LinqiaScrapeBot
RankActiveLinkBot Majestic-SEO
SBIder NPbot
Telesphorep Pimonster
Webalta QueryN Metasearch
Zauba ScreenerBot

View file

@ -1,250 +1,250 @@
404checker
404enemy 404enemy
80legs 80legs
Abonti Aboundexbot
Aboundex
Acunetix Acunetix
ADmantX ADmantX
AfD-Verbotsverfahren Aipbot
AIBOT
AiHitBot
Alexibot Alexibot
AllSubmitter Alligator
Anarchie
Apexoo Apexoo
Asterias archive.org_bot
Attach autoemailspider
Backlink-Ceck BackDoorBot
BacklinkCrawler BacklinkCrawler
BackStreet
BackWeb BackWeb
Barkrowler Bandit
BatchFTP BatchFTP
BBBike BBBike
BDCbot Bigfoot
BDFetch BlackWidow
Black Hole Bolt
BlowFish BuiltBotTough
Buddy Bullseye
BuiltWith
BuzzSumo BuzzSumo
Calculon
CATExplorador CATExplorador
CheTeam CheTeam
ChinaClaw
Chlooe Chlooe
Cliqzbot Cliqzbot
Cloud mapping
coccocbot-web coccocbot-web
Cogentbot
Collector Collector
Copier com.plumanalytics
CopyRightCheck CopyRightCheck
Copyscape
Cosmos
Craftbot Craftbot
crawler4j CSHttp
DatabaseDriverMysqli
DataCha0s DataCha0s
DBLBot
demandbase-bot
Devil Devil
DigitalPebble
Dirbuster Dirbuster
Disco
Discobot Discobot
Discoverybot
Dispatch Dispatch
DnyzBot DittoSpyder
DomainAppender
DomainCrawler
Dotbot
Download Wonder Download Wonder
Drip DSearch
Ebingbong EasyDL
eCatch eCatch
ECCP/1.0 ECCP/1.0
Ecxi
EirGrabber EirGrabber
Extractor EMail Wolf
ExtractorPro evc-batch
Extreme Picture Finder Extreme Picture Finder
EyeNetIE FDM
FemtosearchBot FemtosearchBot
FlashGet
Flunky Flunky
Foobot Foobot
FrontPage Genieo
FyberSpider GermCrawler
Fyrebot GetWeb
GalaxyBot Go-Ahead-Got-It
GetRight
Gigablast
Gotit Gotit
GoZilla GoZilla
Grabber Go!Zilla
Haansoft GrabNet
Grafula
GrapeFX
GrapeshotCrawler
GT::WWW
Harvest Harvest
Havij Havij
HEADMasterSEO HTTrack
HybridBot
IDBot IDBot
Image Fetch Image Fetch
Image Sucker Image Sucker
Indy Library InfoNaviRobot
instabid instabid
InternetSeer InterGET
internetVista monitor Internet Ninja
ips-agent
Iria Iria
IRLbot IstellaBot
Jbrofuzz JennyBot
JikeSpider JetCar
JOC Web Spider
JustView JustView
Keyword Density Kenjin Spider
Kozmosbot
Lanshanbot Lanshanbot
LeechGet LeechGet
LexiBot LexiBot
Likse LibWeb
LinkpadBot Lightspeedsystems
LinkextractorPro
LinkScan
LinksManager LinksManager
LinkWalker
LinqiaRSSBot
LinqiaScrapeBot
Lipperhey Lipperhey
Lipperhey Spider
Litemage_walker
LNSpiderguy LNSpiderguy
Ltx71 Ltx71
LWP::Simple
lwp-trivial
Mag-Net Mag-Net
Mail.RU_Bot magpie-crawler
Majestic12
Majestic SEO Majestic SEO
Majestic-SEO
MarkMonitor MarkMonitor
Mass Downloader Meanpathbot
MauiBot MeanPath Bot
MegaIndex.ru Mediatoolkitbot
Microsoft Data Access
Microsoft URL Control Microsoft URL Control
MIIxpc Mojeek
MJ12bot MSIECrawler
Mr.4x3 MS Web Services Client Protocol
Msrabot muhstik-scan
Musobot Nameprotect
NearSite
Needle Needle
Netcraft NetAnts
netEstate NE Crawler
NetSpider NetSpider
Net Vampire Net Vampire
Niki-bot Netvibes
NetZIP
Nibbler
Nikto Nikto
NimbleCrawler
Nimbostratus Nimbostratus
oBot NPbot
Offline Explorer Offline Explorer
Offline Navigator Offline Navigator
OnCrawl
OpenLinkProfiler
OpenVAS OpenVAS
OrangeBot page scorer
PageAnalyzer
Page Analyzer
PageScorer PageScorer
Papa Foto
pcBrowser
PECL::HTTP PECL::HTTP
PHPCrawl PictureFinder
Picsearch
Pi-Monster Pi-Monster
Pixray PleaseCrawl
plumanalytics plumanalytics
Psbot Pockey
POE-Component-Client-HTTP
PxBroker
PyCurl PyCurl
QueryN Metasearch RankingBot
Quick-Crawler RankurBot
RankActive Reaper
RankActiveLinkBot RedesScrapy
RankingBot2
RealDownload
RebelMouse
ReGet
RepoMonkey
Ripper Ripper
Rogerbot
SalesIntelligent
ScanAlert ScanAlert
Scanbot Scanbot
ScoutJet scan.lol
SearchmetricsBot Scrapy
Searchestate
Semrush
SemrushBot
SEOkicks
SEOlyticsCrawler
Seomoz Seomoz
SEOprofiler seoscanners
SeoSiteCheckup SEOstats
serpstatbot serpstatbot
sexsearcher
Shodan Shodan
Sitebeam SISTRIX
SiteExplorer
Siteimprove
SiteLockSpider SiteLockSpider
Site Sucker
SlySearch
SmartDownload SmartDownload
SMTBot SocialRankIOBot
Snapbot
Sociscraper Sociscraper
Sogou web spider
Sosospider
Sottopop Sottopop
SpaceBison
SpankBot SpankBot
Spanner Spanner
Spbot Spbot
spyfu SputnikBot
Sqlmap Sqlmap
Sqlworm
Sqworm
Steeler Steeler
Stripper Sucker
Sucuri
SuperBot SuperBot
Szukacz SurveyBot
T0PHackTeam sysscan
T8Abot
tAkeOut tAkeOut
Telesoft
Telesphoreo
Telesphorep Telesphorep
TheNomad TheNomad
TightTwatBot
Titan
Tracemyfile Tracemyfile
Trendictionbot trendiction.com
True_Robot
Turingos
Turnitin Turnitin
TurnitinBot TurnitinBot
Twice Twice
Typhoeus
UnisterBot UnisterBot
Upflow URLy.Warning
Vacuum Vacuum
Vagabondo VB Project
VCI VeriCiteCrawler
VidibleScraper VidibleScraper
Virusdie Virusdie
VoidEYE VoidEYE
Voil
Wallpapers/3.0
WallpapersHD WallpapersHD
WASALive-Bot WASALive-Bot
Webalta Webalta
WebAuto WebAuto
Web Auto WebBandit
WebCollage
Web Collage Web Collage
WebCopier
WebEnhancer WebEnhancer
Web Enhancer
WebFetch
Web Fetch Web Fetch
WebFuck
Web Fuck
WebGo IS WebGo IS
WebImageCollector WebLeacher
WebmasterWorldForumBot WebmasterWorldForumBot
webmeup-crawler webmeup-crawler
WebReaper
WebSauger
Website Quester Website Quester
Webster Webster
WebStripper
WebSucker
Web Sucker Web Sucker
WeSEE
Whack Whack
Whacker
Whatweb Whatweb
Who.is Bot
Widow Widow
WiseGuys Robot
WISENutbot WISENutbot
Wonderbot
Woobot Woobot
Wprecon Wotbox
WWW-Mechanize
WWW::Mechanize
x09Mozilla x09Mozilla
x22Mozilla Xenu
Xaldon WebSpider YoudaoBot
Xaldon_WebSpider Zade
Zermelo Zauba
Zeus Zeus
zgrab
Zitebot Zitebot
ZmEu
ZumBot
ZyBorg ZyBorg

View file

@ -1,250 +1,250 @@
360Spider 360Spider
404checker
404enemy 404enemy
80legs
Abonti Abonti
Aboundexbot Aboundexbot
Acunetix ADmantX
AfD-Verbotsverfahren AiHitBot
AhrefsBot Alligator
AllSubmitter AllSubmitter
Anarchie Attach
ASPSeek autoemailspider
BackDoorBot
Backlink-Ceck Backlink-Ceck
BacklinkCrawler backlink-check
BackStreet Badass
Barkrowler
BatchFTP BatchFTP
Battleztar Bazinga Battleztar Bazinga
BDCbot BDFetch
Blackboard BetaBot
Bigfoot
BlackWidow
BLEXBot
Blow
Bolt
BotALot
Brandprotect
Brandwatch
BuiltBotTough BuiltBotTough
BuiltWith
Bullseye Bullseye
CATExplorador CATExplorador
CazoodleBot CazoodleBot
Cegbfeieh CCBot
CheeseBot Chlooe
CherryPicker
CheTeam
Cliqzbot
Cloud mapping Cloud mapping
coccocbot-web Cosmos
Cogentbot crawler4j
Collector crawler.feedback
Copier
Copyscape
Craftbot
crawl.sogou.com crawl.sogou.com
CSHttp CrazyWebCrawler
Custo
DatabaseDriverMysqli
DBLBot DBLBot
Demon Demon
Deusu Deusu
Dirbuster Devil
Discobot Digincore
DigitalPebble
DIIbot
Discoverybot Discoverybot
Dispatch Dispatch
DomainAppender DomainCrawler
Dotbot Dotbot
Dragonfly Download Wonder
Drip
DTS Agent DTS Agent
EasyDL
ECCP/1.0 ECCP/1.0
Ecxi EirGrabber
EMail Siphon
EMail Wolf EMail Wolf
evc-batch EroCrawler
Exabot
ExtLinksBot ExtLinksBot
Extractor
ExtractorPro ExtractorPro
Extreme Picture Finder EyeNetIE
Ezooms
FHscan FHscan
Fimap Fimap
Foobot
Freeuploader Freeuploader
Fyrebot Fyrebot
GalaxyBot
Genieo
GermCrawler GermCrawler
Getintent GetWeb
Gigablast
G-i-g-a-b-o-t G-i-g-a-b-o-t
Go!Zilla GoZilla
Grafula GrapeshotCrawler
GrapeFX HaosouSpider
GridBot
GT::WWW
Haansoft
Harvest
HEADMasterSEO
Heritrix Heritrix
HMView Hloader
HTMLparser
HTTrack HTTrack
Image Fetch Humanlinks
Image Sucker HybridBot
Indy Library IlseBot
InfoNaviRobot InfoNaviRobot
Internet Ninja instabid
InternetSeer
internetVista monitor
IstellaBot
Jbrofuzz Jbrofuzz
JetCar JennyBot
JikeSpider Joomla
JustView Jorgee
Kenjin Spider
Lanshanbot Lanshanbot
LexiBot LeechFTP
Lftp LibWeb
Libwhisker Libwhisker
LinkScan Likse
Linkdexbot
LinksManager LinksManager
LinkWalker LinkWalker
LinqiaMetadataDownloaderBot LinqiaMetadataDownloaderBot
LinqiaRSSBot
LinqiaScrapeBot LinqiaScrapeBot
Lipperhey Lipperhey
Lipperhey Spider
Lmspider Lmspider
LWP::Simple LNSpiderguy
lwp-trivial lwp-trivial
Majestic SEO Mail.RU_Bot
Majestic-SEO Majestic-SEO
Masscan Masscan
Mass Downloader
Mata Hari
MauiBot
meanpathbot meanpathbot
MeanPath Bot Meanpathbot
Mediatoolkitbot
mediawords
MegaIndex.ru MegaIndex.ru
Metauri
MFC_Tear_Sample MFC_Tear_Sample
MIDown tool Microsoft Data Access
Microsoft URL Control
MIIxpc MIIxpc
MSFrontPage MJ12bot
Mojeek
Morfeus Fucking Scanner
MSIECrawler MSIECrawler
Msrabot Msrabot
Name Intelligence MS Web Services Client Protocol
Musobot
Nameprotect Nameprotect
NearSite NearSite
Needle
Nessus
NetAnts
Netcraft
NetMechanic
NetSpider NetSpider
Nettrack Nettrack
Net Vampire
Netvibes Netvibes
NetZIP NetZIP
NICErsPRO NextGenSearchBot
Niki-bot Nibbler
Ninja Nikto
NimbleCrawler
Nimbostratus
NPbot NPbot
oBot oBot
Octopus Octopus
OpenVAS Offline Explorer
OnCrawl
OpenLinkProfiler
Openvas
OrangeBot OrangeBot
OrangeSpider Page Analyzer
OutclicksBot PageScorer
OutfoxBot pcBrowser
PageGrabber
page scorer
PECL::HTTP PECL::HTTP
PeoplePal PeoplePal
Picsearch PHPCrawl
PictureFinder Picscout
Pimonster Pimonster
ProPowerBot plumanalytics
Pump Pockey
PxBroker ProWebWalker
PyCurl Rankivabot
RankActive
RankingBot2
RankurBot RankurBot
RealDownload RealDownload
RebelMouse
Recorder Recorder
RedesScrapy RepoMonkey
ReGet Ripper
Rogerbot Scanbot
SalesIntelligent scan.lol
SBIder Scrapy
ScoutJet ScreenerBot
Screaming SearchmetricsBot
Searchestate SEOlyticsCrawler
SEOkicks seoscanners
SEOkicks-Robot SEOstats
Seomoz
SEOprofiler
serpstatbot serpstatbot
sexsearcher sexsearcher
Shodan SISTRIX
Sitebeam Sitebeam
SiteExplorer
SiteLockSpider SiteLockSpider
SiteSucker
SmartDownload SmartDownload
SMTBot SMTBot
Snapbot Snapbot
Sociscraper
Sogou web spider Sogou web spider
Sosospider Spammen
SpaceBison sp_auditbot
Spanner
Spbot
Spinn3r Spinn3r
SputnikBot
Sqlmap
Steeler Steeler
Stripper
Sucker
SuperHTTP SuperHTTP
Surfbot
SurveyBot
Suzuran
Swiftbot Swiftbot
Szukacz
T0PHackTeam T0PHackTeam
T8Abot
Teleport
TeleportPro TeleportPro
Telesoft
Telesphoreo Telesphoreo
Telesphorep
Thumbor Thumbor
TightTwatBot TightTwatBot
Toata Toata
Trendiction Trendiction
Trendictionbot
trendiction.com trendiction.com
True_Robot trendiction.de
Turingos
Turnitin Turnitin
TurnitinBot
TwengaBot TwengaBot
Typhoeus
UnisterBot UnisterBot
Upflow VCI
URLy.Warning
VB Project
VidibleScraper
Virusdie
VoidEYE VoidEYE
WallpapersHD Voltron
Webalta WASALive-Bot
WBSearchBot
Web Auto Web Auto
WebEnhancer WebBandit
Web Enhancer WebCollage
Web Collage
WebCopier
WEBDAV
Web Fetch Web Fetch
WebFuck
Web Fuck Web Fuck
webmeup-crawler
Web Pix
WebReaper WebReaper
Web Sauger
Webshag
WebsiteExtractor
WebsiteQuester
Website Quester Website Quester
WebStripper Webster
WebSucker
Web Sucker Web Sucker
WebWhacker WebWhacker
WebZIP WebZIP
WeSEE Whacker
Widow Whatweb
WinHTTrack Who.is Bot
Woobot WiseGuys Robot
Wotbox Wotbox
Wprecon Wprecon
WPScan
WWW-Collector-E
WWW::Mechanize WWW::Mechanize
WWWOFFLE
x09Mozilla
x22Mozilla
Xaldon_WebSpider Xaldon_WebSpider
YoudaoBot
Zade Zade
zauba.io Zauba
Zermelo Zermelo
Zeus Zeus
zgrab zgrab
Zitebot
ZmEu ZmEu
ZumBot
ZyBorg

View file

@ -1,10 +1,10 @@
aktobe.xkaz.org aerogo.com
aliexpress.com angel1777.kz
compliance-viktor.top animebox.com.ua
engines-usa.com beztuberkuleza.ru
exonline.info date-withme.com
holidaypics.org mikrobiologies.ru
muzaporn.com missvietnam.org
onlythegames.com misterjtbarbers.com
stoki.ru moivestiy.biz
wiosenny-bon-1500.pl nac-bearings.ru

View file

@ -1,500 +1,500 @@
0daymusic.org 1pamm.ru
0n-line.tv 2ads.co.uk
1001watch.com.ua 2daytrendingnews.com
10bet.com 2kata.ru
123any.com
14b.info
1qingdao.com
202ch.com
24videos.tv
3rbseyes.com 3rbseyes.com
45en.ru 6hopping.com
883zy.com 7fon.ru
aa81bf391151884adfa3dd677e41f94be1.com 888.com
aa8780bb28a1de4eb5bff33c28a218a930.com 8jn.dating-app.ru
aaa38852e886ac4af1a3cff9b47cab6272.com aa8b68101d388c446389283820863176e7.com
abovetherivernc.com aac52006ec82a24e08b665f4db2b5013f7.com
absolutelyanalog.com abwa.tk
acunetix-referrer.com acgs.tk
addblueoff.com.ua adexprts.com
adf.ly adobereader-free.ru
adminshop.com adprotect.net
adsland.men adtech.de
adsloads.com adtology.com
adtech.fr agroeconom.kz
adtiger.tk alive-ua.com
adultfriendfinder.com alkoravto.ru
aero2.ru allboard.xobor.de
aerogo.com allforminecraft.ru
affiliate-fr.com allpdfmags.net
a.frcls.fr allstatesugarbowl.org
aihelen.net am15.net
akita.kz angel1777.kz
akusherok.ru apibrowsesmartne-a.akamaihd.net
alf-img.com
algerianembassy.co.in
allwomen.info
alta-realestate.com
amateurgalls.com
amazon-adsystem.com
amyfoxfitness.com
anal-acrobats.com
angigreene.com
animalrank.com
animaltoplist.com
aosexkontakte.net
apifasterlightin-a.akamaihd.net
apimountainbikei-a.akamaihd.net apimountainbikei-a.akamaihd.net
apiportalmorecom-a.akamaihd.net apiwebwebgetcom-a.akamaihd.net
apispringsmartne-a.akamaihd.net appsaurus.com
apparel-offer.com apptester.tk
apper.de arclk.net
applyneedy.xyz arenda-yeisk.ru
arendas.net arpelsreplica.xyz
arewater.com
artdeko.info artdeko.info
arvut.org asseenontvonline.ru
astana.xxxkaz.org astrochicks.com
atleticpharm.org autodo.info
atmovs.com autoua.top
ausmepa.org.au aviav.eu
avramstroy.ru aviav.org
avtoarenda.by avtocredit-legko.ru
avto-oligarh.ru avtointeres.ru
azartmix.com awency.com
azbaseimages.net azartclub.org
back.dog b00kmarks.com
bankiem.pl bag77.ru
bashtime.ru balans.shahterworld.org
bbtec.net beclean-nn.ru
besthomemadepornsites.com belstaffstore.online
bestcalovebracelet.cn
bestmobilityscooterstoday.com
bestofferswalkmydogouteveryday.gq
bestsexyblog.com bestsexyblog.com
bestssaker.com bet-prognoz.com
bibys.com beztuberkuleza.ru
binaryoptionscops.info bin-brokers.com
binomo.kz bjetjt.com
bioscorp.ru bloggedporn.com
bizfly.info blogsfunky672.weebly.com
biznesluxe.ru bodybuilding-shop.biz
blog-hits.com boltalko.xyz
blogporn.in bonux.nextview.ru
blogqpot.com brakehawk.com
bmw.afora.ru brandbucket.com
bmwhighperformers.com bscodecs.com
bocoarchives.org buchananshardware.com
bolitgorlo.net buehne-fuer-menschenrechte.de
bonzybuddy.com buyclomidonlaine.com
bookmark4you.com buyessay3.blogspot.ru
brainxs.us buy-loft.ru
brimstonehillfortress.org buytizanidineonline.blogspot.com
budilneg.xyz
bugof.gq
bum.com.ru
buyfriend.ru
buzz-porno.info buzz-porno.info
buzzsumo.com
byme.se byme.se
callstevens.com carstrends2015.com
cam-kontakte.org cartierreplica.pw
candlehandmade.com cartierreplica.xyz
canvas.gloverid.site caulderwoodkennels.com
cartierlove2u.com caveavins.fr
cartierring.xyz cayado.snn.gr
cenoval.ru cdncash.com
cerev.info cercacamion.it
cfjump.com chatseo.com
chorus.terakeet.com cheapestjerseys-wholesale.com
ciceros.co cheapmarmot.online
cineacademy.ru cheapmoncler.xyz
circlesl.com checkpagerank.net
citizenclsdriveri7.pen.io chiblackhawks-jerseys.com
cjmc.info cienum.fr
cleanpcnow.com cjs.com.ru
clickcash.com clash-clans.ru
clknsee.com clean-virus-mac.com
compliance-brian.top clickhype.com
coolbar.pro cmd.kz
cosmetic.donna7753191.ru cognitiveseo.com
countbertwistdisp26.soup.io compliance-alex.top
cvety24.by compliance-checker.info
cyprusbuyproperties.com compliance-don.top
cyse.tk compliance-don.xyz
compliance-irvin.xyz
compliance-josh.top
compliance-willy.top
concordexoticrentals.com
cookie-law-enforcement-aa.xyz
cookie-law-enforcement-ff.xyz
coolyarddecorations.com
country-chic.ru
cpabegins.ru
csgo4.win
czeshop.info czeshop.info
dailyrank.net daisye.top
dairyindia.in date-withme.com
damasarenai.info davebestdeals.com
dandiyabeats.in ddsoldes.fr
datract.com decenttools.com
deadlinkchecker.com dev33.dioniqlabb.se
decorationspcs.com dev-seo.blog
detki-opt.ru dfwu1013.info
discovertreasure-a.akamaihd.net dimaka.info
div.as djihispano.com
dkvorota.ru dlya-android.org
doctissimo.fr docs4all.com
downloader12.ru documentbase.net
downloadmefiranaratb1972.xpg.com.br domaincdn.xyz
downtuptv.gq dprtb.com
downvids.net dynainbox.com
driving.kiev.ua dyt.net
drivotracker.com eandsgallery.com
dumpsmania24.com earl-brown.info
dvrlists.com e-avon.ru
eaplay.ru e-collantes.com
easyshoppermac.com
e-commerce-seo1.com e-commerce-seo1.com
econom.co edelstahlschornstein-123.de
editors.choice6912650.hulfingtonpost.com eduserver.net
edudocs.net efnor-ac.com
ekspertmed.com ekto.ee
elektrischeziga.livejournal.com eladkarako.github.io
elitedollars.com elektrischezigaretten1.blogse.nl
elmacho.xyz
elmifarhangi.com elmifarhangi.com
elvel.com.ua elvenar.com
eropho.com emediate.eu
erotikstories.ru emerson-rus.ru
essaypro.com enginebay.ru
estelight.ru enskedesquashclub.se
eu-cookie-law.blogspot.com eonpal.com
event-tracking.com epicbrogaming.com
expresstoplivo.ru erot.co
ezrvrentals.com erotikchat-24.com
f012.de escort-russian.com
fashion-mk.net esfchat.tk
felizporno.com euromasterclass.ru
fenoyl.batcave.net excitacion.info
fermersovet.ru ezb.elvenmachine.com
fidelityfunding.com ezofest.sk
findanysex.com faracontrol.ir
findthe.pet fatfasts-4tmz.com
firstsiteguide.com fellowshipoftheminds.com
fiuxy.com fetroshok.ru
floating-share-buttons.com fickenbumsen.net
florida-tourism.net finansov.info
forensicpsychiatry.ru fitnesspiks.com
forex21.ru fiverr.com
forexgb.ru fix-website-errors.com
forpackningsutveckling.se flauntyoursite.com
forsex.info flavors.me
fotoxxxru.com fortwosmartcar.pw
free-fbook-traffic.com forum-engineering.ru
freelinkbuilding.website.tk forum.poker4life.ru
foto-sisek.porngalleries.top
foto-telok.net
foxtechfpv.com
free-share-buttons.blogspot.com
freesitetest.com freesitetest.com
freewlan.info free-video-tool.com
fugarif.ga freshberry.com.ua
futbolkisales.ru front.to
gamevalue7.weebly.com fxtips.ru
gamewrath.com g7m.pl
game300.ru
gamerscorps.com
gaming-journal.com
gay-file.com gay-file.com
gaz-voshod.ru geile-lelly.eu
ghernnqr.skyrock.com geileweiber.tk
gidonline.one gembird.com
gne8.com girlporn.ru
golfresa.lucania.se glcomputers.ru
gq-catalog.gq globalscam.ga
graphicwe.org globalsurfari.com
greatfind-a.akamaihd.net go2jump.org
gsasearchengineranker.site gombita.info
gsbs.com.ua gotorussia.com
gsmlab.pl gsasearchengineranker.xyz
guigyverpo.cf hamacapty.com
gyffu.com hard-porn.mobi
handicapvantoday.com hdapp1008-a.akamaihd.net
hayate.biz hdhc.ru
helpmymacfaster.trade hiwibyh.bugs3.com
herokuapp.com
hetmanship.xyz
hidemyass.com
himazin.info
hkladys.com
hledejvshopech.cz
hmmm.cz
hmywwogw.bloger.index.hr hmywwogw.bloger.index.hr
homik.pw hol.es
hostnow.men hotchatdate.com
hotdl.in howmuchdoestizanidinecost.blogspot.com
hoverboard360.de howtoclean.club
hully.altervista.org hptwaakw.blog.fc2.com
humanorightswatch.org htmlcorner.com
ibb.com.ua hustoon.over-blog.com
iboss.com ictizanidinehcl4mg.blogspot.com
ifirestarter.ru ideashome.id
igithab.com ikearugs.xyz
imgarit.pw ilovevitaly.com
imperia31.ru imagui.eu
impisr.ru inboxdollars.com
inbabes.sexushost.com
indiasourcemart.in
indo-export.ru indo-export.ru
infogame.name informatiecentro.be
infostatsvc.com infostatsvc.com
internet-apteka.ru innodgfdriverhm.aircus.com
invitefashion.com insta-add.pro
ipchicken.com intimshop-fantasy.ru
irkutsk.zrus.org intim-uslugi.info
irunfar.com istmira.ru
itch.io ixora.pro
itservicesthatworkforyou.com james13prix.info
jav-fetish.site jav-fetish.site
jav-way.site javspace.net
jmat.cn
johnrobertsoninc.com
jolic2.com jolic2.com
jrpmakati.com jrpmakati.com
kakadu-interior.com.ua junglenet-a.akamaihd.net
kamalsinha.com kaac.ru
karaganda.xkaz.org kartiniresto.com
kareliatobacco.ru katadhin.co
kashubadesign.ru
keyhantercume.com
kino2018.club kino2018.club
kinopolet.net kinoduh.ru
kleine-titten.biz kinoflux.net
kongruan.com kinostorm.net
konoplisemena.com knowyournextmove.com
koopilka.com koopilka.com
kotaku.com krasnodar.ru
krasivoe-hd.net kretpicf.pw
krasivye-devushki.net kupit-adenu.ru
kredit-blog.ru kustanay.kz
ku6.com laapp.com
kurbappeal.info lacloop.info
lacapilla.info lancheck.net
languagecode.com landoftracking.com
lapitec.eu laparfumotec.com
ledpolice.ru lazy-z.com
letmacwork.world lechenie-gemorroya.com
life.biz.ua lexaprogeneric.link
likesuccess.com lida-ru.com
linkarena.com link.ac
linkbuddies.com lisque.batcave.net
lirunet.ru live-sexcam.tk
livingroomdecor.info livingroomdecor.info
lombia.com lkbennettoutlet.online
longlifelomilomi.info louboutinbooties.xyz
lovi-moment.com.ua louboutinreplica.xyz
mainlinehobby.net love-baby.cz
makedo.ru lowephotos.info
low-format.ru
macfix.life
machicon-akihabara.info
magazintiande.ru
mahnwachen-helfen.info
manyresultshub-a.akamaihd.net manyresultshub-a.akamaihd.net
mararoom.ru mapquestz.us
marwer.info marcowebonyodziezowe.pl
massage-info.nl masturbate.co.uk
mastershef.club matsdale.com
matchpal-a.akamaihd.net max-p.men
mbiologi.ru
mediaoffers.click
medicineseasybuy.com medicineseasybuy.com
meget.co.za
meltwater.com
metallosajding.ru metallosajding.ru
metarip.ru michaelkorsoutletstore.net
mex-annushka.ru mielec.pl
millionare.com miniads.ca
mil-stak.com modnie-futbolki.net
minneapoliscopiers.com moi-glazki.ru
misswell.net mokrayakiska.com
mobilemedia.md monarhs.info
mobot.site moneyviking-a.akamaihd.net
mobstarr.com morefastermac.trade
moinozhki.com moroccosurfadventures.com
monclercoats.xyz
monclerjacketsoutlet.pw
moneyzzz.ru
mrinsidesales.com
muabancantho.info muabancantho.info
muschisexbilder.com musicktab.com
music.utrolive.ru
mustwineblog.com
muz-baza.net muz-baza.net
mydownlodablefiles.com myshopmatemac.com
myindospace.com myyour.eu
mypets.by nagdak.ru
nailsimg.com naturtreenspicerx.pw
napalm51.nut.cc neobux-bg.info
narosty.com new-apps.ru
nikitabuch.com newstaffadsshop.club
niroo.info nightvision746.weebly.com
nordvpn.com nippon-bearings.ru
notaria-desalas.com nodding-passion.tk
odesproperty.com o333o.com
offtime.ru oakleyglassesonline.us
oil-td.ru obuv-kupit.ru
okonich.com.ua offf.info
openmediasoft.com officedocuments.net
orel-reshka.net okroshki.ru
ostrovtaxi.ru ok.ru
outshop.ru olympescort.com
pammik.ru online-hd.pl
pandarastore.top osoznanie-narkotikam.net
parajumpersoutlet.online owohho.com
pateaswing.com oz-offers.com
p-business.ru paintingplanet.ru
phuketscreen.com panicatack.com
picquery.com partner-pop.men
partner-trustworthy.men
pb-dv.ru
pcads.ru
pcgroup.com.uy
pc-test.net
pdn-4.com
pechikamini.ru
pflexads.com
pics-group.com pics-group.com
pinsdaddy.com pigrafix.at
pintattoos.com pio.polytopesexempt.com
piski.top piski.top
pizdopletka.club pixgood.com
pladform.ru playboyfiles.xblog.in
plusnetwork.com pogruztehnik.ru
pobeiranie.pl popunder.net
polimga.pw
popup-fdm.xyz
porndairy.in porndairy.in
pornhub-forum.ga pornoblood.com
pornogad.com pornoforadult.com
pornogratisdiario.com
pornokorol.com
positive2b.ru positive2b.ru
pozdrawleniya.com powc.r.ca.d.sendibm2.com
prefersurvey.net praisong.net
preventheadacheguide.info pravoholding.ru
producm.ru princeadvantagesales.com
pronorm.fr privhosting.com
pro-okis.ru prize44.com
prodvigator.ua
proekt-gaz.ru
prostitutki-tyumeni.org prostitutki-tyumeni.org
pskcijdc.bloger.index.hr pro-tec.kz
ptr.ruvds.com pssucai.info
pwwysydh.com pussyfleet.com
qcstrtvt.bloger.index.hr putevka24.ru
q-moto.ru qexyfu.bugs3.com
qpypcx.com rankia.com
qualitymarketzone.com rapidgator-porn.ga
quizzitch.net razleton.com
randalljhoward.com registry-clean-up.net
rangjued.com reklama1.ru
rank-checker.online remontbiz.ru
real-time-analytics.com remontgruzovik.ru
rebrand.ly remote-dba.de
recordpage-a.akamaihd.net rentaremotecomputer.com
reimageplus.com ribieiendom.no
riders.ro rimedia.org
ringtonepartner.com roll123.com
rostov.xrus.org royalvegascasino.com
rustic-quiver.win ruf777.com
s1z.ru rusprostitute.com
saecsa.co
safe-app.net safe-app.net
sajatvelemeny.com sa-live.com
salmonfishingsacramentoriver.com samoiedo.it
sampleletters.net sampleletters.net
santasgift.ml sanidumps.com
sanyuprojects.com sankt-peterburg.nodup.ru
sbwealthsolutions.ca sashagreyblog.ga
scanner-alexa.top scanner-brian.top
scanner-walt.top scanner-margo.top
scat.porn sdelai-prosto.ru
scopich.com searchengineranker.email
searchwebknow-a.akamaihd.net search.xtconnect.com
seasaltwithfood.com security60-e.com
service.adtech.us seo-2-0.com
servicecenter.co.ua seocheki.net
servingnotice.com seofied.com
sevendays.com.ua seojokes.net
sex-foto.pw seonetwizard.com
sexs-foto.com sergiorossistore.online
sexy.babes.frontend-stack.top serviporno.com
sex-tracker.de
sexy-screen-savers.com sexy-screen-savers.com
sexytrend.ru shemale-sex.net
shemalegalls.blogporn.in shmetall.com.ua
shoesonlinebuy.cn shoesonlinebuy.cn
shohanb.com shoesonlinebuy.xyz
shymkent.xkaz.org shymkent.xkaz.org
simply.net sibvitr.ru
sim-service.net signoredom.com
silvercash.com
simpoed.ufop.br
sims-sims.ru sims-sims.ru
smart-balancewheel.com sinestesia.host.sk
snts.shell-pmr.ru sisi-go.ru
snyatie-lomki-v-stacionare.ru sitopreferito.it
sobecjvuwa.com.ru skachat-besplatno-obrazcy.ru
social-s-ggg.xyz slowmacfaster.trade
socialtrade.biz small-games.biz
softonicads.com snsdeainavi.info
soheavyblog.com socas.pluto.ro
socialmonkee.com
softomix.com
spacash.com spacash.com
space4update.pw spammen.de
specialfinanceoffers.com spb.afora.ru
squidoo.com spb-plitka.ru
sribno.net spb.ru
stal-rulon.ru sport-video-obzor.ru
statoutlook.info stop-gepatit.te.ua
stockspmb.info strigkaomsk.ru
stroy-portal22.ru strongholdsb.ru
sumo.com sugvant.ru
swsociety.se sukarame.net
symphonyintegratedhealthcare.com superiends.org
tako3.com supervesti.ru
td-l-market.ru support.nopeas.sk
tech4master.com suture.co
telsis.com svetodiodoff.ru
template-kid.com syndicate.fun
tagil.zrus.org
tanieaukcje.com.pl
tattomedia.com
taxi-v-eisk.ru
telefonsex-ohne0900.net
thaisamkok.com thaisamkok.com
thaismartloan.com thebestweightlosspills.ovh
thenetinfo.com the-trader.net
thepantonpractice.co.uk thexart.club
thepokertimer.com titelhelden.eu
ticketsys.inetwd.com tizanidine4mgstreetprice.blogspot.com
titslove.yopoint.in tizanidinenarcotic.blogspot.com
tizanidineonline.blogspot.com tkanorganizma.ru
tizanidinepain.blogspot.com tk-assortiment.ru
tizanidinevssoma.blogspot.com tksn.ru
tomck.com tonerbox.kz
toon-families.com top10registrycleaners.com
tracfone.com tracfone.com
tracksurf.daooda.com track2.shop
traderzplanet.in truemfilelj.gq
trafaret74.ru try-rx.com
trafficjunky.net tubo360.com
trustedhealthtips.com tuckpointingmasonrysystems.com
tt-ipd.info tula.mdverey.ru
turbo-suslik.org turn-up-life.life
turizm.bz tvorozhnaja-zapekanka-recept.ru
twojebook.pl ua-company.ru
uchebavchehii.ru ultimateclassicrock.com
unrealcommander.biz ultimatesetnewfreeallsoftupgradesystems.pw
uogonline.com underthesite.com
uptimechecker.com ural-buldozer.ru
usiad.net urdoot.win
ussearche.cf veopornogratis.xxx
uytmaster.ru versaut.xxx-cam.webcam
valueclick.com videospornogratisx.net
vapsy.com vigrx-original.ru
vellings.info vinylvault.co.uk
veselokloun.ru visitcambridge.org
vesnatehno.ru vizag.kharkov.ua
viagraneggrx.com vkonche.com
viandpet.com vmnmvzsmn.over-blog.com
viddyoze.com vriel.batcave.net
videochaty.ru vysigy.su
video-woman.com weightatraining.com
viel.su weprik.ru
vitoriacabos.com wfb.hatedriveapart.com
vsexkontakte.net whatistizanidinehclusedfor.blogspot.com
warningzscaler.heraeus.com whiteelephantwellington.com
webshoppermac.com white-truck.life
website-datenbank.de winwotgold.pl
wesharepics.com wnoz.de
wholesalejerseys-cheapest.com woman-h.ru
wieseversa.no world-mmo.com
witherrom55.eklablog.fr wpsecurity.website
wonderfulflowers.biz wttavern.com
workle.website ww1943.ru
worldhistory.biz xblog.in
worldtraveler.world xn-----7kceclhb4abre1b4a0ccl2fxch1a.xn--p1ai
wwwadultcheck.com xn--80aaaks3bbhabgbigamdr2h.xn--p1ai
xfire.com xn--80ab4aa2g.xn--p1ai
xgames-04.com xn--c1acygb.xn--p1ai
xkaz.org xn--e1afanlbnfckd7c3d.xn--p1ai
x-musics.com xtraffic.plus
xn----7sbaaabaei0cc8aj5bj0bncejx.xn--p1ai yellocloud.be
xn--b1ag5cfn.xn--p1ai youdao.com
xn----ctbigni3aj4h.xn--p1ai youporn-ru.com
xn--d1abj0abs9d.in.ua ypmuseum.ru
xn----itbeirbjbi7bc6bh2d.xn--p1ai zarajbuilders.com
xnxxandxvideos.com zawyna.ua
xtube.com zs2vm.top
xtubeporno.net zverokruh-shop.cz
xvideosporn.biz
xxart.ru
youghbould.wordpress.com
yourdesires.ru
yourporngay.com
yourserverisdown.com
youtube-downloader.savetubevideo.com
za-music.mymobiplanet.com
zapiszto.pl
zastroyka.org
zetgie.com.pl
zigarettenonlinekaufen1.blox.pl
zvetki.ru

View file

@ -1,250 +1,250 @@
0daymusic.org 100dollars-seo.com
20pascals.nl 101raccoon.ru
28n2gl3wfyb0.ru 123cha.com
2015god.org
2pxg8bcf.top 2pxg8bcf.top
4ur.click 5000-cotydzien.com
5elementov.ru adclickthru.net
7search.com add-add.men
8lufu.com ads.tremorhub.com
addblueoff.com.ua advokateg.ru
adverster.com affrh2015.com
afslankpillen2017nl.eu alborzan.com
agadelha.com.br alert-fdm.xyz
algerianembassy.co.in alert-hgd.xyz
alphacarolinas.com alienwheel.es
alpharma.net allforminecraft.ru
amazingninja.com anal-acrobats.com
amehdaily.com animali.deagostinipassion.it
android-style.com anti-virus-removal.info
android-vsem.org aosheng-tech.com
animalrank.com apiholdingmypage-a.akamaihd.net
apartmentbay.ru apiwebwebgetcom-a.akamaihd.net
appsaurus.com arendovalka.xyz
apptester.tk artel116.ru
ap.senai.br asdfg.pro
arabsexxxtube.com asrvvv-a.akamaihd.net
arabseyes.com astana.xxxkaz.org
arclk.net auto.rusvile.lt
arenda-avtoprokat-krasnodar.ru autowebmarket.com.ua
arpelsreplica.xyz availit.weebly.com
autobrennero.it bannertesting.com
autoloans.com beachdriveblog.com
aviav.ru.com betune.onlinewebshop.net
avtolombard-krasnodar.ru bimatoprost-careprost.com.ua
ayodhya.co bitcoins-live.ru
beauty-b0x.pl bmw.afora.ru
beclean-nn.ru bmwhighperformers.com
begalka.xyz bombla.org
bestplacetobuyeriacta.jw.lt boo-arts.com
betonka.pro browserprotecter.com
bfz.biz businescoop.men
brains2.biz buyparajumpers.online
brainsandeggs.blogspot.com bwlx.prepedu.cn
btc4u.ru carrauterie.be
bumble.cheapwebsitehoster.com cartierlovestore.com
buydissertation.net cdnnetwok.xyz
bvlgaribracelet.xyz chatroulette.life
bvlgariring.xyz chidporn.com
callstevens.com compiko.info
camdolls.com compliance-julia.top
cartiertrinity.xyz constantaservice.net
centrumcoachingu.com cordstrap.cc
cheapjerseysa.com cornomase.win
cheapjerseysap.com cosmeticswomens-womensports.rhcloud.com
cheap-pills-norx.com customcatchcan.com
cibpenonptib.flu.cc cyprusbuyproperties.com
clothesforcash.com decoratinghomes.ga
compliance-checker-7.info decorationspcs.com
compliance-elena.top de.zapmeta.com
cosmetic.donna7753191.ru discountbarbour.online
counterbot.com domik-derevne.ru
crazyprotocol.com domination.ml
creams.makeforum.eu domoysshop.ru
d2jsp.org donvito.unas.cz
dev78.dioniqlabb.se doxysexy.com
digest-project.ru easyukraine.com
discountliv.com
discovertreasure-a.akamaihd.net
divatraffic.com
dominterior.org
dosug-lux.ru
e-buyeasy.com
ecommerce-seo.org ecommerce-seo.org
education-cz.ru editors.choice6912650.hulfingtonpost.com
enge-fotzen.info educatemetv.com
ereko.ru eloxal.ru
essayservicewriting.org energydiet24.ru
evidencecleanergold.com erotikchat-24.com
eyelike.com.ua ertelecom.ru
falllow.gq europages.com.ru
farm26.ru extrabot.com
fatmaelgarny.com ezigarettenshop2.postbit.com
firstdrugmall.ru falcoware.com
fiuxy.com fetishinside.com
fivedwld.cf filerockstar298.weebly.com
food.dtu.dk filesdatabase.net
footballfarrago.com fishtauto.ru
foxweber.com forex21.ru
frcls.fr forex.osobye.ru
freesitetest.com forpackningsutveckling.se
free-today.com forum20.smailik.org
frvo.alptandem.ru freelifetimefuckbook.com
fuckmill.com freshberry.com.ua
gallery.rennlist.com fun-mobi.pl
gameprimary.com gambarkatabaru.com
gay-site.store gamerscorps.com
gazoblok.net.ua gazporno.com
ge0ip.com ge0ip.org
generic-pills-online.com gearcraft.us
germetiki.com.ua gg.zzyjxs.com
getaclueamerica.com ghostvisitor.com
gourcy.altervista.org girlsfuckdick.com
glall.ru
glcomputers.ru
gosarhivrt.ru
graphics8.info graphics8.info
grtyi.com gribkovye-zabolevaniya.com
gsasearchengineranker.top gsou.cf
hannasolution.ru gwhwpxbw.bloger.index.hr
haveinc.xyz hifidesign.ru
hchha.com hildinghr.se
hentai-manga.porn homelygarden.com
homeinns.com homik.pw
hostingclub.lk hotblognetwork.com
house.sieraddns.com howtoclean.club
hoverboardforsaledirect.com hreade.com
hoztorg-opt.ru hubbble.com
hspline.com inboundlinks.win
humanelydrew.com
ifirestarter.ru
igtools.club
imfamous.info
incest-ru.com
infostatsvc.com
int.search.mywebsearch.com
islandminingsupply.wordpress.com
jav-fetish.site jav-fetish.site
javidol.site jennyfire.ru
kidskunst.info kaidalibor.de
kopihijau.info kamen-e.ru
kunstaktien.info keywordglobal.co.za
lafourmiliaire.com kimcurlrvsms.com
letmacwork.world krasnodar.zrus.org
kurwa.win
la-fa.ru
lazy-z.com
legionalpha.com
lifebyleese.com lifebyleese.com
liffa.ru linkbux.ru
linkpulse.com linksharingt.com
lombia.co liran-locks.com
louisvuittonoutletstore.net littlecity.ch
ltvperf.com liver-chintai.org
lyngdalhudterapi.no lonely-mature.com
matsdale.com mabdoola.blogspot.com
mb140.ru madot.onlinewebshop.net
medmajor.ru mahnwachen-helfen.info
meduza-consult.ru marmitaco.cat
menetie.ru mebelcomplekt.ru
metallosajding.ru medicovi.com
mexicotravelnet.com mega-polis.biz.ua
mezaruk.info merryhouse.co.uk
mhtr.be mielec.pl
michaelkorssaleoutletonline.net minyetki.ru
militarysale.pro mmofreegames.online
mmgq.ru monclercoats.xyz
mobifunapp.weebly.com montredemarque.nl
mojpregled.com morefastermac.trade
moviezbonkerssk.cf moscow.xrus.org
mp3ringtone.info movies-in-theaters.net
msk.afora.ru my-bc.ru
mustwineblog.com mydoctorok.ru
my-cash-bot.co myonigroup.com
mygameplus.com narkologiya-peterburg.ru
mylida.org
myshopmatemac.com
najaden.no
nerudlogistik.ru
netanalytics.xyz
nextbackgroundcheck.gq
nextrent-crimea.ru
nfljerseyscheapbiz.us nfljerseyscheapbiz.us
nrv.co.za nfvsz.com
nudepatch.net ningessaybe.me
obesidadealgarve.com nuup.info
ohmyrings.com obnal.org
oktube.ru offer.camp
onlinewritingjobs17.blogspot.ru okel.co
openfrost.com online-podarki.com
orsonet.ru onlineporno.site
partners-ship.pro open-odyssey.org
popunder.ru origin-my.ru
pornosemki.info ostrovtaxi.ru
porodasobak.net paidonlinesites.com
productarium.com paintingplanet.ru
prokotov.com parajumpersoutlet.online
promgirldresses.xyz pattersonsweb.com
rapidokbrain.com pc-test.net
registry-clean-up.net piccdata.com
respublica-otel.ru picturesboss.com
riders.ro play-movie.pl
robertefuller.com ploenjitmedia.azurewebsites.net
rockingclicks.com podshipniki-nsk.ru
scanner-josh.top poppen-nw.net
scanner-walter.top prointer.net.ua
sdelai-prosto.ru ptr.ruvds.com
searchimpression.com pulseonclick.com
searchinquire.com qexyfu.bugs3.com
seorankinglinks.us rankexperience.com
ranking2017.ga
rankings-analytics.com
realmonte.net
reeyanaturopathy.com
regionshop.biz
remontvsamare.su
ruclicks.com
sa-live.com
sbprabooks.com
scanner-jane.top
scanner-viktor.top
scansafe.net
scenicmissouri.us
secretscook.ru
seorank.info
seo-traffic-ranking.info seo-traffic-ranking.info
serw.clicksor.com shlyahten.ru
sevendays.com.ua shopfishing.com.ua
sex-foto.pw sibecoprom.ru
shemalegalls.blogporn.in sierraapps.com
sibdevice.ru siha.de
simpoed.ufop.br silktide.com
snjack.info slowmac.tech
snow.nvr163.com snip.tw
social-s-hhh.xyz sonata-arctica.wz.cz
soft-program.com sotechco.co
songoo.wz.cz space4updating.win
sosdepotdebilan.com stroilka.info
splendorsearch-a.akamaihd.net stuff-about-money.com
spyfu.com supermesta.ru
spywareit.com superoboi.com.ua
srgwebmail.nl support.nopeas.sk
startwp.org svtrd.com
steame.ru tanieaukcje.com.pl
strv.se tattomedia.com
studiofmp.com tizanidine4mgtablets.blogspot.com
suhanpacktech.com tizanidinedruginteractions.blogspot.com
supers.com.ua tizanidinevsvalium.blogspot.com
surgut.zrus.org tn811.us
surintech.ac.th topkarkas.com
teesdaleflyballclub.co.uk traxdom.ru
teslathemes.com trk-4.net
thefotosgratis.eu trustl.life
tiandeural.ru try-rx.com
toloka.hurtom.com umg-stroy.ru
torrentgamer.net uni.me
torrents-tracker.com unpredictable.ga
tracfone.com uptime-delta.net
trafficjunky.net urccvfmc.bloger.index.hr
turkeyreport.tk uytmaster.ru
twinderbella.com valkiria-tk.ru
ultimatesetnewfreeallsoftupgradesystems.pw vedomstvo.net
uptime-gamma.net vektorpress.ru
urldelivery.com velobikestock.com
userequip.com vladhistory.com
vduplo.ru
via-energy-cumpara.com
vseigru.one vseigru.one
vzubah.com watchmygf.net
wesharepics.site website-analytics.online
wfb.hatedriveapart.com
wildworld.site
wleuaprpxuvr.ga wleuaprpxuvr.ga
worst-sites.online
xn--lifehacer-1rb.com
xtube.com xtube.com
xxx-cam.webcam yottos.com
yatrk.xyz yourporngay.com
yellowfootprints.com yoursearch.me
zaloro.com yousense.info
zapatosenventa.info youtuhe.com
zapiszto.pl
zazagames.org
zerocash.msk.ru zerocash.msk.ru
zophim.me zeroredirect6.com
zscalertwo.net zeroredirect7.com
zhongwenlink.com
zverokruh-shop.cz

View file

@ -1,21 +1,11 @@
<!DOCTYPE html> <html>
<html>
<head>
<title>Welcome to NginX</title>
</head>
<body>
<div align=center>
<h1>Welcome to the NginX Ultimate Bad Bot Blocker</h1>
<p>This is merely used for testing !!!</p>
</body>
</html><html>
<head><title>503 Service Temporarily Unavailable</title></head> <head><title>503 Service Temporarily Unavailable</title></head>
<body bgcolor="white"> <body bgcolor="white">
<center><h1>503 Service Temporarily Unavailable</h1></center> <center><h1>503 Service Temporarily Unavailable</h1></center>
<hr><center>nginx/1.14.2</center> <hr><center>nginx/1.14.2</center>
</body> </body>
</html> </html>
<html> l>
<head><title>503 Service Temporarily Unavailable</title></head> <head><title>503 Service Temporarily Unavailable</title></head>
<body bgcolor="white"> <body bgcolor="white">
<center><h1>503 Service Temporarily Unavailable</h1></center> <center><h1>503 Service Temporarily Unavailable</h1></center>
@ -126,4 +116,14 @@
<h1>Welcome to the NginX Ultimate Bad Bot Blocker</h1> <h1>Welcome to the NginX Ultimate Bad Bot Blocker</h1>
<p>This is merely used for testing !!!</p> <p>This is merely used for testing !!!</p>
</body> </body>
</html><!DOCTYPE html>
<html>
<head>
<title>Welcome to NginX</title>
</head>
<body>
<div align=center>
<h1>Welcome to the NginX Ultimate Bad Bot Blocker</h1>
<p>This is merely used for testing !!!</p>
</body>
</html> </html>

View file

@ -1,21 +1,11 @@
<!DOCTYPE html> <html>
<html>
<head>
<title>Welcome to NginX</title>
</head>
<body>
<div align=center>
<h1>Welcome to the NginX Ultimate Bad Bot Blocker</h1>
<p>This is merely used for testing !!!</p>
</body>
</html><html>
<head><title>503 Service Temporarily Unavailable</title></head> <head><title>503 Service Temporarily Unavailable</title></head>
<body bgcolor="white"> <body bgcolor="white">
<center><h1>503 Service Temporarily Unavailable</h1></center> <center><h1>503 Service Temporarily Unavailable</h1></center>
<hr><center>nginx/1.14.2</center> <hr><center>nginx/1.14.2</center>
</body> </body>
</html> </html>
<html> l>
<head><title>503 Service Temporarily Unavailable</title></head> <head><title>503 Service Temporarily Unavailable</title></head>
<body bgcolor="white"> <body bgcolor="white">
<center><h1>503 Service Temporarily Unavailable</h1></center> <center><h1>503 Service Temporarily Unavailable</h1></center>
@ -126,4 +116,14 @@
<h1>Welcome to the NginX Ultimate Bad Bot Blocker</h1> <h1>Welcome to the NginX Ultimate Bad Bot Blocker</h1>
<p>This is merely used for testing !!!</p> <p>This is merely used for testing !!!</p>
</body> </body>
</html><!DOCTYPE html>
<html>
<head>
<title>Welcome to NginX</title>
</head>
<body>
<div align=center>
<h1>Welcome to the NginX Ultimate Bad Bot Blocker</h1>
<p>This is merely used for testing !!!</p>
</body>
</html> </html>

View file

@ -1,2 +1,2 @@
104.154.120.187 0; 35.188.73.34 0;
127.0.0.1 0; 127.0.0.1 0;

Binary file not shown.

Binary file not shown.

View file

@ -4,7 +4,7 @@
### PLEASE READ CONFIGURATION INSTRUCTIONS BELOW THOROUGHLY :exclamation: ### PLEASE READ CONFIGURATION INSTRUCTIONS BELOW THOROUGHLY :exclamation:
_______________ _______________
#### Version: V4.2019.07.1733 #### Version: V4.2019.07.1734
#### Bad Referrer Count: 6717 #### Bad Referrer Count: 6717
#### Bad Bot Count: 556 #### Bad Bot Count: 556
____________________ ____________________

View file

@ -4,7 +4,7 @@
### PLEASE READ CONFIGURATION INSTRUCTIONS BELOW THOROUGHLY :exclamation: ### PLEASE READ CONFIGURATION INSTRUCTIONS BELOW THOROUGHLY :exclamation:
_______________ _______________
#### Version: V4.2019.07.1733 #### Version: V4.2019.07.1734
#### Bad Referrer Count: 6717 #### Bad Referrer Count: 6717
#### Bad Bot Count: 556 #### Bad Bot Count: 556
____________________ ____________________

View file

@ -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) ##### 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.07.1733 #### Version: V4.2019.07.1734
#### Bad Referrer Count: [6717](https://raw.githubusercontent.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/master/_generator_lists/bad-referrers.list) #### Bad Referrer Count: [6717](https://raw.githubusercontent.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/master/_generator_lists/bad-referrers.list)
#### Bad Bot Count: [556](https://raw.githubusercontent.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/master/_generator_lists/bad-user-agents.list) #### Bad Bot Count: [556](https://raw.githubusercontent.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/master/_generator_lists/bad-user-agents.list)
____________________ ____________________

View file

@ -3,7 +3,7 @@
# EASY CONFIGURATION INSTRUCTIONS FOR STOPPING GOOGLE ANALYTICS "GHOST" SPAM # EASY CONFIGURATION INSTRUCTIONS FOR STOPPING GOOGLE ANALYTICS "GHOST" SPAM
_______________ _______________
#### Version: V4.2019.07.1733 #### Version: V4.2019.07.1734
#### Bad Referrer Count: 6717 #### Bad Referrer Count: 6717
#### Bad Bot Count: 556 #### Bad Bot Count: 556
____________________ ____________________

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:51 SAST 2019 ### Updated: Tue Jul 2 13:44:31 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V3.2019.07.1733 ### Version: V3.2019.07.1734
### Updated: Tue Jul 2 13:14:52 SAST 2019 ### Updated: Tue Jul 2 13:44:33 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -4,8 +4,8 @@
### VERSION INFORMATION # ### VERSION INFORMATION #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:51 SAST 2019 ### Updated: Tue Jul 2 13:44:31 SAST 2019
### Bad Referrer Count: 6717 ### Bad Referrer Count: 6717
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################

View file

@ -6,8 +6,8 @@
### Version Information # ### Version Information #
################################################### ###################################################
### Version: V4.2019.07.1733 ### Version: V4.2019.07.1734
### Updated: Tue Jul 2 13:14:53 SAST 2019 ### Updated: Tue Jul 2 13:44:34 SAST 2019
### Bad Bot Count: 556 ### Bad Bot Count: 556
################################################### ###################################################
### Version Information ## ### Version Information ##