Back to overview

CVE-2026-44587

MEDIUM
4.7
CVSS 3.1
Description
CarrierWave is a framework to upload files from Ruby applications. In versions prior to 2.2.7 and 3.1.3, the content_type_denylist check fails to escape regex metacharacters in string entries, causing the denylist to silently not match the content types it is intended to block. In lib/carrierwave/uploader/content_type_denylist.rb:57, denylist entries are interpolated directly into a regex without Regexp.quote or anchoring, so an entry such as image/svg+xml becomes the pattern /image\/svg+xml/, in which + is treated as a quantifier rather than a literal character and therefore never matches the real MIME type image/svg+xml. This is inconsistent with the allowlist implementation, which correctly applies both Regexp.quote and a \A anchor. Other content types containing regex metacharacters, such as application/xhtml+xml, are affected as well. As a result, any application that relies on content_type_denylist to block image/svg+xml, most commonly to prevent stored XSS, is silently unprotected. An attacker can upload an SVG file containing arbitrary JavaScript; if the application serves that SVG inline from its own origin, the script executes in the victim's browser, resulting in stored XSS. This issue has been fixed in versions 2.2.7 and 3.1.3.

Metadata

CVE ID
CVE-2026-44587
State
PUBLISHED
Assigner
GitHub_M
Reserved
2026-05-06 21:49 UTC
Published
2026-06-16 23:10 UTC
Last updated
2026-06-16 23:10 UTC
Primary CWE
CWE-625
CWE-625: Permissive Regular Expression
Vendor / Product
carrierwaveuploader / carrierwave
Sources
cve.org  ·  NVD

Severity & Metrics

4.7 MEDIUM CVSS 3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:N/A:N
Affected products (1)
VendorProductPlatformVersions
carrierwaveuploader carrierwave < 2.2.7, >= 3.0.0.rc, < 3.1.3
Weakness (CWE)
CWESourceDescription
CWE-184 cna CWE-184: Incomplete List of Disallowed Inputs
CWE-625 cna CWE-625: Permissive Regular Expression
CWE-79 cna CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
CVSS scores (1)
ScoreSeverityVersionSourceVector
4.7 MEDIUM 3.1 cna CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:N/A:N
References (3)
Back to overview