Sha256: 01cd3391d2b2dbbedad39060e7364e3ee854c73c9960b2029fe88bbae4d7ab4e
Contents?: true
Size: 1.11 KB
Versions: 17
Compression:
Stored size: 1.11 KB
Contents
module Dawn module Kb # Automatically created with rake on 2014-01-06 class CVE_2004_0755 include RubyVersionCheck def initialize message = "The FileStore capability in CGI::Session for Ruby before 1.8.1, and possibly PStore, creates files with insecure permissions, which can allow local users to steal session information and hijack sessions." super({ :name=>"CVE-2004-0755", :cvss=>"AV:L/AC:L/Au:N/C:P/I:N/A:N", :release_date => Date.new(2004, 10, 20), :cve=>"2004-0755", :severity=>:medium, :priority=>:medium, :cwe=>"", :owasp=>"A9", :applies=>["rails", "sinatra", "padrino"], :kind=>Dawn::KnowledgeBase::RUBY_VERSION_CHECK, :message=>message, :mitigation=>"Upgrade your ruby interpreter", :aux_links=>["http://xforce.iss.net/xforce/xfdb/16996"] }) self.safe_rubies = [{:engine=>"ruby", :version=>"1.8.999", :patchlevel=>"p0"}, {:engine=>"ruby", :version=>"1.6.999", :patchlevel=>"p0"}] end end end end
Version data entries
17 entries across 17 versions & 1 rubygems