Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-13 | Retry SSL checks on negotiation failure.release-0.29 | Steve Kemp | |
This prevents an endless loop. | |||
2016-04-22 | More updates to silence rubocop style-guides. | Steve Kemp | |
These warnings were largely whitespace-based. | |||
2015-11-30 | Don't do SHA1 signature testing by default. | Steve Kemp | |
2015-10-29 | Allow testng for weak certificate signing algorithms. | Steve Kemp | |
This is a good thing to do, as Chrome will apaprently be refusing to show sites with SHA-1 in use over SHA-256. This closes #12358. | |||
2015-08-04 | Override the alert-test-type for the SSL-expiry check. | Steve Kemp | |
This allows better alerting. | |||
2015-04-16 | Updated test-handler for new API. | Steve Kemp | |
This update consists of two changes: * No longer return "true" or "false" instead return "TEST_FAILED", or "TEST_SUCCEEDED". * Removed the testing of test-inversion from the class, now it lives in the base-class where it should have done all along. | |||
2015-03-09 | Updated to test for more whitespace issues. | Steve Kemp | |
2015-03-09 | Removed trailing whitespace from the code | Steve Kemp | |
2015-03-09 | Remove spaces inside blocks. | Steve Kemp | |
2015-03-09 | More minor space fixups | Steve Kemp | |
2015-03-09 | Whitespace fixups. | Steve Kemp | |
These were all identified and suggested by rubocop. | |||
2015-03-09 | Removed spaces inside parenthesis. | Steve Kemp | |
2015-03-09 | Prefer single-quotes when you don't need interpolation. | Steve Kemp | |
So "foo" is less good than 'foo'. | |||
2015-03-09 | Do not terminate expressions with ";". | Steve Kemp | |
Ruby is not Perl, much as I sometimes wish it were. | |||
2015-03-09 | Avoid redudent returns. | Steve Kemp | |
The last expression of a method is the return value. So: def foo; false ; end Is the same as: def foo; return false; end | |||
2015-03-09 | Don't use parenthesis aroudn conditions in an if. | Steve Kemp | |
2015-03-09 | Don't use "::" for method-calls. | Steve Kemp | |
Instead prefer ".". Flagged by rubocop | |||
2015-03-09 | Avoid redundent ".to_s" methods. | Steve Kemp | |
These are not required if the argument is string already, or has a _to_s method which will be automatically invoked by magic. | |||
2015-03-04 | Allow SSL-check to be disabled, via "no_ssl_check" | Steve Kemp | |
2015-03-04 | New release - reporting SSL errors correctly. | Steve Kemp | |
2015-03-04 | Work correctly if SSL library is too old for SNI. | Steve Kemp | |
2015-02-18 | Added SSL checking magic, from Patrick. | Steve Kemp | |
This is a clone of the code that we're already using for SSL checking of domains. The biggest excpetion is that I've disabled the SSL v2/v3 checking because that is causing alerts on https://google.com/ This closes #9563. | |||
2015-02-18 | Show NOP messages. | Steve Kemp | |
2015-02-18 | Added SSL-expiry checker. | Steve Kemp | |
This is a stub for the moment, but it validates that we can have multiple handlers for a given test-type. This updates #9558. |