How to check certificate on website without web-browser?
I found a cool solution how it can achieved without browser!
Use curl for this
curl --insecure -vvI https://api.airmee.com/integration 2>&1 | awk 'BEGIN { cert=0 } /^\* SSL connection/ { cert=1 } /^\*/ { if (cert) print }'
Add new comment