Ruby/puma/5.6.2
Puma is a simple, fast, multi-threaded, and highly parallel HTTP 1.1 server for Ruby/Rack applications. Puma is intended for use in both development and production environments. It's great for highly parallel Ruby implementations such as JRuby and TruffleRuby as well as as providing process worker support to support CRuby well.
https://rubygems.org/gems/puma
BSD-3-Clause
4 Security Vulnerabilities
Puma's header normalization allows for client to clobber proxy set headers
- https://github.com/puma/puma/security/advisories/GHSA-9hf4-67fc-4vf4
- https://nvd.nist.gov/vuln/detail/CVE-2024-45614
- https://github.com/puma/puma/commit/cac3fd18cf29ed43719ff5d52d9cfec215f0a043
- https://github.com/puma/puma/commit/f196b23be24712fb8fb16051cc124798cc84f70e
- https://nginx.org/en/docs/http/ngx_http_core_module.html#underscores_in_headers
- https://github.com/rubysec/ruby-advisory-db/blob/master/gems/puma/CVE-2024-45614.yml
- https://github.com/advisories/GHSA-9hf4-67fc-4vf4
Impact
Clients could clobber values set by intermediate proxies (such as X-Forwarded-For) by providing a underscore version of the same header (X-Forwarded_For). Any users trusting headers set by their proxy may be affected. Attackers may be able to downgrade connections to HTTP (non-SSL) or redirect responses, which could cause confidentiality leaks if combined with a separate MITM attack.
Patches
v6.4.3/v5.6.9 now discards any headers using underscores if the non-underscore version also exists. Effectively, allowing the proxy defined headers to always win.
Workarounds
Nginx has a underscoresinheaders configuration variable to discard these headers at the proxy level.
Any users that are implicitly trusting the proxy defined headers for security or availability should immediately cease doing so until upgraded to the fixed versions.
Puma HTTP Request/Response Smuggling vulnerability
- https://github.com/puma/puma/security/advisories/GHSA-c2f4-cvqm-65w2
- https://nvd.nist.gov/vuln/detail/CVE-2024-21647
- https://github.com/puma/puma/commit/5fc43d73b6ff193325e657a24ed76dec79133e93
- https://github.com/puma/puma/commit/60d5ee3734adc8cee85c3f0561af392448fe19b7
- https://github.com/puma/puma/commit/bbb880ffb6debbfdea535b4b3eb2204d49ae151d
- https://github.com/advisories/GHSA-c2f4-cvqm-65w2
- https://github.com/rubysec/ruby-advisory-db/blob/master/gems/puma/CVE-2024-21647.yml
Impact
Prior to versions 6.4.2 and 5.6.8, puma exhibited dangerous behavior when parsing chunked transfer encoding bodies.
Fixed versions limit the size of chunk extensions. Without this limit, an attacker could cause unbounded resource (CPU, network bandwidth) consumption.
Patches
The vulnerability has been fixed in 6.4.2 and 5.6.8.
Workarounds
No known workarounds.
References
- HTTP Request Smuggling
- Open an issue in Puma
- See our security policy
Puma vulnerable to HTTP Request Smuggling
- https://github.com/puma/puma/security/advisories/GHSA-h99w-9q5r-gjq9
- https://github.com/puma/puma/commit/5bb7d202e24dec00a898dca4aa11db391d7787a5
- https://github.com/advisories/GHSA-h99w-9q5r-gjq9
- https://nvd.nist.gov/vuln/detail/CVE-2022-24790
- https://portswigger.net/web-security/request-smuggling
- https://www.debian.org/security/2022/dsa-5146
- https://security.gentoo.org/glsa/202208-28
- https://lists.debian.org/debian-lts-announce/2022/08/msg00015.html
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/L7NESIBFCNSR3XH7LXDPKVMSUBNUB43G/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TUBFJ44NCKJ34LECZRAP4N5VL6USJSIB/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F6YWGIIKL7KKTS3ZOAYMYPC7D6WQ5OA5/
- https://github.com/rubysec/ruby-advisory-db/blob/master/gems/puma/CVE-2022-24790.yml
When using Puma behind a proxy that does not properly validate that the incoming HTTP request matches the RFC7230 standard, Puma and the frontend proxy may disagree on where a request starts and ends. This would allow requests to be smuggled via the front-end proxy to Puma.
The following vulnerabilities are addressed by this advisory:
- Lenient parsing of Transfer-Encoding
headers, when unsupported encodings should be rejected and the final encoding must be chunked
.
- Lenient parsing of malformed Content-Length
headers and chunk sizes, when only digits and hex digits should be allowed.
- Lenient parsing of duplicate Content-Length
headers, when they should be rejected.
- Lenient parsing of the ending of chunked segments, when they should end with \r\n
.
The vulnerability has been fixed in 5.6.4 and 4.3.12. When deploying a proxy in front of Puma, turning on any and all functionality to make sure that the request matches the RFC7230 standard.
These proxy servers are known to have good
behavior re: this standard and upgrading Puma may not be necessary. Users are encouraged to validate for themselves.
- Nginx (latest)
- Apache (latest)
- Haproxy 2.5+
- Caddy (latest)
- Traefik (latest)
HTTP Request Smuggling in puma
Impact
When using Puma behind a proxy that does not properly validate that the incoming HTTP request matches the RFC7230 standard, Puma and the frontend proxy may disagree on where a request starts and ends. This would allow requests to be smuggled via the front-end proxy to Puma.
The following vulnerabilities are addressed by this advisory:
- Lenient parsing of Transfer-Encoding
headers, when unsupported encodings
should be rejected and the final encoding must be chunked
.
- Lenient parsing of malformed Content-Length
headers and chunk sizes, when
only digits and hex digits should be allowed.
- Lenient parsing of duplicate Content-Length
headers, when they should be
rejected.
- Lenient parsing of the ending of chunked segments, when they should end
with \r\n
.
Patches
The vulnerability has been fixed in 5.6.4 and 4.3.12.
Workarounds
When deploying a proxy in front of Puma, turning on any and all functionality to make sure that the request matches the RFC7230 standard.
These proxy servers are known to have good
behavior re: this standard and
upgrading Puma may not be necessary. Users are encouraged to validate for
themselves.
- Nginx (latest)
- Apache (latest)
- Haproxy 2.5+
- Caddy (latest)
- Traefik (latest)
References
171 Other Versions
Version | License | Security | Released | |
---|---|---|---|---|
6.6.0 | BSD-3-Clause | 2025-01-28 - 23:05 | 5 months | |
6.5.0 | BSD-3-Clause | 2024-11-22 - 23:52 | 7 months | |
6.4.3 | BSD-3-Clause | 2024-09-19 - 05:50 | 9 months | |
6.4.2 | BSD-3-Clause | 2 | 2024-01-08 - 05:57 | over 1 year |
6.4.1 | BSD-3-Clause | 4 | 2024-01-03 - 00:05 | over 1 year |
6.4.0 | BSD-3-Clause | 4 | 2023-09-21 - 04:15 | almost 2 years |
6.3.1 | BSD-3-Clause | 4 | 2023-08-18 - 01:22 | almost 2 years |
6.3.0 | BSD-3-Clause | 6 | 2023-05-31 - 07:16 | about 2 years |
6.2.2 | BSD-3-Clause | 6 | 2023-04-17 - 22:44 | about 2 years |
6.2.1 | BSD-3-Clause | 6 | 2023-03-31 - 06:53 | over 2 years |
6.2.0 | BSD-3-Clause | 6 | 2023-03-29 - 06:55 | over 2 years |
6.1.1 | BSD-3-Clause | 6 | 2023-02-28 - 07:40 | over 2 years |
6.1.0 | BSD-3-Clause | 6 | 2023-02-12 - 04:58 | over 2 years |
6.0.2 | BSD-3-Clause | 6 | 2023-01-01 - 22:04 | over 2 years |
6.0.1 | BSD-3-Clause | 6 | 2022-12-20 - 20:21 | over 2 years |
6.0.0 | BSD-3-Clause | 6 | 2022-10-14 - 02:33 | over 2 years |
5.6.9 | BSD-3-Clause | 2024-09-19 - 05:41 | 9 months | |
5.6.8 | BSD-3-Clause | 1 | 2024-01-08 - 06:09 | over 1 year |
5.6.7 | BSD-3-Clause | 2 | 2023-08-18 - 05:58 | almost 2 years |
5.6.6 | BSD-3-Clause | 2 | 2023-06-21 - 02:59 | about 2 years |
5.6.5 | BSD-3-Clause | 2 | 2022-08-23 - 06:04 | almost 3 years |
5.6.4 | BSD-3-Clause | 2 | 2022-03-30 - 16:15 | over 3 years |
5.6.2 | BSD-3-Clause | 4 | 2022-02-11 - 21:17 | over 3 years |
5.6.1 | BSD-3-Clause | 6 | 2022-01-27 - 00:40 | over 3 years |
5.6.0 | BSD-3-Clause | 6 | 2022-01-25 - 21:21 | over 3 years |
5.5.2 | BSD-3-Clause | 10 | 2021-10-12 - 23:08 | over 3 years |
5.5.1 | BSD-3-Clause | 10 | 2021-10-12 - 15:11 | over 3 years |
5.5.0 | BSD-3-Clause | 12 | 2021-09-19 - 20:09 | almost 4 years |
5.4.0 | BSD-3-Clause | 12 | 2021-07-29 - 14:31 | almost 4 years |
5.3.2 | BSD-3-Clause | 12 | 2021-05-21 - 17:17 | about 4 years |
5.3.1 | BSD-3-Clause | 12 | 2021-05-11 - 14:56 | about 4 years |
5.3.0 | BSD-3-Clause | 14 | 2021-05-07 - 15:01 | about 4 years |
5.2.2 | BSD-3-Clause | 14 | 2021-03-02 - 16:08 | over 4 years |
5.2.1 | BSD-3-Clause | 14 | 2021-02-05 - 22:28 | over 4 years |
5.2.0 | BSD-3-Clause | 14 | 2021-01-27 - 20:43 | over 4 years |
5.1.1 | BSD-3-Clause | 14 | 2020-12-10 - 15:28 | over 4 years |
5.1.0 | BSD-3-Clause | 14 | 2020-11-30 - 17:33 | over 4 years |
5.0.4 | BSD-3-Clause | 14 | 2020-10-27 - 14:18 | over 4 years |
5.0.3 | BSD-3-Clause | 14 | 2020-10-26 - 13:05 | over 4 years |
5.0.2 | BSD-3-Clause | 14 | 2020-09-28 - 15:19 | almost 5 years |
5.0.1 | BSD-3-Clause | 14 | 2020-09-28 - 13:48 | almost 5 years |
5.0.0 | BSD-3-Clause | 14 | 2020-09-17 - 17:06 | almost 5 years |
5.0.0.beta2 | BSD-3-Clause | 10 | 2020-09-05 - 22:28 | almost 5 years |
5.0.0.beta1 | BSD-3-Clause | 10 | 2020-05-12 - 01:49 | about 5 years |
4.3.12 | BSD-3-Clause | 6 | 2022-03-30 - 16:14 | over 3 years |
4.3.11 | BSD-3-Clause | 7 | 2022-02-11 - 21:21 | over 3 years |
4.3.10 | BSD-3-Clause | 8 | 2021-10-12 - 23:15 | over 3 years |
4.3.9 | BSD-3-Clause | 8 | 2021-10-12 - 15:13 | over 3 years |
4.3.8 | BSD-3-Clause | 9 | 2021-05-11 - 14:54 | about 4 years |
4.3.7 | BSD-3-Clause | 10 | 2020-11-30 - 16:54 | over 4 years |