Useful Commands

From bibbleWiki
Revision as of 01:50, 25 October 2020 by Iwiseman (talk | contribs) (Created page with "=View Certificate Details= <syntaxhighlight lang="bash"> curl --insecure -vvI https://www.google.com 2>&1 | awk 'BEGIN { cert=0 } /^\* SSL connection/ { cert=1 } /^\*/ { if (c...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

View Certificate Details

curl --insecure -vvI https://www.google.com 2>&1 | awk 'BEGIN { cert=0 } /^\* SSL connection/ { cert=1 } /^\*/ { if (cert) print }'