Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:gem/rack@3.1.16
purl pkg:gem/rack@3.1.16
Next non-vulnerable version 3.1.20
Latest non-vulnerable version 3.2.6
Risk 4.0
Vulnerabilities affecting this package (8)
Vulnerability Summary Fixed by
VCID-7wvj-9h3p-23am
Aliases:
CVE-2025-49007
GHSA-47m2-26rw-j2jw
ReDoS Vulnerability in Rack::Multipart handle_mime_head ### Summary There is a denial of service vulnerability in the Content-Disposition parsing component of Rack. This is very similar to the previous security issue CVE-2022-44571. ### Details Carefully crafted input can cause Content-Disposition header parsing in Rack to take an unexpected amount of time, possibly resulting in a denial of service attack vector. This header is used typically used in multipart parsing. Any applications that parse multipart posts using Rack (virtually all Rails applications) are impacted. ### Credits Thanks to [scyoon](https://hackerone.com/scyoon) for reporting this to the Rails security team There are no reported fixed by versions.
VCID-9rpp-9xss-duf6
Aliases:
CVE-2026-22860
GHSA-mxw3-3hh2-x2mh
Rack has a Directory Traversal via Rack:Directory ## Summary `Rack::Directory`’s path check used a string prefix match on the expanded path. A request like `/../root_example/` can escape the configured root if the target path starts with the root string, allowing directory listing outside the intended root. ## Details In `directory.rb`, `File.expand_path(File.join(root, path_info)).start_with?(root)` does not enforce a path boundary. If the server root is `/var/www/root`, a path like `/var/www/root_backup` passes the check because it shares the same prefix, so `Rack::Directory` will list that directory also. ## Impact Information disclosure via directory listing outside the configured root when `Rack::Directory` is exposed to untrusted clients and a directory shares the root prefix (e.g., `public2`, `www_backup`). ## Mitigation * Update to a patched version of Rack that correctly checks the root prefix. * Don't name directories with the same prefix as one which is exposed via `Rack::Directory`.
3.1.20
Affected by 0 other vulnerabilities.
3.2.5
Affected by 0 other vulnerabilities.
VCID-azu5-jcmd-3ufx
Aliases:
CVE-2025-61772
GHSA-wpv5-97wm-hp9c
Rack's multipart parser buffers unbounded per-part headers, enabling DoS (memory exhaustion) `Rack::Multipart::Parser` can accumulate unbounded data when a multipart part’s header block never terminates with the required blank line (`CRLFCRLF`). The parser keeps appending incoming bytes to memory without a size cap, allowing a remote attacker to exhaust memory and cause a denial of service (DoS).
3.1.17
Affected by 4 other vulnerabilities.
3.2.2
Affected by 4 other vulnerabilities.
VCID-c5sc-7qnn-mkb9
Aliases:
CVE-2025-61771
GHSA-w9pc-fmgc-vxvw
Rack: Multipart parser buffers large non‑file fields entirely in memory, enabling DoS (memory exhaustion) `Rack::Multipart::Parser` stores non-file form fields (parts without a `filename`) entirely in memory as Ruby `String` objects. A single large text field in a multipart/form-data request (hundreds of megabytes or more) can consume equivalent process memory, potentially leading to out-of-memory (OOM) conditions and denial of service (DoS).
3.1.17
Affected by 4 other vulnerabilities.
3.2.2
Affected by 4 other vulnerabilities.
VCID-d58r-22kr-9bct
Aliases:
CVE-2025-61780
GHSA-r657-rxjc-j557
Rack has a Possible Information Disclosure Vulnerability A possible information disclosure vulnerability existed in `Rack::Sendfile` when running behind a proxy that supports `x-sendfile` headers (such as Nginx). Specially crafted headers could cause `Rack::Sendfile` to miscommunicate with the proxy and trigger unintended internal requests, potentially bypassing proxy-level access restrictions.
3.1.18
Affected by 2 other vulnerabilities.
3.2.3
Affected by 2 other vulnerabilities.
VCID-npag-sz7d-v7b6
Aliases:
CVE-2025-61770
GHSA-p543-xpfm-54cp
Rack's unbounded multipart preamble buffering enables DoS (memory exhaustion) `Rack::Multipart::Parser` buffers the entire multipart **preamble** (bytes before the first boundary) in memory without any size limit. A client can send a large preamble followed by a valid boundary, causing significant memory use and potential process termination due to out-of-memory (OOM) conditions.
3.1.17
Affected by 4 other vulnerabilities.
3.2.2
Affected by 4 other vulnerabilities.
VCID-s971-gkdg-jkhc
Aliases:
CVE-2025-61919
GHSA-6xw4-3v39-52mm
Rack is vulnerable to a memory-exhaustion DoS through unbounded URL-encoded body parsing `Rack::Request#POST` reads the entire request body into memory for `Content-Type: application/x-www-form-urlencoded`, calling `rack.input.read(nil)` without enforcing a length or cap. Large request bodies can therefore be buffered completely into process memory before parsing, leading to denial of service (DoS) through memory exhaustion.
3.1.18
Affected by 2 other vulnerabilities.
3.2.3
Affected by 2 other vulnerabilities.
VCID-skxv-7he3-xqgc
Aliases:
CVE-2026-25500
GHSA-whrj-4476-wvmp
Stored XSS in Rack::Directory via javascript: filenames rendered into anchor href ## Summary `Rack::Directory` generates an HTML directory index where each file entry is rendered as a clickable link. If a file exists on disk whose basename begins with the `javascript:` scheme (e.g. `javascript:alert(1)`), the generated index includes an anchor whose `href` attribute is exactly `javascript:alert(1)`. Clicking this entry executes arbitrary JavaScript in the context of the hosting application. This results in a client-side XSS condition in directory listings generated by `Rack::Directory`. ## Details `Rack::Directory` renders directory entries using an HTML row template similar to: ```html <a href='%s'>%s</a> ``` The `%s` placeholder is populated directly with the file’s basename. If the basename begins with `javascript:`, the resulting HTML contains an executable JavaScript URL: ```html <a href='javascript:alert(1)'>javascript:alert(1)</a> ``` Because the value is inserted directly into the `href` attribute without scheme validation or normalization, browsers interpret it as a JavaScript URI. When a user clicks the link, the JavaScript executes in the origin of the Rack application. ## Impact If `Rack::Directory` is used to expose filesystem contents over HTTP, an attacker who can create or upload files within that directory may introduce a malicious filename beginning with `javascript:`. When a user visits the directory listing and clicks the entry, arbitrary JavaScript executes in the application's origin. Exploitation requires user interaction (clicking the malicious entry). ## Mitigation * Update to a patched version of Rack in which `Rack::Directory` prefixes generated anchors with a relative path indicator (e.g. `./filename`). * Avoid exposing user-controlled directories via `Rack::Directory`. * Apply a strict Content Security Policy (CSP) to reduce impact of potential client-side execution issues. * Where feasible, restrict or sanitize uploaded filenames to disallow dangerous URI scheme prefixes. HackerOne profile: https://hackerone.com/thesmartshadow GitHub account owner: Ali Firas (@thesmartshadow)
3.1.20
Affected by 0 other vulnerabilities.
3.2.5
Affected by 0 other vulnerabilities.
Vulnerabilities fixed by this package (1)
Vulnerability Summary Aliases
VCID-7wvj-9h3p-23am ReDoS Vulnerability in Rack::Multipart handle_mime_head ### Summary There is a denial of service vulnerability in the Content-Disposition parsing component of Rack. This is very similar to the previous security issue CVE-2022-44571. ### Details Carefully crafted input can cause Content-Disposition header parsing in Rack to take an unexpected amount of time, possibly resulting in a denial of service attack vector. This header is used typically used in multipart parsing. Any applications that parse multipart posts using Rack (virtually all Rails applications) are impacted. ### Credits Thanks to [scyoon](https://hackerone.com/scyoon) for reporting this to the Rails security team CVE-2025-49007
GHSA-47m2-26rw-j2jw

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-12T01:42:22.973165+00:00 GitLab Importer Affected by VCID-9rpp-9xss-duf6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2026-22860.yml 38.3.0
2026-04-12T01:42:13.152615+00:00 GitLab Importer Affected by VCID-skxv-7he3-xqgc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2026-25500.yml 38.3.0
2026-04-12T01:08:50.033460+00:00 GitLab Importer Affected by VCID-d58r-22kr-9bct https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-61780.yml 38.3.0
2026-04-12T01:08:47.683740+00:00 GitLab Importer Affected by VCID-s971-gkdg-jkhc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-61919.yml 38.3.0
2026-04-12T01:08:13.856689+00:00 GitLab Importer Affected by VCID-npag-sz7d-v7b6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-61770.yml 38.3.0
2026-04-12T01:08:13.187974+00:00 GitLab Importer Affected by VCID-azu5-jcmd-3ufx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-61772.yml 38.3.0
2026-04-12T01:08:09.463023+00:00 GitLab Importer Affected by VCID-c5sc-7qnn-mkb9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-61771.yml 38.3.0
2026-04-12T00:50:05.215898+00:00 GitLab Importer Fixing VCID-7wvj-9h3p-23am https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-49007.yml 38.3.0
2026-04-11T21:39:34.211788+00:00 Ruby Importer Affected by VCID-s971-gkdg-jkhc https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61919.yml 38.3.0
2026-04-11T21:39:32.069056+00:00 Ruby Importer Affected by VCID-d58r-22kr-9bct https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61780.yml 38.3.0
2026-04-11T21:39:30.480068+00:00 Ruby Importer Affected by VCID-npag-sz7d-v7b6 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61770.yml 38.3.0
2026-04-11T21:39:28.580752+00:00 Ruby Importer Affected by VCID-c5sc-7qnn-mkb9 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61771.yml 38.3.0
2026-04-11T21:39:26.980570+00:00 Ruby Importer Affected by VCID-azu5-jcmd-3ufx https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61772.yml 38.3.0
2026-04-11T21:39:12.164322+00:00 Ruby Importer Affected by VCID-7wvj-9h3p-23am https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-49007.yml 38.3.0
2026-04-11T21:39:12.099330+00:00 Ruby Importer Fixing VCID-7wvj-9h3p-23am https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-49007.yml 38.3.0
2026-04-07T04:57:56.062407+00:00 GHSA Importer Fixing VCID-7wvj-9h3p-23am https://github.com/advisories/GHSA-47m2-26rw-j2jw 38.1.0
2026-04-03T01:51:15.722052+00:00 GitLab Importer Affected by VCID-9rpp-9xss-duf6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2026-22860.yml 38.1.0
2026-04-03T01:51:06.568241+00:00 GitLab Importer Affected by VCID-skxv-7he3-xqgc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2026-25500.yml 38.1.0
2026-04-03T01:17:32.038679+00:00 GitLab Importer Affected by VCID-d58r-22kr-9bct https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-61780.yml 38.1.0
2026-04-03T01:17:29.450005+00:00 GitLab Importer Affected by VCID-s971-gkdg-jkhc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-61919.yml 38.1.0
2026-04-03T01:16:52.640021+00:00 GitLab Importer Affected by VCID-npag-sz7d-v7b6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-61770.yml 38.1.0
2026-04-03T01:16:52.059054+00:00 GitLab Importer Affected by VCID-azu5-jcmd-3ufx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-61772.yml 38.1.0
2026-04-03T01:16:48.647382+00:00 GitLab Importer Affected by VCID-c5sc-7qnn-mkb9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-61771.yml 38.1.0
2026-04-03T00:58:08.721608+00:00 GitLab Importer Fixing VCID-7wvj-9h3p-23am https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-49007.yml 38.1.0
2026-04-02T19:37:00.585001+00:00 Ruby Importer Affected by VCID-s971-gkdg-jkhc https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61919.yml 38.1.0
2026-04-02T19:36:59.748022+00:00 Ruby Importer Affected by VCID-d58r-22kr-9bct https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61780.yml 38.1.0
2026-04-02T19:36:59.089841+00:00 Ruby Importer Affected by VCID-npag-sz7d-v7b6 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61770.yml 38.1.0
2026-04-02T19:36:58.288913+00:00 Ruby Importer Affected by VCID-c5sc-7qnn-mkb9 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61771.yml 38.1.0
2026-04-02T19:36:57.611424+00:00 Ruby Importer Affected by VCID-azu5-jcmd-3ufx https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61772.yml 38.1.0
2026-04-02T19:36:49.864636+00:00 Ruby Importer Affected by VCID-7wvj-9h3p-23am https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-49007.yml 38.1.0
2026-04-02T19:36:49.836189+00:00 Ruby Importer Fixing VCID-7wvj-9h3p-23am https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-49007.yml 38.1.0
2026-04-02T12:41:30.147310+00:00 GitLab Importer Fixing VCID-7wvj-9h3p-23am https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rack/CVE-2025-49007.yml 38.0.0
2026-04-01T15:54:41.613233+00:00 Ruby Importer Affected by VCID-s971-gkdg-jkhc https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61919.yml 38.0.0
2026-04-01T15:54:39.429649+00:00 Ruby Importer Affected by VCID-d58r-22kr-9bct https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61780.yml 38.0.0
2026-04-01T15:54:37.773506+00:00 Ruby Importer Affected by VCID-npag-sz7d-v7b6 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61770.yml 38.0.0
2026-04-01T15:54:35.157157+00:00 Ruby Importer Affected by VCID-c5sc-7qnn-mkb9 https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61771.yml 38.0.0
2026-04-01T15:54:33.539021+00:00 Ruby Importer Affected by VCID-azu5-jcmd-3ufx https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-61772.yml 38.0.0
2026-04-01T15:54:17.791723+00:00 Ruby Importer Affected by VCID-7wvj-9h3p-23am https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-49007.yml 38.0.0
2026-04-01T15:54:17.730312+00:00 Ruby Importer Fixing VCID-7wvj-9h3p-23am https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rack/CVE-2025-49007.yml 38.0.0
2026-04-01T12:56:50.623189+00:00 GithubOSV Importer Fixing VCID-7wvj-9h3p-23am https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/06/GHSA-47m2-26rw-j2jw/GHSA-47m2-26rw-j2jw.json 38.0.0