Sha256: 251a0d5bbc8f883bf3bc8ca5beea850b679a0d9fec7c8c089904e544b30f9387
Contents?: true
Size: 1.15 KB
Versions: 19
Compression:
Stored size: 1.15 KB
Contents
module Dawn module Kb # Automatically created with rake on 2014-02-06 class CVE_2013_0262 include DependencyCheck def initialize message = "rack/file.rb (Rack::File) in Rack 1.5.x before 1.5.2 and 1.4.x before 1.4.5 allows attackers to access arbitrary files outside the intended root directory via a crafted PATH_INFO environment variable, probably a directory traversal vulnerability that is remotely exploitable, aka \"symlink path traversals.\"" super({ :name=>"CVE-2013-0262", :cvss=>"AV:N/AC:M/Au:N/C:P/I:N/A:N", :release_date => Date.new(2013, 2, 8), :cwe=>"22", :owasp=>"A9", :applies=>["rails", "sinatra", "padrino"], :kind=>Dawn::KnowledgeBase::DEPENDENCY_CHECK, :message=>message, :mitigation=>"Please upgrade rack version up to version 1.5.2 or 1.4.5 or higher.", :aux_links=>["https://groups.google.com/forum/#%21msg/rack-devel/mZsuRonD7G8/DpZIOmMLbOgJ"] }) self.save_minor = true self.safe_dependencies = [{:name=>"rack", :version=>['1.5.2', '1.4.5']}] end end end end
Version data entries
19 entries across 19 versions & 1 rubygems