Created
April 3, 2026 18:09
-
-
Save jkeam/bb10717a603b21fd52dd34da6bc4b612 to your computer and use it in GitHub Desktop.
Certificate Testing
This file contains hidden or 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
| #!/bin/bash | |
| # get certs | |
| openssl s_client -showcerts -connect YOUR_REG.COM:8443 </dev/null | |
| # see subject and issuer | |
| openssl x509 -noout -subject -issuer | |
| <PASTE YOUR CERT HERE> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment