Skip to content

Instantly share code, notes, and snippets.

@justengland
Created April 10, 2017 16:12
Show Gist options
  • Save justengland/ffdddcc82c7c351bf650fcb2ccaf3ef3 to your computer and use it in GitHub Desktop.
Save justengland/ffdddcc82c7c351bf650fcb2ccaf3ef3 to your computer and use it in GitHub Desktop.
Get Certificate info
#!/usr/bin/env bash
SITE=https://www.google.com;curl --insecure -v "$SITE" 2>&1 | awk 'BEGIN { cert=0 } /^\* Server certificate:/ { cert=1 } /^\*/ { if (cert) print }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment