# OpenSSL Cheat Sheet ## Basics General commands to analyze a certificate. Test a TLS connection ```bash openssl s_client -connect example.net:443 ``` Get the certificate from a web endpoint ```bash openssl s_client -showcerts -connect example.net:443 -out ```