diff --git a/.dev-tools/_conf_files_test1/bots.d/bad-referrer-words.conf b/.dev-tools/_conf_files_test1/bots.d/bad-referrer-words.conf index 737f2f4cc..ab72ebd7a 100644 --- a/.dev-tools/_conf_files_test1/bots.d/bad-referrer-words.conf +++ b/.dev-tools/_conf_files_test1/bots.d/bad-referrer-words.conf @@ -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; diff --git a/.dev-tools/_conf_files_test1/bots.d/custom-bad-referrers.conf b/.dev-tools/_conf_files_test1/bots.d/custom-bad-referrers.conf index a0b161266..5b1f5935f 100644 --- a/.dev-tools/_conf_files_test1/bots.d/custom-bad-referrers.conf +++ b/.dev-tools/_conf_files_test1/bots.d/custom-bad-referrers.conf @@ -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; \ No newline at end of file diff --git a/.dev-tools/_conf_files_test1/bots.d/whitelist-domains.conf b/.dev-tools/_conf_files_test1/bots.d/whitelist-domains.conf index ad3fa34da..e575d93b7 100644 --- a/.dev-tools/_conf_files_test1/bots.d/whitelist-domains.conf +++ b/.dev-tools/_conf_files_test1/bots.d/whitelist-domains.conf @@ -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; diff --git a/.dev-tools/_conf_files_test1/bots.d/whitelist-ips.conf b/.dev-tools/_conf_files_test1/bots.d/whitelist-ips.conf index 99f7b0b4f..3aa082222 100644 --- a/.dev-tools/_conf_files_test1/bots.d/whitelist-ips.conf +++ b/.dev-tools/_conf_files_test1/bots.d/whitelist-ips.conf @@ -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; diff --git a/.dev-tools/_conf_files_test1/conf.d/globalblacklist.conf b/.dev-tools/_conf_files_test1/conf.d/globalblacklist.conf index 7f91fc3d4..6c612c3b4 100644 --- a/.dev-tools/_conf_files_test1/conf.d/globalblacklist.conf +++ b/.dev-tools/_conf_files_test1/conf.d/globalblacklist.conf @@ -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 ################################################### diff --git a/.dev-tools/_conf_files_test2/bots.d/bad-referrer-words.conf b/.dev-tools/_conf_files_test2/bots.d/bad-referrer-words.conf index 737f2f4cc..ab72ebd7a 100644 --- a/.dev-tools/_conf_files_test2/bots.d/bad-referrer-words.conf +++ b/.dev-tools/_conf_files_test2/bots.d/bad-referrer-words.conf @@ -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; diff --git a/.dev-tools/_conf_files_test2/bots.d/custom-bad-referrers.conf b/.dev-tools/_conf_files_test2/bots.d/custom-bad-referrers.conf index a0b161266..5b1f5935f 100644 --- a/.dev-tools/_conf_files_test2/bots.d/custom-bad-referrers.conf +++ b/.dev-tools/_conf_files_test2/bots.d/custom-bad-referrers.conf @@ -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; \ No newline at end of file diff --git a/.dev-tools/_conf_files_test2/bots.d/whitelist-domains.conf b/.dev-tools/_conf_files_test2/bots.d/whitelist-domains.conf index ad3fa34da..e575d93b7 100644 --- a/.dev-tools/_conf_files_test2/bots.d/whitelist-domains.conf +++ b/.dev-tools/_conf_files_test2/bots.d/whitelist-domains.conf @@ -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; diff --git a/.dev-tools/_conf_files_test2/bots.d/whitelist-ips.conf b/.dev-tools/_conf_files_test2/bots.d/whitelist-ips.conf index 99f7b0b4f..3aa082222 100644 --- a/.dev-tools/_conf_files_test2/bots.d/whitelist-ips.conf +++ b/.dev-tools/_conf_files_test2/bots.d/whitelist-ips.conf @@ -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; diff --git a/.dev-tools/_conf_files_test2/conf.d/globalblacklist.conf b/.dev-tools/_conf_files_test2/conf.d/globalblacklist.conf index 2d8f91157..987c6a012 100644 --- a/.dev-tools/_conf_files_test2/conf.d/globalblacklist.conf +++ b/.dev-tools/_conf_files_test2/conf.d/globalblacklist.conf @@ -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 ################################################### diff --git a/.dev-tools/_conf_files_test3/bots.d/bad-referrer-words.conf b/.dev-tools/_conf_files_test3/bots.d/bad-referrer-words.conf index 737f2f4cc..ab72ebd7a 100644 --- a/.dev-tools/_conf_files_test3/bots.d/bad-referrer-words.conf +++ b/.dev-tools/_conf_files_test3/bots.d/bad-referrer-words.conf @@ -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; diff --git a/.dev-tools/_conf_files_test3/bots.d/custom-bad-referrers.conf b/.dev-tools/_conf_files_test3/bots.d/custom-bad-referrers.conf index a0b161266..5b1f5935f 100644 --- a/.dev-tools/_conf_files_test3/bots.d/custom-bad-referrers.conf +++ b/.dev-tools/_conf_files_test3/bots.d/custom-bad-referrers.conf @@ -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; \ No newline at end of file diff --git a/.dev-tools/_conf_files_test3/bots.d/whitelist-domains.conf b/.dev-tools/_conf_files_test3/bots.d/whitelist-domains.conf index ad3fa34da..e575d93b7 100644 --- a/.dev-tools/_conf_files_test3/bots.d/whitelist-domains.conf +++ b/.dev-tools/_conf_files_test3/bots.d/whitelist-domains.conf @@ -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; diff --git a/.dev-tools/_conf_files_test3/bots.d/whitelist-ips.conf b/.dev-tools/_conf_files_test3/bots.d/whitelist-ips.conf index 99f7b0b4f..3aa082222 100644 --- a/.dev-tools/_conf_files_test3/bots.d/whitelist-ips.conf +++ b/.dev-tools/_conf_files_test3/bots.d/whitelist-ips.conf @@ -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; diff --git a/.dev-tools/_conf_files_test3/conf.d/globalblacklist.conf b/.dev-tools/_conf_files_test3/conf.d/globalblacklist.conf index ab4bcf20e..3d3613d97 100644 --- a/.dev-tools/_conf_files_test3/conf.d/globalblacklist.conf +++ b/.dev-tools/_conf_files_test3/conf.d/globalblacklist.conf @@ -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 ################################################### diff --git a/.dev-tools/_curl_tests/curltest1.txt b/.dev-tools/_curl_tests/curltest1.txt index c1b481a08..8eafa9ffb 100755 --- a/.dev-tools/_curl_tests/curltest1.txt +++ b/.dev-tools/_curl_tests/curltest1.txt @@ -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 diff --git a/.dev-tools/_curl_tests/curltest2.txt b/.dev-tools/_curl_tests/curltest2.txt index c1b481a08..8eafa9ffb 100755 --- a/.dev-tools/_curl_tests/curltest2.txt +++ b/.dev-tools/_curl_tests/curltest2.txt @@ -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 diff --git a/.dev-tools/_curl_tests/curltest3.txt b/.dev-tools/_curl_tests/curltest3.txt index c1b481a08..8eafa9ffb 100755 --- a/.dev-tools/_curl_tests/curltest3.txt +++ b/.dev-tools/_curl_tests/curltest3.txt @@ -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 diff --git a/.dev-tools/_curl_tests/curltest4.txt b/.dev-tools/_curl_tests/curltest4.txt index c1b481a08..8eafa9ffb 100755 --- a/.dev-tools/_curl_tests/curltest4.txt +++ b/.dev-tools/_curl_tests/curltest4.txt @@ -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 diff --git a/.dev-tools/_curl_tests/curltest5.txt b/.dev-tools/_curl_tests/curltest5.txt index bcbbc9d4d..f7e63733a 100755 --- a/.dev-tools/_curl_tests/curltest5.txt +++ b/.dev-tools/_curl_tests/curltest5.txt @@ -1,4 +1,4 @@ -Last Tested: Mon Oct 2 15:50:21 SAST 2017 +Last Tested: Mon Oct 2 17:04:10 SAST 2017