- Apr 27, 2015
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
So that it fits HTTP/2 as well
-
Paul Howarth authored
Bug: http://curl.haxx.se/mail/lib-2015-04/0095.html
-
- Apr 26, 2015
-
-
Marc Hoersken authored
-
Marc Hoersken authored
Reported-by: Brian Chrisman
-
Daniel Stenberg authored
white space changes only
-
Daniel Stenberg authored
To have engine modules work, we must tell openssl to load builtin modules first. Bug: https://github.com/bagder/curl/pull/206
-
Daniel Stenberg authored
The code extracting the cert serial number was broken and didn't display it properly. Bug: https://github.com/bagder/curl/issues/235 Reported-by: dkjjr89
-
Grant Pannell authored
Without this, SSPI based digest auth was broken. Bug: https://github.com/bagder/curl/pull/141.patch
-
- Apr 24, 2015
-
-
Viktor Szakats authored
The 'default' token has no argument and means to match _any_ domain. It must be placed last if there are 'machine <name>' tokens in the same file. See full description here: https://www.gnu.org/software/inetutils/manual/html_node/The-_002enetrc-File.html
-
- Apr 22, 2015
-
-
Jay Satiro authored
Also add public key extraction example to CURLOPT_PINNEDPUBLICKEY doc.
-
Daniel Stenberg authored
PROTOPT_CREDSPERREQUEST still needs to be checked even when NTLM is not enabled. Mistake-caught-by: Kamil Dudka
-
Daniel Stenberg authored
Do not access NTLM-specific struct fields when built without NTLM enabled! bug: http://curl.haxx.se/?i=231 Reported-by: Patrick Rapin
-
Kamil Dudka authored
Bug: https://bugzilla.redhat.com/1195771
-
Daniel Stenberg authored
-
- Apr 21, 2015
-
-
Daniel Stenberg authored
When doing HTTP requests Negotiate authenticated, the entire connnection may become authenticated and not just the specific HTTP request which is otherwise how HTTP works, as Negotiate can basically use NTLM under the hood. curl was not adhering to this fact but would assume that such requests would also be authenticated per request. CVE-2015-3148 Bug: http://curl.haxx.se/docs/adv_20150422B.html Reported-by: Isaac Boukris
-
Daniel Stenberg authored
If a URL is given with a zero-length host name, like in "http://:80" or just ":80", `fix_hostname()` will index the host name pointer with a -1 offset (as it blindly assumes a non-zero length) and both read and assign that address. CVE-2015-3144 Bug: http://curl.haxx.se/docs/adv_20150422D.html Reported-by: Hanno Böck
-
Daniel Stenberg authored
The internal libcurl function called sanitize_cookie_path() that cleans up the path element as given to it from a remote site or when read from a file, did not properly validate the input. If given a path that consisted of a single double-quote, libcurl would index a newly allocated memory area with index -1 and assign a zero to it, thus destroying heap memory it wasn't supposed to. CVE-2015-3145 Bug: http://curl.haxx.se/docs/adv_20150422C.html Reported-by: Hanno Böck
-
Daniel Stenberg authored
CVE-2015-3143 Bug: http://curl.haxx.se/docs/adv_20150422A.html Reported-by: Paras Sethia
-
byronhe authored
-
- Apr 19, 2015
-
-
Viktor Szakats authored
-
- Apr 17, 2015
-
-
Daniel Stenberg authored
This reverts commit 5dc68dd6. Bug: https://github.com/bagder/curl/issues/223 Reported-by: Michael Osipov
-
Jay Satiro authored
Prior to this change CyaSSL's build options could redefine some generic build symbols. http://curl.haxx.se/mail/lib-2015-04/0069.html
-
- Apr 14, 2015
-
-
Jay Satiro authored
-
- Apr 13, 2015
-
-
Matthew Hall authored
-
Matthew Hall authored
-
Matthew Hall authored
-
Matthew Hall authored
-
Daniel Stenberg authored
At some point, Firefox has changed and generates different directory names for the default profile that made this script fail to find them. Bug: https://github.com/bagder/curl/issues/207 Reported-by: sneakyimp
-
- Apr 12, 2015
-
-
Jay Satiro authored
CyaSSL >= 2.6.0 may have an options.h that was generated during its build by configure.
-
- Apr 09, 2015
-
-
Viktor Szakats authored
Add 'gdi32' and 'crypt32' Windows implibs to avoid failure while building libcurl.dll using the mingw compiler. The same logic is used in 'src/makefile.m32' when building curl.exe.
-
- Apr 07, 2015
-
-
Da-Yoon Chung authored
The factor of 8 is a bytes-to-bits conversion factor, but pkt_size and rate_bps are both in bytes. When using the rate limiting option, curl waits 8 times too long, and then transfers very quickly until the average rate reaches the limit. The average rate follows the limit over time, but the actual traffic is bursty. Thanks-to: Benjamin Gilbert
-
- Apr 06, 2015
-
-
Jay Satiro authored
The key length in bits will always fit in an unsigned long so the loss-of-data warning assigning the result of x64 pointer arithmetic to an unsigned long is unnecessary.
-
Jay Satiro authored
Also fix it so that all ERR_error_string calls use an error buffer. CyaSSL's implementation of ERR_error_string only writes the error when an error buffer is passed. http://www.yassl.com/forums/topic599-openssl-compatibility-and-errerrorstring.html
-
- Apr 05, 2015
-
-
Jay Satiro authored
Prior to this change libcurl could show multiple 'CyaSSL: Connecting to' messages since cyassl_connect_step2 is called multiple times, typically. The message is superfluous even once since libcurl already informs the user elsewhere in code that it is connecting.
-
- Apr 03, 2015
-
-
Daniel Stenberg authored
introduced in the previous mini-series of 3 commits
-
Stefan Bühler authored
- also log when a CURLOPT_RESOLVE entry couldn't get parsed
-
Stefan Bühler authored
-
Stefan Bühler authored
- cache entries must be also refreshed when they are in use - have the cache count as inuse reference too, freeing timestamp == 0 special value - use timestamp == 0 for CURLOPT_RESOLVE entries which don't get refreshed - remove CURLOPT_RESOLVE special inuse reference (timestamp == 0 will prevent refresh) - fix Curl_hostcache_clean - CURLOPT_RESOLVE entries don't have a special reference anymore, and it would also release non CURLOPT_RESOLVE references - fix locking in Curl_hostcache_clean - fix unit1305.c: hash now keeps a reference, need to set inuse = 1
-
Jay Satiro authored
This change is to allow the user's CTX callback to change the minimum protocol version in the CTX without us later overriding it, as we did prior to this change.
-