Class: Dawn::Kb::OSVDB_105971
- Inherits:
-
Object
- Object
- Dawn::Kb::OSVDB_105971
- Includes:
- DependencyCheck
- Defined in:
- lib/dawn/kb/osvdb_105971.rb
Overview
Automatically created with rake on 2014-04-17
Constant Summary
Constants included from BasicCheck
Instance Attribute Summary
Attributes included from DependencyCheck
#aux_mitigation_gem, #dependencies, #not_affected, #safe_dependencies, #save_major, #save_minor
Attributes included from BasicCheck
#applies, #aux_links, #check_family, #cve, #cvss, #cwe, #debug, #evidences, #fixes_version, #kind, #message, #mitigated, #name, #osvdb, #owasp, #priority, #release_date, #remediation, #ruby_version, #ruby_vulnerable_versions, #severity, #status, #target_version, #title
Instance Method Summary collapse
-
#initialize ⇒ OSVDB_105971
constructor
A new instance of OSVDB_105971.
Methods included from DependencyCheck
Methods included from BasicCheck
#applies_to?, #cve_link, #cvss_score, families, #family, #family=, #lint, #mitigated?, #nvd_link, #osvdb_link, #rubysec_advisories_link
Methods included from Utils
#__debug_me_and_return, #debug_me, #debug_me_and_return_false, #debug_me_and_return_true
Constructor Details
#initialize ⇒ OSVDB_105971
Returns a new instance of OSVDB_105971.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/dawn/kb/osvdb_105971.rb', line 7 def initialize = "sfpagent Gem for Ruby contains a flaw that is triggered as JSON[body] input is not properly sanitized when handling module names with shell metacharacters. This may allow a context-dependent attacker to execute arbitrary commands." super({ :name=> "OSVDB-105971", :cvss=>"AV:N/AC:L/Au:N/C:P/I:P/A:P", :cve=>"2014-2888", :osvdb=> "105971", :release_date => Date.new(2014, 4, 16), :cwe=>"", :owasp=>"A9", :applies=>["rack", "sinatra", "padrino", "rails"], :kind=>Dawn::KnowledgeBase::DEPENDENCY_CHECK, :message=>, :mitigation=>"Please upgrade sfpagent version at least to 0.4.15. As a general rule, using the latest stable version is recommended.", :aux_links=>["http://seclists.org/oss-sec/2014/q2/118"] }) self.safe_dependencies = [{:name=>"sfpagent", :version=>['0.4.15']}] end |