Class: Risu::Parsers::Nessus::PostProcess::SevenZipPatchRollup

Inherits:
Base::PostProcessBase show all
Defined in:
lib/risu/parsers/nessus/postprocess/7zip.rb

Instance Attribute Summary

Attributes inherited from Base::PostProcessBase

#info

Instance Method Summary collapse

Methods inherited from Base::PostProcessBase

#<=>, #==, #calculate_severity, #create_item, #create_plugin, #has_findings, #has_host_findings, inherited, #run

Constructor Details

#initializeSevenZipPatchRollup

Returns a new instance of SevenZipPatchRollup.



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/risu/parsers/nessus/postprocess/7zip.rb', line 29

def initialize
	@info =
	{
		:description => "7-Zip Patch Rollup",
		:plugin_id => -99954,
		:plugin_name => "Missing the latest 7-Zip Patches",
		:item_name => "Update to the latest 7-Zip",
		:plugin_ids => [
			91230, #7-Zip < 16.00 Multiple Vulnerabilities
			109730, #7-Zip < 18.05 Memory Corruption Arbitrary Code Execution
			109799, #7-Zip < 16.03 NULL Pointer Dereference DoS
109800, #7-Zip < 18.00 Multiple Vulnerabilities
		]
	}
end