Sha256: c5103b2421ff64d794810e36e4da93e4651e4ef9ec38cfbc8851025242ed0333
Contents?: true
Size: 1.09 KB
Versions: 19
Compression:
Stored size: 1.09 KB
Contents
module Dawn module Kb # Automatically created with rake on 2014-01-09 class CVE_2008_5189 include DependencyCheck def initialize message = "CRLF injection vulnerability in Ruby on Rails before 2.0.5 allows remote attackers to inject arbitrary HTTP headers and conduct HTTP response splitting attacks via a crafted URL to the redirect_to function." super({ :name=>"CVE-2008-5189", :cvss=>"AV:N/AC:L/Au:N/C:N/I:P/A:N", :release_date => Date.new(2008, 11, 21), :cwe=>"352", :owasp=>"A8", :applies=>["rails"], :kind=>Dawn::KnowledgeBase::DEPENDENCY_CHECK, :message=>message, :mitigation=>"Please upgrade rails version at least to 2.0.5 or higher. As a general rule, using the latest stable rails version is recommended.", :aux_links=>["http://weblog.rubyonrails.org/2008/10/19/response-splitting-risk"] }) self.safe_dependencies = [{:name=>"rails", :version=>['2.0.5', '1.9.999', '1.2.999', '1.1.999', '0.999.999']}] end end end end
Version data entries
19 entries across 19 versions & 1 rubygems