Class: Dawn::Kb::CVE_2011_0188_b
- Inherits:
-
Object
- Object
- Dawn::Kb::CVE_2011_0188_b
- Includes:
- OperatingSystemCheck
- Defined in:
- lib/dawn/kb/cve_2011_0188.rb
Constant Summary
Constants included from BasicCheck
Instance Attribute Summary
Attributes included from OperatingSystemCheck
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 ⇒ CVE_2011_0188_b
constructor
A new instance of CVE_2011_0188_b.
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
#initialize ⇒ CVE_2011_0188_b
Returns a new instance of CVE_2011_0188_b.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/dawn/kb/cve_2011_0188.rb', line 27 def initialize = "CVE_2011_0188_b: Only on Mac OS X 10.6.7 and earlier" super({ :name=>"CVE-2011-0188_b", :kind=>Dawn::KnowledgeBase::OS_CHECK, }) self.safe_os = [ {:family=>"osx", :vendor=>"apple", :version=>['10.6.8']}, {:family=>"osx", :vendor=>"apple", :version=>['10.5.9']} ] end |