こんにちは。hacknoteのr.katoです。
今回はbashを使ってURLからSSL証明書の有効期限を知る方法の紹介です。
openssl s_client -connect www.google.com:443 -servername www.google.com < /dev/null 2> /dev/null | openssl x509 -text | grep Not
www.google.com
のところに調べたいサイトのドメインを入力して、opensslのインストールされた環境のbashで実行すればOKです。
Not Before: Jun 11 12:27:27 2019 GMT Not After : Sep 3 12:20:00 2019 GMT
こんな感じで結果が返ってきます。
Not Afterの方が有効期限です。