Sha256: 280b8fb3995159ae7b0348860b33c357a6bce70b7f3096673c0841b78ff6fe47
Contents?: true
Size: 1.3 KB
Versions: 10
Compression:
Stored size: 1.3 KB
Contents
module Dawn module Kb # Automatically created with rake on 2016-02-02 class CVE_2015_8317 # Include the testing skeleton for this CVE include DependencyCheck def initialize message = "The xmlParseXMLDecl function in parser.c in libxml2 before 2.9.3 allows context-dependent attackers to obtain sensitive information via an (1) unterminated encoding value or (2) incomplete XML declaration in XML data, which triggers an out-of-bounds heap read" super({ :title=>title, :name=> "CVE-2015-8317", :cve=>"2015-8317", :osvdb=>"", :cvss=>"AV:N/AC:L/Au:N/C:P/I:N/A:N", :release_date => Date.new(2015, 12, 15), :cwe=>"119", :owasp=>"A9", :applies=>["rails", "sinatra", "padrino"], :kind=>Dawn::KnowledgeBase::DEPENDENCY_CHECK, :message=>message, :mitigation=>"Please upgrade nokogiri gem to version 1.6.7.1 or later.", :aux_links=>["https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s"] }) self.safe_dependencies = [{:name=>"nokogiri", :version=>['1.6.7.1']}] self.not_affected = {:name=>"nokogiri", :version=>['1.5.x', '1.4.x', '1.3.x', '1.1.x', '1.0.x', '0.x.x']} end end end end
Version data entries
10 entries across 10 versions & 1 rubygems