Class: Risu::Parsers::Nessus::PostProcess::DropbearSSHServerPatchRollup

Inherits:
Base::PostProcessBase show all
Defined in:
lib/risu/parsers/nessus/postprocess/dropbear_ssh.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

#initializeDropbearSSHServerPatchRollup

Returns a new instance of DropbearSSHServerPatchRollup.



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

def initialize
	@info =
	{
		:description => "Dropbear SSH Server Patch Rollup",
		:plugin_id => -99952,
		:plugin_name => "Missing the latest Dropbear SSH Server Patches",
		:item_name => "Update to the latest Dropbear SSH Server",
		:plugin_ids => [
			93650, #Dropbear SSH Server < 2016.72 Multiple Vulnerabilities
			58183, #Dropbear SSH Server Channel Concurrency Use-after-free Remote Code Execution
			70545, #Dropbear SSH Server < 2013.59 Multiple Vulnerabilities
			21023, #Dropbear SSH Authorization-pending Connection Saturation DoS
			34769, #Dropbear SSH Server svr_ses.childpidsize Remote Overflow
		]
	}
end