Lucene search
K

188 matches found

curl security advisories
curl security advisories
•added 2019/05/22 8:0 a.m.•3 views

Integer overflows in URL parser

libcurl contains two integer overflows in the curlurlset function that if triggered, can lead to a too small buffer allocation and a subsequent heap buffer overflow. The flaws only exist on 32-bit architectures and require excessive string input lengths...

4.3CVSS5.6AI score0.00165EPSS
Exploits1References1Affected Software2
curl security advisories
curl security advisories
•added 2019/02/06 8:0 a.m.•2 views

NTLM type-2 out-of-bounds buffer read

libcurl contains a heap buffer out-of-bounds read flaw. The function handling incoming NTLM type-2 messages lib/vauth/ntlm.c:ntlmdecodetype2target does not validate incoming data correctly and is subject to an integer overflow vulnerability. Using that overflow, a malicious or broken NTLM server...

7.5CVSS6.7AI score0.01204EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2019/02/06 8:0 a.m.•1 views

NTLMv2 type-3 header stack buffer overflow

libcurl contains a stack based buffer overflow vulnerability. The function creating an outgoing NTLM type-3 header lib/vauth/ntlm.c:Curlauthcreatentlmtype3message, generates the request HTTP header contents based on previously received data. The check that exists to prevent the local buffer from...

9.8CVSS6.6AI score0.18518EPSS
Exploits1Affected Software2
curl security advisories
curl security advisories
•added 2019/02/06 8:0 a.m.•2 views

SMTP end-of-response out-of-bounds read

libcurl contains a heap out-of-bounds read in the code handling the end-of-response for SMTP. If the buffer passed to smtpendofresp is not null-terminated and contains no character ending the parsed number, and len is set to 5, then the strtol call reads beyond the allocated buffer. The read...

7.5CVSS6.6AI score0.01568EPSS
Exploits1Affected Software2
curl security advisories
curl security advisories
•added 2018/10/31 8:0 a.m.•2 views

SASL password overflow via integer overflow

libcurl contains a buffer overrun in the SASL authentication code. The internal function Curlauthcreateplainmessage fails to correctly verify that the passed in lengths for name and password are not too long, then calculates a buffer size to allocate. On systems with a 32-bit sizet, the math to...

9.8CVSS7.2AI score0.00346EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2018/10/31 8:0 a.m.•2 views

warning message out-of-buffer read

curl contains a heap out of buffer read vulnerability. The command line tool has a generic function for displaying warning and informational messages to stderr for various situations. For example if an unknown command line argument is used, or passed to it in a "config" file. This display functio...

9.1CVSS7AI score0.00162EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2018/10/31 8:0 a.m.•2 views

use after free in handle close

libcurl contains a heap use after free flaw in code related to closing an easy handle. When closing and cleaning up an "easy" handle in the Curlclose function, the library code first frees a struct without clearing the pointer and might then subsequently erroneously write to a struct field within...

9.8CVSS6.9AI score0.0029EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2018/09/05 8:0 a.m.•2 views

NTLM password overflow via integer overflow

libcurl contains a buffer overrun in the NTLM authentication code. The internal function Curlntlmcoremknthash multiplies the length of the password by two SUM to figure out how large temporary storage area to allocate from the heap. The length value is then subsequently used to iterate over the...

10CVSS7.2AI score0.00493EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2018/07/11 8:0 a.m.•3 views

SMTP send heap buffer overflow

curl might overflow a heap based memory buffer when sending data over SMTP and using a reduced read buffer. When sending data over SMTP, curl allocates a separate "scratch area" on the heap to be able to escape the uploaded data properly if the uploaded data contains data that requires it. The si...

9.8CVSS8.1AI score0.01242EPSS
Exploits1Affected Software2
curl security advisories
curl security advisories
•added 2018/05/16 8:0 a.m.•2 views

RTSP bad headers buffer over-read

curl can be tricked into reading data beyond the end of a heap based buffer used to store downloaded content. When servers send RTSP responses back to curl, the data starts out with a set of headers. curl parses that data to separate it into a number of headers to deal with those appropriately an...

9.1CVSS7.6AI score0.02845EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2018/05/16 8:0 a.m.•2 views

FTP shutdown response buffer overflow

curl might overflow a heap based memory buffer when closing down an FTP connection with long server command replies. When doing FTP transfers, curl keeps a spare "closure handle" around internally that is used when an FTP connection gets shut down since the original curl easy handle is then alrea...

9.8CVSS8.6AI score0.00926EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2018/03/14 8:0 a.m.•2 views

RTSP RTP buffer over-read

curl can be tricked into copying data beyond end of its heap based buffer. When asked to transfer an RTSP URL, curl could calculate a wrong data length to copy from the read buffer. The memcpy call would copy data from the heap following the buffer to a storage area that would subsequently be...

9.1CVSS7.2AI score0.01639EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2018/03/14 8:0 a.m.•2 views

LDAP NULL pointer dereference

curl might dereference a near-NULL address when getting an LDAP URL. The function ldapgetattributeber is called to get attributes, but it turns out that it can return LDAPSUCCESS and still return a NULL pointer in the result pointer when getting a particularly crafted response. This was a surpris...

7.5CVSS6.9AI score0.02668EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2018/03/14 8:0 a.m.•1 views

FTP path trickery leads to NIL byte out of bounds write

curl can be fooled into writing a zero byte out of bounds. This bug can trigger when curl is told to work on an FTP URL, with the setting to only issue a single CWD command --ftp-method singlecwd or the libcurl alternative CURLOPTFTPFILEMETHOD. curl then URL-decodes the given path, calls strlen o...

9.8CVSS7.7AI score0.01298EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2018/01/24 8:0 a.m.•3 views

HTTP/2 trailer out-of-bounds read

libcurl contains an out bounds read in code handling HTTP/2 trailers. It was reported that reading an HTTP/2 trailer could mess up future trailers since the stored size was one byte less than required. The problem is that the code that creates HTTP/1-like headers from the HTTP/2 trailer data once...

9.1CVSS8.2AI score0.00365EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2018/01/24 8:0 a.m.•2 views

HTTP authentication leak in redirects

curl might leak authentication data to third parties. When asked to send custom headers in its HTTP requests, curl sends that set of headers first to the host in the initial URL but also, if asked to follow redirects and a 30X HTTP response code is returned, to the host mentioned in URL in the...

9.8CVSS6.9AI score0.03854EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/11/29 8:0 a.m.•2 views

NTLM buffer overflow via integer overflow

libcurl contains a buffer overrun flaw in the NTLM authentication code. The internal function Curlntlmcoremkntlmv2hash sums up the lengths of the username + password = SUM and multiplies the sum by two = SIZE to figure out how large storage to allocate from the heap. The SUM value is subsequently...

9.8CVSS7.4AI score0.00454EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/11/29 8:0 a.m.•1 views

SSL out of buffer access

libcurl contains an out boundary access flaw in SSL related code. When allocating memory for a connection the internal struct called connectdata, a certain amount of memory is allocated at the end of the struct to be used for SSL related structs. Those structs are used by the particular SSL libra...

9.8CVSS8.1AI score0.00825EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/11/29 8:0 a.m.•3 views

FTP wildcard out of bounds read

libcurl contains a read out of bounds flaw in the FTP wildcard function. libcurl's FTP wildcard matching feature, which is enabled with the CURLOPTWILDCARDMATCH option can use a built-in wildcard function or a user provided one. The built-in wildcard function has a flaw that makes it not detect t...

9.8CVSS7AI score0.00735EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/10/23 8:0 a.m.•2 views

IMAP FETCH response out of bounds read

libcurl contains a buffer overrun flaw in the IMAP handler. An IMAP FETCH response line indicates the size of the returned data, in number of bytes. When that response says the data is zero bytes, libcurl would pass on that non-existing data with a pointer and the size zero to the deliver-data...

9.1CVSS7.2AI score0.00966EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/10/04 8:0 a.m.•1 views

FTP PWD response parser out of bounds read

libcurl may read outside of a heap allocated buffer when doing FTP. When libcurl connects to an FTP server and successfully logs in anonymous or not, it asks the server for the current directory with the PWD command. The server then responds with a 257 response containing the path, inside double...

7.5CVSS6.6AI score0.01318EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/08/09 8:0 a.m.•3 views

TFTP sends more than buffer size

When doing a TFTP transfer and curl/libcurl is given a URL that contains a long filename longer than about 515 bytes, the filename is truncated to fit within the buffer boundaries, but the buffer size is still wrongly updated to use the original length. This too large value is then used in the...

6.5CVSS6.6AI score0.00635EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/08/09 8:0 a.m.•3 views

URL globbing out of bounds read

curl supports "globbing" of URLs, in which a user can pass a numerical range to have the tool iterate over those numbers to do a sequence of transfers. In the globbing function that parses the numerical range, there was an omission that made curl read a byte beyond the end of the URL if given a...

6.5CVSS6.9AI score0.00601EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/08/09 8:0 a.m.•1 views

FILE buffer read out of bounds

When asking to get a file from a file:// URL, libcurl provides a feature that outputs meta-data about the file using HTTP-like headers. The code doing this would send the wrong buffer to the user stdout or the application's provide callback, which could lead to other private data from the heap to...

6.5CVSS7AI score0.00623EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/06/14 8:0 a.m.•2 views

URL file scheme drive letter buffer overflow

When libcurl is given either 1. a file: URL that does not use two slashes following the colon, or 2. is told that file is the default scheme to use for URLs without scheme ... and the given path starts with a drive letter and libcurl is built for Windows or DOS, then libcurl would copy the path...

5.3CVSS6.2AI score0.00552EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/04/19 8:0 a.m.•1 views

TLS session resumption client cert bypass (again)

libcurl would attempt to resume a TLS session even if the client certificate had changed. That is unacceptable since a server by specification is allowed to skip the client certificate check on resume, and may instead use the old identity which was established by the previous certificate or no...

7.5CVSS6.5AI score0.00347EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/04/03 8:0 a.m.•2 views

--write-out out of buffer read

There were two bugs in curl's parser for the command line option --write-out or -w for short that would skip the end of string zero byte if the string ended in a % percent or \ backslash, and it would read beyond that buffer in the heap memory and it could then potentially output pieces of that...

2.4CVSS6.5AI score0.00196EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2017/02/22 8:0 a.m.•2 views

SSL_VERIFYSTATUS ignored

curl and libcurl support "OCSP stapling", also known as the TLS Certificate Status Request extension using the CURLOPTSSLVERIFYSTATUS option. When telling curl to use this feature, it uses that TLS extension to ask for a fresh proof of the server's certificate's validity. If the server does not...

6.5CVSS6.3AI score0.00365EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/12/23 8:0 a.m.•1 views

uninitialized random

libcurl's new internal function that returns a good 32-bit random value was implemented poorly and overwrote the pointer instead of writing the value into the buffer the pointer pointed to. This random value is used to generate nonces for Digest and NTLM authentication, for generating boundary...

8.1CVSS7.1AI score0.00545EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/12/21 8:0 a.m.•1 views

printf floating point buffer overflow

libcurl's implementation of the printf functions triggers a buffer overflow when doing a large floating point output. The bug occurs when the conversion outputs more than 255 bytes. The flaw happens because the floating point conversion is using system functions without the correct boundary check...

8.1CVSS7.1AI score0.01009EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/12/21 8:0 a.m.•2 views

Win CE Schannel cert wildcard matches too much

curl's TLS server certificate checks are flawed on Windows CE. This vulnerability occurs in the verify certificate function when comparing a wildcard certificate name as returned by the Windows API function CertGetNameString to the hostname used to make the connection to the server. The...

8.1CVSS7.7AI score0.00397EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/12/21 8:0 a.m.•1 views

Win CE Schannel cert name out of buffer read

curl's TLS server certificate checks are flawed on Windows CE. This vulnerability occurs in the verify certificate function when comparing a wildcard certificate name as returned by the Windows API function CertGetNameString to the hostname used to make the connection to the server. The pattern...

9.8CVSS8.4AI score0.00557EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•1 views

glob parser write/read out of bounds

The curl tool's "globbing" feature allows a user to specify a numerical range through which curl iterates. It is typically specified as 1-5, specifying the first and the last numbers in the range. Or with a-z, using letters. 1. The curl code for parsing the second unsigned number did not check fo...

9.8CVSS7.7AI score0.00881EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•1 views

OOB write via unchecked multiplication

In libcurl's base64 encode function, the output buffer is allocated as follows without any checks on insize: malloc insize 4 / 3 + 4 On systems with 32-bit addresses in userspace e.g. x86, ARM, x32, the multiplication in the expression wraps around if insize is at least 1GB of data. If this...

7CVSS7AI score0.00083EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•1 views

IDNA 2003 makes curl use wrong host

When curl is built with libidn to handle International Domain Names IDNA, it translates them to puny code for DNS resolving using the IDNA 2003 standard, while IDNA 2008 is the modern and up-to-date IDNA standard. This misalignment causes problems with for example domains using the German ß...

7.5CVSS7.2AI score0.01671EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•1 views

case insensitive password comparison

When reusing a connection, curl was doing case insensitive comparisons of username and password with the existing connections. This means that if an unused connection with proper credentials exists for a protocol that has connection-scoped credentials, an attacker can cause that connection to be...

5.9CVSS6.8AI score0.04507EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•3 views

double free in krb5 code

In curl's implementation of the Kerberos authentication mechanism, the function readdata in security.c is used to fill the necessary krb5 structures. When reading one of the length fields from the socket, it fails to ensure that the length parameter passed to realloc is not set to 0. This would...

9.8CVSS7.1AI score0.03363EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•1 views

invalid URL parsing with '#'

curl does not parse the authority component of the URL correctly when the host name part ends with a hash character, and could instead be tricked into connecting to a different host. This may have security implications if you for example use a URL parser that follows the RFC to check for allowed...

7.5CVSS7.3AI score0.01136EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•2 views

double free in curl_maprintf

The libcurl API function called curlmaprintf can be tricked into doing a double free due to an unsafe sizet multiplication, on systems using 32-bit sizet variables. The function is also used internally in numerous situations. The function doubles an allocated memory area with realloc and allows t...

9.8CVSS7.1AI score0.01811EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•1 views

URL unescape heap overflow via integer truncation

The URL percent-encoding decode function in libcurl is called curleasyunescape. Internally, even if this function would be made to allocate a destination buffer larger than 2GB, it would return that new length in a signed 32-bit integer variable, thus the length would get either truncated only or...

9.8CVSS7AI score0.01878EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•2 views

Use after free via shared cookies

libcurl explicitly allows users to share cookies between multiple easy handles that are concurrently employed by different threads. When cookies to be sent to a server are collected, the matching function collects all cookies to send and the cookie lock is released immediately afterwards. That...

7.5CVSS6.8AI score0.01276EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•1 views

cookie injection for other servers

If cookie state is written into a cookie jar file that is later read back and used for subsequent requests, a malicious HTTP server can inject new cookies for arbitrary domains into said cookie jar. The issue pertains to the function that loads cookies into memory, which reads the specified file...

7.5CVSS7.4AI score0.04182EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/11/02 8:0 a.m.•1 views

curl_getdate read out of bounds

The curlgetdate converts a given date string into a numerical timestamp and it supports a range of different formats and possibilities to express a date and time. The underlying date parsing function is also used internally when parsing for example HTTP cookies possibly received from remote serve...

7.5CVSS7.3AI score0.03438EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/09/14 8:0 a.m.•2 views

curl escape and unescape integer overflows

The four libcurl functions curlescape, curleasyescape, curlunescape and curleasyunescape perform string URL percent escaping and unescaping. They accept custom string length inputs in signed integer arguments. The functions having names without "easy" being the deprecated versions of the others...

9.8CVSS6.8AI score0.02257EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/09/07 8:0 a.m.•2 views

Incorrect reuse of client certificates

libcurl built on top of NSS Network Security Services incorrectly reused client certificates if a certificate from file was used for one TLS connection but no certificate set for a subsequent TLS connection. While the symptoms are similar to CVE-2016-5420 Reusing connection with wrong client cert...

7.5CVSS6.5AI score0.00524EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/08/03 8:0 a.m.•2 views

Reusing connections with wrong client cert

libcurl did not consider client certificates when reusing TLS connections. libcurl supports reuse of established connections for subsequent requests. It does this by keeping a few previous connections "alive" in a connection pool so that a subsequent request that can use one of them instead of...

7.5CVSS6.5AI score0.01071EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/08/03 8:0 a.m.•2 views

TLS session resumption client cert bypass

libcurl would attempt to resume a TLS session even if the client certificate had changed. That is unacceptable since a server by specification is allowed to skip the client certificate check on resume, and may instead use the old identity which was established by the previous certificate or no...

7.5CVSS6.4AI score0.01912EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/08/03 8:0 a.m.•2 views

use of connection struct after free

libcurl is vulnerable to a use after free flaw. libcurl works with easy handles using the type 'CURL ' that are objects the application creates using curleasyinit. They are the handles that are all each associated with a single transfer at a time. libcurl also has an internal struct that represen...

8.1CVSS7.5AI score0.01092EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/05/30 8:0 a.m.•2 views

Windows DLL hijacking

libcurl would load Windows system DLLs in a manner that may make it vulnerable to a DLL hijacking aka binary planting attack in certain configurations. libcurl has a unified code base that builds and runs on a multitude of different versions of Windows. To make that possible, when libcurl is buil...

7.8CVSS7.6AI score0.00612EPSS
Exploits0Affected Software2
curl security advisories
curl security advisories
•added 2016/05/18 8:0 a.m.•2 views

TLS certificate check bypass with mbedTLS/PolarSSL

libcurl did not check the server certificate of TLS connections done to a host specified as an IP address, or when explicitly asked to use SSLv3. This flaw only exists when libcurl is built to use mbedTLS or PolarSSL as the TLS backend. The documentation for mbedTLS and PolarSSL wrongly says that...

5.3CVSS6.1AI score0.01068EPSS
Exploits0Affected Software2
Total number of security vulnerabilities188