Class: Dawn::Kb::CVE_2013_1655

Inherits:
Object
  • Object
show all
Includes:
ComboCheck
Defined in:
lib/dawn/kb/cve_2013_1655.rb

Constant Summary

Constants included from BasicCheck

BasicCheck::ALLOWED_FAMILIES

Instance Attribute Summary

Attributes included from ComboCheck

#checks, #options, #vulnerable_checks

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

Methods included from ComboCheck

#dump_status, find_vulnerable_checks_by_class, #vuln?

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

#initializeCVE_2013_1655

Returns a new instance of CVE_2013_1655.



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/dawn/kb/cve_2013_1655.rb', line 43

def initialize
  message = "Puppet 2.7.x before 2.7.21 and 3.1.x before 3.1.1, when
  running Ruby 1.9.3 or later, allows remote attackers to execute
  arbitrary code via vectors related to \"serialized attributes.\""

  super({
    :name=>"CVE-2013-1655",
    :cvss=>"AV:N/AC:L/Au:N/C:P/I:P/A:P",
    :release_date => Date.new(2013, 3, 20),
    :cwe=>"20",
    :owasp=>"A9", 
    :applies=>["rails", "sinatra", "padrino"],
    :kind=>Dawn::KnowledgeBase::COMBO_CHECK,
    :message=>message,
    :mitigation=>"Please upgrade puppet gem to a newer version",
    :aux_links=>["https://puppetlabs.com/security/cve/cve-2013-1655/"],
    :checks=>[CVE_2013_1655_a.new, CVE_2013_1655_b.new]
  })

end