Merge pull request #8625 from XnS/feature/itl-ssl_cert-ignore-stc

Added new option ignore-sct for ssl_cert to ITL
This commit is contained in:
Julian Brost 2021-06-15 12:31:03 +02:00 committed by GitHub
commit 46743f9b13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -5610,6 +5610,7 @@ ssl_cert_disable_ssl_versions | **Optional.** Disable specific SSL versions out
ssl_cert_cipher | **Optional.** Cipher selection: force {ecdsa,rsa} authentication.
ssl_cert_ignore_expiration | **Optional.** Ignore expiration date.
ssl_cert_ignore_ocsp | **Optional.** Do not check revocation with OCSP.
ssl_cert_ignore_sct | **Optional.** Do not check for signed certificate timestamps.
#### jmx4perl <a id="plugin-contrib-command-jmx4perl"></a>

View File

@ -554,6 +554,10 @@ object CheckCommand "ssl_cert" {
set_if = "$ssl_cert_ignore_ocsp$"
description = "Do not check revocation with OCSP"
}
"--ignore-sct" = {
set_if = "$ssl_cert_ignore_sct$"
description = "Do not check for signed certificate timestamps"
}
}