You're browsing snippets anonymously. Log in or create an account to save and manage your own snippets.

Public Snippets
with tags: cli
Showing 1 snippet
Get domain cert details in cli
DOMAIN=yourdomain.tld
echo | openssl s_client -showcerts -servername $DOMAIN -connect $DOMAIN:443 2>/dev/null | openssl x509 -inform pem -noout -text
By xtream1101 Updated 2025-02-12 19:48
Showing 1 snippet