Created
April 9, 2014 15:13
-
-
Save andyfowler/10281760 to your computer and use it in GitHub Desktop.
Check if your RapidSSL cert is revoked in their OCSP server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# download the rapidssl intermediate bundle | |
curl https://knowledge.rapidssl.com/library/VERISIGN/ALL_OTHER/RapidSSL%20Intermediate/RapidSSL_CA_bundle.pem > rapidssl-bundle.pem | |
# check if your (presumably revoked) cert is revoked via its OCSP server | |
# this OCSP url is also in your cert, in the Authority Information Access section | |
openssl ocsp -issuer rapidssl-bundle.pem -cert YOURCERT.crt -url http://rapidssl-ocsp.geotrust.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment