SSLCERTS 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. Peer SSL Certificate Verification
  2. =================================
  3. (NOTE: If libcurl was built with Schannel or Secure Transport support, then
  4. this does not apply to you. Scroll down for details on how the OS-native
  5. engines handle SSL certificates. If you're not sure, then run "curl -V" and
  6. read the results. If the version string says "WinSSL" in it, then it was built
  7. with Schannel support.)
  8. libcurl performs peer SSL certificate verification by default. This is done
  9. by using CA cert bundle that the SSL library can use to make sure the peer's
  10. server certificate is valid.
  11. If you communicate with HTTPS or FTPS servers using certificates that are
  12. signed by CAs present in the bundle, you can be sure that the remote server
  13. really is the one it claims to be.
  14. Until 7.18.0, curl bundled a severely outdated ca bundle file that was
  15. installed by default. These days, the curl archives include no ca certs at
  16. all. You need to get them elsewhere. See below for example.
  17. If the remote server uses a self-signed certificate, if you don't install a CA
  18. cert bundle, if the server uses a certificate signed by a CA that isn't
  19. included in the bundle you use or if the remote host is an impostor
  20. impersonating your favorite site, and you want to transfer files from this
  21. server, do one of the following:
  22. 1. Tell libcurl to *not* verify the peer. With libcurl you disable this with
  23. curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  24. With the curl command line tool, you disable this with -k/--insecure.
  25. 2. Get a CA certificate that can verify the remote server and use the proper
  26. option to point out this CA cert for verification when connecting. For
  27. libcurl hackers: curl_easy_setopt(curl, CURLOPT_CAPATH, capath);
  28. With the curl command line tool: --cacert [file]
  29. 3. Add the CA cert for your server to the existing default CA cert bundle.
  30. The default path of the CA bundle used can be changed by running configure
  31. with the --with-ca-bundle option pointing out the path of your choice.
  32. To do this, you need to get the CA cert for your server in PEM format and
  33. then append that to your CA cert bundle.
  34. If you use Internet Explorer, this is one way to get extract the CA cert
  35. for a particular server:
  36. o View the certificate by double-clicking the padlock
  37. o Find out where the CA certificate is kept (Certificate>
  38. Authority Information Access>URL)
  39. o Get a copy of the crt file using curl
  40. o Convert it from crt to PEM using the openssl tool:
  41. openssl x509 -inform DES -in yourdownloaded.crt \
  42. -out outcert.pem -text
  43. o Append the 'outcert.pem' to the CA cert bundle or use it stand-alone
  44. as described below.
  45. If you use the 'openssl' tool, this is one way to get extract the CA cert
  46. for a particular server:
  47. o openssl s_client -connect xxxxx.com:443 |tee logfile
  48. o type "QUIT", followed by the "ENTER" key
  49. o The certificate will have "BEGIN CERTIFICATE" and "END CERTIFICATE"
  50. markers.
  51. o If you want to see the data in the certificate, you can do: "openssl
  52. x509 -inform PEM -in certfile -text -out certdata" where certfile is
  53. the cert you extracted from logfile. Look in certdata.
  54. o If you want to trust the certificate, you can append it to your
  55. cert_bundle or use it stand-alone as described. Just remember that the
  56. security is no better than the way you obtained the certificate.
  57. 4. If you're using the curl command line tool, you can specify your own CA
  58. cert path by setting the environment variable CURL_CA_BUNDLE to the path
  59. of your choice.
  60. If you're using the curl command line tool on Windows, curl will search
  61. for a CA cert file named "curl-ca-bundle.crt" in these directories and in
  62. this order:
  63. 1. application's directory
  64. 2. current working directory
  65. 3. Windows System directory (e.g. C:\windows\system32)
  66. 4. Windows Directory (e.g. C:\windows)
  67. 5. all directories along %PATH%
  68. 5. Get a better/different/newer CA cert bundle! One option is to extract the
  69. one a recent Firefox browser uses by running 'make ca-bundle' in the curl
  70. build tree root, or possibly download a version that was generated this
  71. way for you:
  72. http://curl.haxx.se/docs/caextract.html
  73. Neglecting to use one of the above methods when dealing with a server using a
  74. certificate that isn't signed by one of the certificates in the installed CA
  75. cert bundle, will cause SSL to report an error ("certificate verify failed")
  76. during the handshake and SSL will then refuse further communication with that
  77. server.
  78. Peer SSL Certificate Verification with NSS
  79. ==========================================
  80. If libcurl was built with NSS support, then depending on the OS distribution,
  81. it is probably required to take some additional steps to use the system-wide CA
  82. cert db. RedHat ships with an additional module, libnsspem.so, which enables
  83. NSS to read the OpenSSL PEM CA bundle. This library is missing in OpenSuSE, and
  84. without it, NSS can only work with its own internal formats. NSS also has a new
  85. database format: https://wiki.mozilla.org/NSS_Shared_DB
  86. Starting with version 7.19.7, libcurl will check for the NSS version it runs,
  87. and automatically add the 'sql:' prefix to the certdb directory (either the
  88. hardcoded default /etc/pki/nssdb or the directory configured with SSL_DIR
  89. environment variable) if version 3.12.0 or later is detected. To check which
  90. ertdb format your distribution provides, examine the default
  91. certdb location: /etc/pki/nssdb; the new certdb format can be identified by
  92. the filenames cert9.db, key4.db, pkcs11.txt; filenames of older versions are
  93. cert8.db, key3.db, modsec.db.
  94. Usually these cert databases are empty, but NSS also has built-in CAs which are
  95. provided through a shared library, libnssckbi.so; if you want to use these
  96. built-in CAs, then create a symlink to libnssckbi.so in /etc/pki/nssdb:
  97. ln -s /usr/lib[64]/libnssckbi.so /etc/pki/nssdb/libnssckbi.so
  98. Peer SSL Certificate Verification with Schannel and Secure Transport
  99. ====================================================================
  100. If libcurl was built with Schannel (Microsoft's TLS/SSL engine) or Secure
  101. Transport (Apple's TLS/SSL engine) support, then libcurl will still perform
  102. peer certificate verification, but instead of using a CA cert bundle, it will
  103. use the certificates that are built into the OS. These are the same
  104. certificates that appear in the Internet Options control panel (under Windows)
  105. or Keychain Access application (under OS X). Any custom security rules for
  106. certificates will be honored.
  107. Schannel will run CRL checks on certificates unless peer verification is
  108. disabled. Secure Transport on iOS will run OCSP checks on certificates unless
  109. peer verification is disabled. Secure Transport on OS X will run either OCSP
  110. or CRL checks on certificates if those features are enabled, and this behavior
  111. can be adjusted in the preferences of Keychain Access.