Skip to content

Instantly share code, notes, and snippets.

@subfission
Last active October 2, 2018 23:08
Show Gist options
  • Select an option

  • Save subfission/c20e90bdbba4aa684eba8377bcd41b0e to your computer and use it in GitHub Desktop.

Select an option

Save subfission/c20e90bdbba4aa684eba8377bcd41b0e to your computer and use it in GitHub Desktop.
Check the local system for TLS issues
#!/bin/bash
if [ -z $(which jq) ]; then
curl -Lks "https://www.howsmyssl.com/a/check"
else
curl -Lks "https://www.howsmyssl.com/a/check" | jq '.' 2>/dev/null
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment