curl / Mailing Lists / curl-users / Single Mail
Buy commercial curl support from WolfSSL. We help you work out your issues, debug your libcurl applications, use the API, port to new platforms, add new features and more. With a team lead by the curl founder himself.

[SECURITY ADVISORY] curl: CVE-2022-32205: Set-Cookie denial of service

From: Daniel Stenberg via curl-users <curl-users_at_lists.haxx.se>
Date: Mon, 27 Jun 2022 08:19:23 +0200 (CEST)

CVE-2022-32205: Set-Cookie denial of service
============================================

´Project curl Security Advisory, June 27th 2022 -
[Permalink](https://curl.se/docs/CVE-2022-32205.html)

VULNERABILITY
-------------

A malicious server can serve excessive amounts of `Set-Cookie:` headers in a
HTTP response to curl and curl stores all of them. A sufficiently large amount
of (big) cookies make subsequent HTTP requests to this, or other servers to
which the cookies match, create requests that become larger than the threshold
that curl uses internally to avoid sending crazy large requests (1048576
bytes) and instead returns an error.

This denial state might remain for as long as the same cookies are kept, match
and haven't expired. Due to cookie matching rules, a server on
`foo.example.com` can set cookies that also would match for `bar.example.com`,
making it it possible for a "sister server" to effectively cause a denial of
service for a sibling site on the same second level domain using this method.

We are not aware of any exploit of this flaw.

INFO
----
CVE-2022-32205 was introduced in [commit
ed35d6590e72c23c](https://github.com/curl/curl/commit/ed35d6590e72c23c),
shipped in curl 7.71.0 with the introduction of the "dynbuf"
internally. Before this change, curl had no limit in how large HTTP request it
could generate.
CWE-770: Allocation of Resources Without Limits or Throttling
Severity: Low
AFFECTED VERSIONS
-----------------
- Affected versions: curl 7.71.0 to and including 7.83.1
- Not affected versions: curl < 7.71.0 and curl >= 7.84.0
libcurl is used by many applications, but not always advertised as such!
THE SOLUTION
------------
We introduce several new limits and thresholds for cookies:
- Send no more than 150 cookies per request
- Cap the max length used for an outgoing `Cookie:` header to 8K
- Cap the max number of accepted `Set-Cookie:` header fields to 50
A [fix for CVE-2022-32205](https://github.com/curl/curl/commit/48d7064a49148f0394)
RECOMMENDATIONS
--------------
  A - Upgrade curl to version 7.84.0
  B - Apply the patch to your local version
  C - Do not use cookies
TIMELINE
--------
This issue was reported to the curl project on May 13, 2022. We contacted
distros_at_openwall on June 20.
libcurl 7.84.0 was released on June 27 2022, coordinated with the publication
of this advisory.
CREDITS
-------
This issue was reported by Harry Sintonen. Patched by Daniel Stenberg.
Thanks a lot!
-- 
  / daniel.haxx.se
  | Commercial curl support up to 24x7 is available!
  | Private help, bug fixes, support, ports, new features
  | https://curl.se/support.html


-- 
Unsubscribe: https://lists.haxx.se/listinfo/curl-users
Etiquette:   https://curl.se/mail/etiquette.html
Received on 2022-06-27