We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi. This latest version does not display the issuer:
Version 4.14:
ssl-cert-check -i -f testssl
Host Issuer Status Expires Days
www.apple.com:443 Valid Oct 8 2021 240 www.google.com:443 Valid Apr 13 2021 62
If I use version 4.10:
ssl-cert-check-4_10 -i -f testssl
www.apple.com:443 DigiCert, Inc. Valid Oct 8 2021 240 www.google.com:443 Google Trust Serv Valid Apr 13 2021 62
The text was updated successfully, but these errors were encountered:
The problem happens depending on the openssl version in use.
Works for openssl 1.0.2k:
CERTISSUER=$("${OPENSSL}" x509 -in "${CERT_TMP}" -issuer -noout | \ "${AWK}" 'BEGIN {RS="/" } $0 ~ /^O=/ { print substr($0,3,17)}')
Works for openssl 1.1.1k:
CERTISSUER=$("${OPENSSL}" x509 -in "${CERT_TMP}" -issuer -noout | \ "${AWK}" 'BEGIN {RS=", " } $0 ~ /^O =/ { print substr($0,5,17)}')
Sorry, something went wrong.
No branches or pull requests
Hi. This latest version does not display the issuer:
Version 4.14:
ssl-cert-check -i -f testssl
Host Issuer Status Expires Days
www.apple.com:443 Valid Oct 8 2021 240
www.google.com:443 Valid Apr 13 2021 62
If I use version 4.10:
ssl-cert-check-4_10 -i -f testssl
Host Issuer Status Expires Days
www.apple.com:443 DigiCert, Inc. Valid Oct 8 2021 240
www.google.com:443 Google Trust Serv Valid Apr 13 2021 62
The text was updated successfully, but these errors were encountered: