Skip to content

Instantly share code, notes, and snippets.

@andyfowler
Created April 9, 2014 15:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyfowler/10281760 to your computer and use it in GitHub Desktop.
Save andyfowler/10281760 to your computer and use it in GitHub Desktop.
Check if your RapidSSL cert is revoked in their OCSP server
# 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