curl / Docs / curl CVEs / Set-Cookie denial of service
Awarded 480 USD

CVE-2022-32205

Set-Cookie denial of service

Project curl Security Advisory, June 27th 2022 - Permalink

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.

INFO

CVE-2022-32205 was introduced in 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

libcurl is used by many applications, but not always advertised as such!

SOLUTION

We introduce several new limits and thresholds for cookies:

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@openwall on June 20.

libcurl 7.84.0 was released on June 27 2022, coordinated with the publication of this advisory.

CREDITS

Thanks a lot!