Sha256: 063eb086be3533f981378674e0d7f59bb83030c8dad1df3fa700c96e680726c6
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
module Dawn module Kb # Automatically created with rake on 2016-03-01 class CVE_2016_2098 # Include the testing skeleton for this CVE # include PatternMatchCheck include DependencyCheck # include RubyVersionCheck def initialize message = "There is a possible remote code execution vulnerability in Action Pack. Applications that pass unverified user input to the render method in a controller or a view may be vulnerable to a code injection." title = "Possible remote code execution vulnerability in Action Pack" super({ :title=>title, :name=> "CVE-2016-2098", :cve=>"2016-2098", :osvdb=>"", :cvss=>"", :release_date => Date.new(2016, 2, 29), :cwe=>"", :owasp=>"A9", :applies=>["rails", "sinatra", "padrino"], :kind=>Dawn::KnowledgeBase::DEPENDENCY_CHECK, :message=>message, :mitigation=>"Please upgrade actionpack gem to version 3.2.22.2, 4.1.14.2, 4.2.5.2, 5.0.0 or later.", :aux_links=>[] }) self.safe_dependencies = [{:name=>"actionpack", :version=>['3.2.22.2', '4.1.14.2', '4.2.5.2', '5.0.0']}] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dawnscanner-1.6.2 | lib/dawn/kb/cve_2016_2098.rb |