-
Notifications
You must be signed in to change notification settings - Fork 384
New issue
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
Add option for detailing SSL/TLS Certificate #29
Comments
That's a good idea! I always use commands like
to check the expiration date for my website, but that is ridiculously verbose and complex. Because the TLS info could not be get from curl, if we want to do this, we can only wrap around |
I know a guy who's very familiar with openssl command, he can write out all the commands you mentioned (show issuer info, if valid etc) without a blink in the eye :) @wzyboy how do you think the idea of making that TLS cli tool? |
In relation to your comment about curl, I did find a command that utilizes curl and awk to pull out cert related information; not clean though:
But yeah, this would be super useful and openssl is most likely the best way to do it. In our case, pyopenssl/cryptography I'd presume would be good goto's |
Well. |
Oops, I find that I was using a curl of version 7.43.0, which only showed very limited TLS info, I tried with the newer version and now see the expire date info. In this case it's possible to make httpstat parse and show these info in a better way. |
This would be super useful to have for learning more about the certificate a particular site uses. It could be an add-on option (not default) which shows issuer information, if its valid, start/expire, and possibly other details.
Just an idea!
The text was updated successfully, but these errors were encountered: