mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-09 13:55:41 +00:00
V3.2017.10.919 [ci skip]
This commit is contained in:
parent
746ec4817a
commit
d7a6dc193b
49 changed files with 198 additions and 126 deletions
|
@ -2,8 +2,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.03
|
||||
### Updated: Mon Aug 21 11:29:32 SAST 2017
|
||||
### Version: V3.2017.04
|
||||
### Updated: Mon Oct 02 16:41:32 SAST 2017
|
||||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
@ -42,18 +42,25 @@
|
|||
|
||||
# Think very carefully before you add any word here
|
||||
|
||||
"~*adultgalls" 1;
|
||||
"~*amateurxpass" 1;
|
||||
"~*bigblackbooty" 1;
|
||||
"~*blacktits" 1;
|
||||
"~*cookie\-law\-enforcement" 1;
|
||||
"~*free\-share\-buttons" 1;
|
||||
"~*free\-social\-buttons" 1;
|
||||
"~*fuck\-paid\-share\-buttons" 1;
|
||||
"~*ilovevitaly" 1;
|
||||
"~*law\-enforcement\-bot" 1;
|
||||
"~*law\-enforcement\-check" 1;
|
||||
"~*share\-buttons\-for\-free" 1;
|
||||
"~*webfuck" 1;
|
||||
"~*xxxrus" 1;
|
||||
"~*zeroredirect" 1;
|
||||
# *****************************************************************************************
|
||||
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
|
||||
# *****************************************************************************************
|
||||
|
||||
# As you can see in the examples below the word "adultgalls" is entered with a preceding \b and an ending \b
|
||||
# this makes it now "\badultgalls\b". It is crucial to use the word boundaries regex formatting.
|
||||
|
||||
"~*\badultgalls\b" 1;
|
||||
"~*\bamateurxpass\b" 1;
|
||||
"~*\bbigblackbooty\b" 1;
|
||||
"~*\bblacktits\b" 1;
|
||||
"~*\bcookie\-law\-enforcement\b" 1;
|
||||
"~*\bfree\-share\-buttons\b" 1;
|
||||
"~*\bfree\-social\-buttons\b" 1;
|
||||
"~*\bfuck\-paid\-share\-buttons\b" 1;
|
||||
"~*\bilovevitaly\b" 1;
|
||||
"~*\blaw\-enforcement\-bot\b" 1;
|
||||
"~*\blaw\-enforcement\-check\b" 1;
|
||||
"~*\bshare\-buttons\-for\-free\b" 1;
|
||||
"~*\bwebfuck\b" 1;
|
||||
"~*\bxxxrus\b" 1;
|
||||
"~*\bzeroredirect\b" 1;
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.02
|
||||
### Updated: Mon Aug 21 11:29:32 SAST 2017
|
||||
### Version: V3.2017.03
|
||||
### Updated: Mon Oct 02 16:50:32 SAST 2017
|
||||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
@ -27,8 +27,18 @@
|
|||
# For example some-veryvery-randomwebsitename-thatdoesnotexist4.com should be entered as
|
||||
# some\-veryvery\-randomwebsitename\-thatdoesnotexist4\.com
|
||||
|
||||
"~*someveryveryrandomwebsitenamethatdoesnotexist1\.com" 1;
|
||||
"~*someveryveryrandomwebsitenamethatdoesnotexist2\.com" 1;
|
||||
"~*someveryveryrandomwebsitenamethatdoesnotexist3\.com" 1;
|
||||
"~*some\-veryvery\-randomweb\-sitenamethatdoesnotexist4\.com" 1;
|
||||
# *****************************************************************************************
|
||||
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
|
||||
# *****************************************************************************************
|
||||
|
||||
# As you can see in the examples below the domain "someveryveryrandomwebsitenamethatdoesnotexist1\.com"
|
||||
# is entered with a preceding \b and an ending \b
|
||||
# this makes it now "\bsomeveryveryrandomwebsitenamethatdoesnotexist1\.com\b".
|
||||
# It is crucial to use the word boundaries regex formatting.
|
||||
|
||||
|
||||
"~*\bsomeveryveryrandomwebsitenamethatdoesnotexist1\.com\b" 1;
|
||||
"~*\bsomeveryveryrandomwebsitenamethatdoesnotexist2\.com\b" 1;
|
||||
"~*\bsomeveryveryrandomwebsitenamethatdoesnotexist3\.com\b" 1;
|
||||
"~*\bsome\-veryvery\-randomweb\-sitenamethatdoesnotexist4\.com\b" 1;
|
||||
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.01
|
||||
### Updated: Mon Aug 21 11:31:32 SAST 2017
|
||||
### Version: V3.2017.02
|
||||
### Updated: Mon Oct 02 16:52:32 SAST 2017
|
||||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
@ -28,5 +28,12 @@
|
|||
# For example myfirstowndomainname.com should be entered as myfirstowndomainname\.com
|
||||
# and my-second-owndomainname.com should be entered as my\-second\-owndomainname\.com
|
||||
|
||||
"~*myfirstowndomainname\.com" 0;
|
||||
"~*my\-second\-owndomainname\.com" 0;
|
||||
# *****************************************************************************************
|
||||
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
|
||||
# *****************************************************************************************
|
||||
|
||||
# As you can see in the examples below the domain "myfirstowndomainname\.com" is entered with a preceding \b and an ending \b
|
||||
# this makes it now "\bmyfirstowndomainname\.com\b". It is crucial to use the word boundaries regex formatting.
|
||||
|
||||
"~*\bmyfirstowndomainname\.com\b" 0;
|
||||
"~*\bmy\-second\-owndomainname\.com\b" 0;
|
||||
|
|
|
@ -26,4 +26,4 @@
|
|||
# Only add actual IP addresses and ranges here
|
||||
|
||||
111.111.111.111 0;
|
||||
35.184.144.134 0;
|
||||
104.197.209.254 0;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.10.918
|
||||
### Updated: Mon Oct 2 15:50:16 SAST 2017
|
||||
### Version: V3.2017.10.919
|
||||
### Updated: Mon Oct 2 17:04:04 SAST 2017
|
||||
### Bad Referrer Count: 5839
|
||||
### Bad Bot Count: 515
|
||||
###################################################
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.03
|
||||
### Updated: Mon Aug 21 11:29:32 SAST 2017
|
||||
### Version: V3.2017.04
|
||||
### Updated: Mon Oct 02 16:41:32 SAST 2017
|
||||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
@ -42,18 +42,25 @@
|
|||
|
||||
# Think very carefully before you add any word here
|
||||
|
||||
"~*adultgalls" 1;
|
||||
"~*amateurxpass" 1;
|
||||
"~*bigblackbooty" 1;
|
||||
"~*blacktits" 1;
|
||||
"~*cookie\-law\-enforcement" 1;
|
||||
"~*free\-share\-buttons" 1;
|
||||
"~*free\-social\-buttons" 1;
|
||||
"~*fuck\-paid\-share\-buttons" 1;
|
||||
"~*ilovevitaly" 1;
|
||||
"~*law\-enforcement\-bot" 1;
|
||||
"~*law\-enforcement\-check" 1;
|
||||
"~*share\-buttons\-for\-free" 1;
|
||||
"~*webfuck" 1;
|
||||
"~*xxxrus" 1;
|
||||
"~*zeroredirect" 1;
|
||||
# *****************************************************************************************
|
||||
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
|
||||
# *****************************************************************************************
|
||||
|
||||
# As you can see in the examples below the word "adultgalls" is entered with a preceding \b and an ending \b
|
||||
# this makes it now "\badultgalls\b". It is crucial to use the word boundaries regex formatting.
|
||||
|
||||
"~*\badultgalls\b" 1;
|
||||
"~*\bamateurxpass\b" 1;
|
||||
"~*\bbigblackbooty\b" 1;
|
||||
"~*\bblacktits\b" 1;
|
||||
"~*\bcookie\-law\-enforcement\b" 1;
|
||||
"~*\bfree\-share\-buttons\b" 1;
|
||||
"~*\bfree\-social\-buttons\b" 1;
|
||||
"~*\bfuck\-paid\-share\-buttons\b" 1;
|
||||
"~*\bilovevitaly\b" 1;
|
||||
"~*\blaw\-enforcement\-bot\b" 1;
|
||||
"~*\blaw\-enforcement\-check\b" 1;
|
||||
"~*\bshare\-buttons\-for\-free\b" 1;
|
||||
"~*\bwebfuck\b" 1;
|
||||
"~*\bxxxrus\b" 1;
|
||||
"~*\bzeroredirect\b" 1;
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.02
|
||||
### Updated: Mon Aug 21 11:29:32 SAST 2017
|
||||
### Version: V3.2017.03
|
||||
### Updated: Mon Oct 02 16:50:32 SAST 2017
|
||||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
@ -27,8 +27,18 @@
|
|||
# For example some-veryvery-randomwebsitename-thatdoesnotexist4.com should be entered as
|
||||
# some\-veryvery\-randomwebsitename\-thatdoesnotexist4\.com
|
||||
|
||||
"~*someveryveryrandomwebsitenamethatdoesnotexist1\.com" 1;
|
||||
"~*someveryveryrandomwebsitenamethatdoesnotexist2\.com" 1;
|
||||
"~*someveryveryrandomwebsitenamethatdoesnotexist3\.com" 1;
|
||||
"~*some\-veryvery\-randomweb\-sitenamethatdoesnotexist4\.com" 1;
|
||||
# *****************************************************************************************
|
||||
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
|
||||
# *****************************************************************************************
|
||||
|
||||
# As you can see in the examples below the domain "someveryveryrandomwebsitenamethatdoesnotexist1\.com"
|
||||
# is entered with a preceding \b and an ending \b
|
||||
# this makes it now "\bsomeveryveryrandomwebsitenamethatdoesnotexist1\.com\b".
|
||||
# It is crucial to use the word boundaries regex formatting.
|
||||
|
||||
|
||||
"~*\bsomeveryveryrandomwebsitenamethatdoesnotexist1\.com\b" 1;
|
||||
"~*\bsomeveryveryrandomwebsitenamethatdoesnotexist2\.com\b" 1;
|
||||
"~*\bsomeveryveryrandomwebsitenamethatdoesnotexist3\.com\b" 1;
|
||||
"~*\bsome\-veryvery\-randomweb\-sitenamethatdoesnotexist4\.com\b" 1;
|
||||
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.01
|
||||
### Updated: Mon Aug 21 11:31:32 SAST 2017
|
||||
### Version: V3.2017.02
|
||||
### Updated: Mon Oct 02 16:52:32 SAST 2017
|
||||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
@ -28,5 +28,12 @@
|
|||
# For example myfirstowndomainname.com should be entered as myfirstowndomainname\.com
|
||||
# and my-second-owndomainname.com should be entered as my\-second\-owndomainname\.com
|
||||
|
||||
"~*myfirstowndomainname\.com" 0;
|
||||
"~*my\-second\-owndomainname\.com" 0;
|
||||
# *****************************************************************************************
|
||||
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
|
||||
# *****************************************************************************************
|
||||
|
||||
# As you can see in the examples below the domain "myfirstowndomainname\.com" is entered with a preceding \b and an ending \b
|
||||
# this makes it now "\bmyfirstowndomainname\.com\b". It is crucial to use the word boundaries regex formatting.
|
||||
|
||||
"~*\bmyfirstowndomainname\.com\b" 0;
|
||||
"~*\bmy\-second\-owndomainname\.com\b" 0;
|
||||
|
|
|
@ -26,4 +26,4 @@
|
|||
# Only add actual IP addresses and ranges here
|
||||
|
||||
111.111.111.111 0;
|
||||
35.184.144.134 0;
|
||||
104.197.209.254 0;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.10.918
|
||||
### Updated: Mon Oct 2 15:50:16 SAST 2017
|
||||
### Version: V3.2017.10.919
|
||||
### Updated: Mon Oct 2 17:04:04 SAST 2017
|
||||
### Bad Referrer Count: 5839
|
||||
### Bad Bot Count: 515
|
||||
###################################################
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.03
|
||||
### Updated: Mon Aug 21 11:29:32 SAST 2017
|
||||
### Version: V3.2017.04
|
||||
### Updated: Mon Oct 02 16:41:32 SAST 2017
|
||||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
@ -42,18 +42,25 @@
|
|||
|
||||
# Think very carefully before you add any word here
|
||||
|
||||
"~*adultgalls" 1;
|
||||
"~*amateurxpass" 1;
|
||||
"~*bigblackbooty" 1;
|
||||
"~*blacktits" 1;
|
||||
"~*cookie\-law\-enforcement" 1;
|
||||
"~*free\-share\-buttons" 1;
|
||||
"~*free\-social\-buttons" 1;
|
||||
"~*fuck\-paid\-share\-buttons" 1;
|
||||
"~*ilovevitaly" 1;
|
||||
"~*law\-enforcement\-bot" 1;
|
||||
"~*law\-enforcement\-check" 1;
|
||||
"~*share\-buttons\-for\-free" 1;
|
||||
"~*webfuck" 1;
|
||||
"~*xxxrus" 1;
|
||||
"~*zeroredirect" 1;
|
||||
# *****************************************************************************************
|
||||
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
|
||||
# *****************************************************************************************
|
||||
|
||||
# As you can see in the examples below the word "adultgalls" is entered with a preceding \b and an ending \b
|
||||
# this makes it now "\badultgalls\b". It is crucial to use the word boundaries regex formatting.
|
||||
|
||||
"~*\badultgalls\b" 1;
|
||||
"~*\bamateurxpass\b" 1;
|
||||
"~*\bbigblackbooty\b" 1;
|
||||
"~*\bblacktits\b" 1;
|
||||
"~*\bcookie\-law\-enforcement\b" 1;
|
||||
"~*\bfree\-share\-buttons\b" 1;
|
||||
"~*\bfree\-social\-buttons\b" 1;
|
||||
"~*\bfuck\-paid\-share\-buttons\b" 1;
|
||||
"~*\bilovevitaly\b" 1;
|
||||
"~*\blaw\-enforcement\-bot\b" 1;
|
||||
"~*\blaw\-enforcement\-check\b" 1;
|
||||
"~*\bshare\-buttons\-for\-free\b" 1;
|
||||
"~*\bwebfuck\b" 1;
|
||||
"~*\bxxxrus\b" 1;
|
||||
"~*\bzeroredirect\b" 1;
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.02
|
||||
### Updated: Mon Aug 21 11:29:32 SAST 2017
|
||||
### Version: V3.2017.03
|
||||
### Updated: Mon Oct 02 16:50:32 SAST 2017
|
||||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
@ -27,8 +27,18 @@
|
|||
# For example some-veryvery-randomwebsitename-thatdoesnotexist4.com should be entered as
|
||||
# some\-veryvery\-randomwebsitename\-thatdoesnotexist4\.com
|
||||
|
||||
"~*someveryveryrandomwebsitenamethatdoesnotexist1\.com" 1;
|
||||
"~*someveryveryrandomwebsitenamethatdoesnotexist2\.com" 1;
|
||||
"~*someveryveryrandomwebsitenamethatdoesnotexist3\.com" 1;
|
||||
"~*some\-veryvery\-randomweb\-sitenamethatdoesnotexist4\.com" 1;
|
||||
# *****************************************************************************************
|
||||
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
|
||||
# *****************************************************************************************
|
||||
|
||||
# As you can see in the examples below the domain "someveryveryrandomwebsitenamethatdoesnotexist1\.com"
|
||||
# is entered with a preceding \b and an ending \b
|
||||
# this makes it now "\bsomeveryveryrandomwebsitenamethatdoesnotexist1\.com\b".
|
||||
# It is crucial to use the word boundaries regex formatting.
|
||||
|
||||
|
||||
"~*\bsomeveryveryrandomwebsitenamethatdoesnotexist1\.com\b" 1;
|
||||
"~*\bsomeveryveryrandomwebsitenamethatdoesnotexist2\.com\b" 1;
|
||||
"~*\bsomeveryveryrandomwebsitenamethatdoesnotexist3\.com\b" 1;
|
||||
"~*\bsome\-veryvery\-randomweb\-sitenamethatdoesnotexist4\.com\b" 1;
|
||||
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.01
|
||||
### Updated: Mon Aug 21 11:31:32 SAST 2017
|
||||
### Version: V3.2017.02
|
||||
### Updated: Mon Oct 02 16:52:32 SAST 2017
|
||||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
|
@ -28,5 +28,12 @@
|
|||
# For example myfirstowndomainname.com should be entered as myfirstowndomainname\.com
|
||||
# and my-second-owndomainname.com should be entered as my\-second\-owndomainname\.com
|
||||
|
||||
"~*myfirstowndomainname\.com" 0;
|
||||
"~*my\-second\-owndomainname\.com" 0;
|
||||
# *****************************************************************************************
|
||||
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
|
||||
# *****************************************************************************************
|
||||
|
||||
# As you can see in the examples below the domain "myfirstowndomainname\.com" is entered with a preceding \b and an ending \b
|
||||
# this makes it now "\bmyfirstowndomainname\.com\b". It is crucial to use the word boundaries regex formatting.
|
||||
|
||||
"~*\bmyfirstowndomainname\.com\b" 0;
|
||||
"~*\bmy\-second\-owndomainname\.com\b" 0;
|
||||
|
|
|
@ -26,4 +26,4 @@
|
|||
# Only add actual IP addresses and ranges here
|
||||
|
||||
111.111.111.111 0;
|
||||
35.184.144.134 0;
|
||||
104.197.209.254 0;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.10.918
|
||||
### Updated: Mon Oct 2 15:50:16 SAST 2017
|
||||
### Version: V3.2017.10.919
|
||||
### Updated: Mon Oct 2 17:04:04 SAST 2017
|
||||
### Bad Referrer Count: 5839
|
||||
### Bad Bot Count: 515
|
||||
###################################################
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:21 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:10 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:21 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:10 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:21 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:10 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:21 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:10 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:21 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:10 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:21 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:10 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:21 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:10 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:21 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:10 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:26 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:15 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:26 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:15 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:26 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:15 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:26 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:15 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:26 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:15 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:26 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:15 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:26 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:15 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:26 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:15 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:30 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:19 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:30 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:19 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:30 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:19 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:30 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:19 SAST 2017
|
||||
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:30 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:19 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:30 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:19 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:30 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:19 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Last Tested: Mon Oct 2 15:50:30 SAST 2017
|
||||
Last Tested: Mon Oct 2 17:04:19 SAST 2017
|
||||
|
||||
<?php
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.10.918
|
||||
### Updated: Mon Oct 2 15:50:16 SAST 2017
|
||||
### Version: V3.2017.10.919
|
||||
### Updated: Mon Oct 2 17:04:04 SAST 2017
|
||||
### Bad Referrer Count: 5839
|
||||
### Bad Bot Count: 515
|
||||
###################################################
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue