← All Kali Issues
Curl

SSL certificate problem

S SSL Medium

🔴 Error Message

curl: SSL certificate problem: unable to get local issuer certificate

📖 What This Means

CA certificates not installed or outdated.

🔧 Step-by-Step Fix

  1. Update certs: apt install ca-certificates && update-ca-certificates
  2. Skip verification: curl -k https://target
  3. Specify CA: curl --cacert /path/to/ca.crt

🔗 More Curl Issues