Class: Risu::Parsers::Nessus::PostProcess::OpenSSHRollups
- Inherits:
-
Base::PostProcessBase
- Object
- Base::PostProcessBase
- Risu::Parsers::Nessus::PostProcess::OpenSSHRollups
- Defined in:
- lib/risu/parsers/nessus/postprocess/openssh.rb
Instance Attribute Summary
Attributes inherited from Base::PostProcessBase
Instance Method Summary collapse
-
#initialize ⇒ OpenSSHRollups
constructor
A new instance of OpenSSHRollups.
Methods inherited from Base::PostProcessBase
#<=>, #==, #calculate_severity, #create_item, #create_plugin, #has_findings, #has_host_findings, inherited, #run
Constructor Details
#initialize ⇒ OpenSSHRollups
Returns a new instance of OpenSSHRollups.
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 69 |
# File 'lib/risu/parsers/nessus/postprocess/openssh.rb', line 29 def initialize @info = { :description => "OpenSSH Patch Rollup", :plugin_id => -99995, :plugin_name => "Missing the latest OpenSSH Patches", :item_name => "Update to the latest OpenSSH", :plugin_ids => [ 11837, 17702, 44077, 44078, 44065, 31737, 44074, 44076, 44079, 19592, 44075, 53841, 44080, 44077, 44078, 85382, 86122, 10883, 11031, 10771, 10823, 10954, 11712, 44072, 10802, ] } end |