1. 08 Mar, 2009 1 commit
  2. 05 Mar, 2009 2 commits
  3. 04 Mar, 2009 1 commit
  4. 03 Mar, 2009 1 commit
  5. 02 Mar, 2009 1 commit
    • Daniel Stenberg's avatar
      - David Kierznowski notified us about a security flaw · 042cc1f6
      Daniel Stenberg authored
        (http://curl.haxx.se/docs/adv_20090303.html also known as CVE-2009-0037) in
        which previous libcurl versions (by design) can be tricked to access an
        arbitrary local/different file instead of a remote one when
        CURLOPT_FOLLOWLOCATION is enabled. This flaw is now fixed in this release
        together this the addition of two new setopt options for controlling this
        new behavior:
      
        o CURLOPT_REDIR_PROTOCOLS controls what protocols libcurl is allowed to
        follow to when CURLOPT_FOLLOWLOCATION is enabled. By default, this option
        excludes the FILE and SCP protocols and thus you nee to explicitly allow
        them in your app if you really want that behavior.
      
        o CURLOPT_PROTOCOLS controls what protocol(s) libcurl is allowed to fetch
        using the primary URL option. This is useful if you want to allow a user or
        other outsiders control what URL to pass to libcurl and yet not allow all
        protocols libcurl may have been built to support.
      curl-7_19_4
      042cc1f6
  6. 27 Feb, 2009 1 commit
  7. 25 Feb, 2009 1 commit
    • Daniel Stenberg's avatar
      - As Daniel Fandrich figured out, we must do the GnuTLS initing in the · d207ea16
      Daniel Stenberg authored
        curl_global_init() function to properly maintain the performing functions
        thread-safe. We've previously (28 April 2007) moved the init to a later time
        just to avoid it to fail very early when libgcrypt dislikes the situation,
        but that move was bad and the fix should rather be in libgcrypt or
        elsewhere.
      d207ea16
  8. 24 Feb, 2009 1 commit
  9. 23 Feb, 2009 3 commits
  10. 20 Feb, 2009 2 commits
  11. 19 Feb, 2009 1 commit
    • Daniel Stenberg's avatar
      - Patrik Thunstrom reported a problem and helped me repeat it. It turned out · 5af0629b
      Daniel Stenberg authored
        libcurl did a superfluous 1000ms wait when doing SFTP downloads!
      
        We read data with libssh2 while doing the "DO" operation for SFTP and then
        when we were about to start getting data for the actual file part, the
        "TRANSFER" part, we waited for socket action (in 1000ms) before doing a
        libssh2-read. But in this case libssh2 had already read and buffered the
        data so we ended up always just waiting 1000ms before we get working on the
        data!
      5af0629b
  12. 18 Feb, 2009 1 commit
  13. 17 Feb, 2009 3 commits
  14. 14 Feb, 2009 1 commit
  15. 12 Feb, 2009 2 commits
  16. 11 Feb, 2009 1 commit
  17. 05 Feb, 2009 1 commit
  18. 04 Feb, 2009 1 commit
  19. 03 Feb, 2009 1 commit
  20. 02 Feb, 2009 2 commits
    • Daniel Stenberg's avatar
      - Patrick Scott found a rather large memory leak when using the multi · d4ac3d53
      Daniel Stenberg authored
        interface and setting CURLMOPT_MAXCONNECTS to something less than the number
        of handles you add to the multi handle. All the connections that didn't fit
        in the cache would not be properly disconnected nor freed!
      d4ac3d53
    • Daniel Stenberg's avatar
      - Craig A West brought us: libcurl now defaults to do CONNECT with HTTP · bdd4294e
      Daniel Stenberg authored
        version 1.1 instead of 1.0 like before. This change also introduces the new
        proxy type for libcurl called 'CURLPROXY_HTTP_1_0' that then allows apps to
        switch (back) to CONNECT 1.0 requests. The curl tool also got a --proxy1.0
        option that works exactly like --proxy but sets CURLPROXY_HTTP_1_0.
      
        I updated all test cases cases that use CONNECT and I tried to do some using
        --proxy1.0 and some updated to do CONNECT 1.1 to get both versions run.
      bdd4294e
  21. 31 Jan, 2009 2 commits
  22. 30 Jan, 2009 1 commit
  23. 29 Jan, 2009 1 commit
    • Yang Tse's avatar
      Introduced curl_sspi.c and curl_sspi.h for the implementation of functions · e813bf31
      Yang Tse authored
      Curl_sspi_global_init() and Curl_sspi_global_cleanup() which previously were
      named Curl_ntlm_global_init() and Curl_ntlm_global_cleanup() in http_ntlm.c
      Also adjusted socks_sspi.c to remove the link-time dependency on the Windows
      SSPI library using it now in the same way as it was done in http_ntlm.c.
      e813bf31
  24. 28 Jan, 2009 1 commit
  25. 26 Jan, 2009 3 commits
  26. 25 Jan, 2009 1 commit
  27. 21 Jan, 2009 1 commit
    • Dan Fandrich's avatar
      Fixed a couple more locale-dependent toupper conversions, mainly for · 55915501
      Dan Fandrich authored
      clarity.  This does fix one problem that causes ;type=i FTP URLs
      to fail in the Turkish locale when CURLOPT_PROXY_TRANSFER_MODE is
      used (test case 561)
      
      Added tests 561 and 1092 through 1094 to test various combinations
      of ;type= and ;mode= URLs that could potentially fail in the Turkish
      locale.
      55915501
  28. 20 Jan, 2009 1 commit
  29. 19 Jan, 2009 1 commit