CarrierWave jest frameworkiem do przesyłania plików z aplikacji Ruby. W wersjach przed 2.2.7 i 3.1.3 sprawdzenie content_type_denylist nie escapeuje metacharakterów regex w wpisach string, powodując, że lista blokowania dyskretnie nie pasuje do typów zawartości, które miała zablokować. W lib/carrierwave/uploader/content_type_denylist.rb:57 wpisy listy są interpolowane bezpośrednio do regex bez Regexp.quote lub anchorsowania, więc wpis taki jak image/svg+xml staje się wzorem /image\/svg+xml/, w którym + jest traktowany jako quantifier zamiast znaku dosłownego i nigdy nie pasuje do rzeczywistego typu MIME image/svg+xml. W wyniku tego każda aplikacja polegająca na content_type_denylist do blokowania image/svg+xml, najczęściej w celu zapobiegania stored XSS, jest dyskretnie pozbawiona ochrony – atakujący może przesłać plik SVG zawierający dowolny JavaScript, a jeśli aplikacja serwuje ten
▸ Pokaż oryginał (EN)
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.
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:N/A:NCarrierwave Project Carrierwave
APPCarrierwave Project< 2.2.73.0.0 – 3.1.3 (bez)
Powiązane podatności
CarrierWave is an open-source RubyGem which provides a simple and flexible way to upload files from Ruby appli...
CarrierWave is a solution for file uploads for Rails, Sinatra and other Ruby web frameworks. The vulnerability...
CarrierWave is a solution for file uploads for Rails, Sinatra and other Ruby web frameworks. CarrierWave has a...
CarrierWave is an open-source RubyGem which provides a simple and flexible way to upload files from Ruby appli...