SSLCERTS 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Peer SSL Certificate Verification
  2. =================================
  3. Since version 7.10, libcurl performs peer SSL certificate verification by
  4. default. This is done by installing a default CA cert bundle on 'make install'
  5. (or similar), that CA bundle package is used by default on operations against
  6. SSL servers.
  7. Alas, if you communicate with HTTPS servers using certificates that are signed
  8. by CAs present in the bundle, you will not notice any changed behavior and you
  9. will seamlessly get a higher security level on your SSL connections since you
  10. can be sure that the remote server really is the one it claims to be.
  11. If the remote server uses a self-signed certificate, if you don't install
  12. curl's CA cert bundle, if the server uses a certificate signed by a CA that
  13. isn't included in the bundle or if the remoste host is an imposter
  14. impersonating your favourite site, and you want to transfer files from this
  15. server, do one of the following:
  16. 1. Tell libcurl to *not* verify the peer. With libcurl you disable with with
  17. curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  18. With the curl command tool, you disable this with -k/--insecure.
  19. 2. Get a CA certificate that can verify the remote server and use the proper
  20. option to point out this CA cert for verification when connecting. For
  21. libcurl hackers: curl_easy_setopt(curl, CURLOPT_CAPATH, capath);
  22. With the curl command tool: --cacert [file]
  23. Neglecting to use one of the above menthods when dealing with a server using a
  24. certficate that isn't signed by one of the certficates in the installed CA
  25. cert bundle, will cause SSL to report an error ("certificate verify failed")
  26. during the handshake and SSL will then refuse further communication with that
  27. server.
  28. This procedure has been deemed The Right Thing even though it adds this extra
  29. trouble for some users, since it adds security to a majority of the SSL
  30. connections that previously weren't really secure. It turned out many people
  31. were using previous versions of curl/libcurl without realizing the need for
  32. the CA cert options to get truly secure SSL connections.
  33. The default path of the CA bundle installed with the curl package is:
  34. /usr/local/share/curl/curl-ca-bundle.crt, which can be changed by running
  35. configure with the --with-ca-bundle option pointing out the path of your
  36. choice.