Answers for "curl disable ssl certificate check"

0

curl ssl verify false

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
Posted by: Guest on April-23-2021
0

validate ssl certificate on website using curl

curl --cert-status -v https://www.google.com 2>&1 | awk 'BEGIN { cert=0 } /^\* Server certificate:/ { cert=1 } /^\*/ { if (cert) print }'
Posted by: Guest on May-28-2020

Code answers related to "curl disable ssl certificate check"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language