Class: Dawn::Kb::CVE_2010_2489_b

Inherits:
Object
  • Object
show all
Includes:
OperatingSystemCheck
Defined in:
lib/dawn/kb/cve_2010_2489.rb

Constant Summary

Constants included from BasicCheck

BasicCheck::ALLOWED_FAMILIES

Instance Attribute Summary

Attributes included from OperatingSystemCheck

#safe_os, #target_os

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 OperatingSystemCheck

#different_family?, #different_vendor?, #os_detect, #vuln?, #vulnerable_os?

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_2010_2489_b

Returns a new instance of CVE_2010_2489_b.



23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/dawn/kb/cve_2010_2489.rb', line 23

def initialize
  message =  "CVE_2010_2489_a: Only on Windows"
  super({
    :name=>"CVE_2010_2489_ab",
    :kind=>Dawn::KnowledgeBase::OS_CHECK,
  })

  self.safe_os = [
    {:family=>"windows", :vendor=>"microsoft", :version=>['none']}
  ]

end