ruby-nessus 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/ruby-nessus/cli.rb +3 -4
- data/lib/ruby-nessus/version.rb +1 -1
- metadata +2 -2
data/lib/ruby-nessus/cli.rb
CHANGED
|
@@ -71,11 +71,10 @@ module Nessus
|
|
|
71
71
|
|
|
72
72
|
unless scan.version == 1
|
|
73
73
|
Log.h5 "Informational Count", host.informational_severity_count
|
|
74
|
+
Log.h5 "Low Count", host.low_severity_count
|
|
75
|
+
Log.h5 "Medium Count", host.medium_severity_count
|
|
76
|
+
Log.h5 "High Count", host.high_severity_count
|
|
74
77
|
end
|
|
75
|
-
|
|
76
|
-
Log.h5 "Low Count", host.low_severity_count
|
|
77
|
-
Log.h5 "Medium Count", host.medium_severity_count
|
|
78
|
-
Log.h5 "High Count", host.high_severity_count
|
|
79
78
|
Log.it
|
|
80
79
|
end
|
|
81
80
|
|
data/lib/ruby-nessus/version.rb
CHANGED