Valider le certificat SSL sur le site Web à l'aide de Curl

curl --cert-status -v https://www.google.com 2>&1 | awk 'BEGIN { cert=0 } /^\* Server certificate:/ { cert=1 } /^\*/ { if (cert) print }'
Smoggy Seal