Skip to content
Snippets Groups Projects
  1. Dec 05, 2014
  2. Dec 04, 2014
  3. Dec 01, 2014
  4. Nov 30, 2014
  5. Nov 24, 2014
  6. Nov 19, 2014
  7. Nov 18, 2014
  8. Nov 15, 2014
  9. Nov 08, 2014
  10. Nov 07, 2014
  11. Nov 05, 2014
  12. Oct 29, 2014
  13. Oct 26, 2014
  14. Oct 24, 2014
  15. Oct 12, 2014
  16. Oct 09, 2014
  17. Oct 08, 2014
    • Daniel Stenberg's avatar
      operate: avoid NULL dereference · eb1e3a39
      Daniel Stenberg authored
      Coverity CID 1241948. dumpeasysrc() would get called with
      config->current set to NULL which could be dereferenced by a warnf()
      call.
      eb1e3a39
    • Daniel Stenberg's avatar
      operate_do: skip superfluous check for NULL pointer · 987a4a73
      Daniel Stenberg authored
      Coverity CID 1243583. get_url_file_name() cannot fail and return a NULL
      file name pointer so skip the check for that - it tricks coverity into
      believing it can happen and it then warns later on when we use 'outfile'
      without checking for NULL.
      987a4a73
  18. Oct 07, 2014
    • Travis Burtrum's avatar
      SSL: implement public key pinning · 93e45079
      Travis Burtrum authored
      Option --pinnedpubkey takes a path to a public key in DER format and
      only connect if it matches (currently only implemented with OpenSSL).
      
      Provides CURLOPT_PINNEDPUBLICKEY for curl_easy_setopt().
      
      Extract a public RSA key from a website like so:
      openssl s_client -connect google.com:443 2>&1 < /dev/null | \
      sed -n '/-----BEGIN/,/-----END/p' | openssl x509 -noout -pubkey \
      | openssl rsa -pubin -outform DER > google.com.der
      93e45079
    • Daniel Stenberg's avatar
      parseconfig: skip a NULL check · dddb2aab
      Daniel Stenberg authored
      Coverity CID 1154198. This NULL check implies that the pointer _can_ be
      NULL at this point, which it can't. Thus it is dead code. It tricks
      static analyzers to warn about dereferencing the pointer since the code
      seems to imply it can be NULL.
      dddb2aab
  19. Oct 06, 2014
  20. Oct 04, 2014
  21. Aug 19, 2014
  22. Aug 10, 2014
  23. Aug 08, 2014
  24. Jul 22, 2014
Loading