Class: Risu::Parsers::Nessus::PostProcess::MicrosoftOfficeRollup
- Inherits:
-
Base::PostProcessBase
- Object
- Base::PostProcessBase
- Risu::Parsers::Nessus::PostProcess::MicrosoftOfficeRollup
- Defined in:
- lib/risu/parsers/nessus/postprocess/microsoft_office.rb
Instance Attribute Summary
Attributes inherited from Base::PostProcessBase
Instance Method Summary collapse
-
#initialize ⇒ MicrosoftOfficeRollup
constructor
A new instance of MicrosoftOfficeRollup.
Methods inherited from Base::PostProcessBase
#<=>, #==, #calculate_severity, #create_item, #create_plugin, #has_findings, #has_host_findings, inherited, #run
Constructor Details
#initialize ⇒ MicrosoftOfficeRollup
Returns a new instance of MicrosoftOfficeRollup.
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/risu/parsers/nessus/postprocess/microsoft_office.rb', line 29 def initialize @info = { :description => "Microsoft Office Patch Rollup", :plugin_id => -99946, :plugin_name => "Missing the latest Microsoft Office Patches", :item_name => "Update to the latest Microsoft Office", :plugin_ids => [ 22031, #MS06-037: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (917285) 22032, #MS06-038: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (917284) 22033, #MS06-039: Vulnerabilities in Microsoft Office Filters Could Allow Remote Code Execution (915384) 31046, #MS08-012: Vulnerability in Microsoft Publisher Could Allow Remote Code Execution (947085) 31047, #MS08-013: Vulnerability in Microsoft Office Could Allow Remote Code Execution (947108) 31413, #MS08-014: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (949029) 31414, #MS08-015: Vulnerability in Microsoft Outlook Could Allow Remote Code Execution (949031) 31415, #MS08-016: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (949030) 91611, #MS16-070: Security Update for Microsoft Office (3163610) 92019, #MS16-088: Security Update for Microsoft Office (3170008) 92839, #MS16-099: Security Update for Microsoft Office (3177451) 125071, #Security Updates for Microsoft Office Products (May 2019) 125072, #Security Updates for Microsoft Word Products (May 2019) 125832, #Security Updates for Microsoft Word Products (June 2019) 118926, #Security Updates for Microsoft Office Viewer Products (November 2018) 96391, #MS17-002: Security Update for Microsoft Office (3214291) 126580, #Security Updates for Microsoft Excel Products (July 2019) 126583, #Security Updates for Microsoft Office Products (July 2019) 127853, #Security Updates for Microsoft Office Products (August 2019) 108976, #Security Updates for Microsoft Word Products (April 2018) 110492, #Security Updates for Microsoft Excel Products (June 2018) 122128, #Security Updates for Microsoft Excel Products (February 2019) 126585, #Security Updates for Outlook (July 2019) 127854, #Security Updates for Outlook (August 2019) 127856, #Security Updates for Microsoft Word Products (August 2019) 128645, #Security Updates for Microsoft Excel Products (September 2019) 128648, #Security Updates for Microsoft Office Products (September 2019) 108293, #Security Updates for Microsoft Excel Products (March 2018) ] } end |