risu 1.5.3 → 1.6.0

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.
Files changed (60) hide show
  1. data/Gemfile.ci +1 -0
  2. data/LICENSE +1 -1
  3. data/NEWS.markdown +80 -3
  4. data/README.markdown +9 -8
  5. data/Rakefile +7 -7
  6. data/bin/risu +1 -1
  7. data/lib/risu.rb +6 -3
  8. data/lib/risu/base.rb +2 -1
  9. data/lib/risu/base/schema.rb +8 -4
  10. data/lib/risu/base/template_base.rb +3 -1
  11. data/lib/risu/base/template_helper.rb +115 -0
  12. data/lib/risu/base/template_manager.rb +1 -1
  13. data/lib/risu/base/templater.rb +3 -4
  14. data/lib/risu/cli.rb +1 -1
  15. data/lib/risu/cli/application.rb +3 -10
  16. data/lib/risu/cli/banner.rb +1 -1
  17. data/lib/risu/exceptions.rb +1 -1
  18. data/lib/risu/exceptions/invaliddocument.rb +1 -1
  19. data/lib/risu/models.rb +1 -1
  20. data/lib/risu/models/familyselection.rb +1 -1
  21. data/lib/risu/models/host.rb +92 -9
  22. data/lib/risu/models/individualpluginselection.rb +1 -1
  23. data/lib/risu/models/item.rb +47 -13
  24. data/lib/risu/models/patch.rb +1 -1
  25. data/lib/risu/models/plugin.rb +9 -1
  26. data/lib/risu/models/pluginspreference.rb +1 -1
  27. data/lib/risu/models/policy.rb +1 -1
  28. data/lib/risu/models/reference.rb +69 -9
  29. data/lib/risu/models/report.rb +1 -1
  30. data/lib/risu/models/serverpreference.rb +1 -1
  31. data/lib/risu/models/servicedescription.rb +1 -1
  32. data/lib/risu/models/version.rb +1 -1
  33. data/lib/risu/parsers.rb +1 -1
  34. data/lib/risu/parsers/nessus/nessus_document.rb +1 -1
  35. data/lib/risu/parsers/nessus/nessus_sax_listener.rb +69 -50
  36. data/lib/risu/parsers/nexpose/nexpose_document.rb +2 -5
  37. data/lib/risu/parsers/nexpose/simple_nexpose.rb +1 -1
  38. data/lib/risu/renderers.rb +1 -1
  39. data/lib/risu/renderers/nilrenderer.rb +1 -1
  40. data/lib/risu/templates/assets.rb +17 -29
  41. data/lib/risu/templates/cover_sheet.rb +40 -44
  42. data/lib/risu/templates/exec_summary.rb +11 -20
  43. data/lib/risu/templates/{executive_summary.rb → executive_summary_detailed.rb} +2 -11
  44. data/lib/risu/templates/finding_statistics.rb +1 -1
  45. data/lib/risu/templates/findings_host.rb +1 -1
  46. data/lib/risu/templates/findings_summary.rb +25 -86
  47. data/lib/risu/templates/findings_summary_with_pluginid.rb +1 -1
  48. data/lib/risu/templates/graphs.rb +1 -1
  49. data/lib/risu/templates/host_summary.rb +18 -14
  50. data/lib/risu/templates/ms_patch_summary.rb +17 -24
  51. data/lib/risu/templates/ms_update_summary.rb +1 -1
  52. data/lib/risu/templates/ms_wsus_findings.rb +1 -1
  53. data/lib/risu/templates/notable.rb +10 -14
  54. data/lib/risu/templates/notable_detailed.rb +43 -54
  55. data/lib/risu/templates/pci_compliance.rb +28 -34
  56. data/lib/risu/templates/stig_findings_summary.rb +25 -38
  57. data/lib/risu/templates/technical_findings.rb +46 -55
  58. data/lib/risu/templates/template.rb +4 -3
  59. data/risu.gemspec +12 -11
  60. metadata +79 -61
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2012 Arxopia LLC.
1
+ # Copyright (c) 2010-2013 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -26,132 +26,123 @@
26
26
 
27
27
  module Risu
28
28
  module Templates
29
- class TechnicalFindings < Risu::Base::TemplateBase
29
+ class TechnicalFindingsTemplate < Risu::Base::TemplateBase
30
+ include TemplateHelper
30
31
 
31
- #
32
- #
33
32
  def initialize ()
34
33
  @template_info =
35
34
  {
36
35
  :name => "technical_findings",
37
36
  :author => "hammackj",
38
- :version => "0.0.3",
37
+ :version => "0.0.5",
39
38
  :description => "Generates a Technical Findings Report"
40
39
  }
41
40
  end
42
41
 
43
- #
44
- #
45
42
  def render(output)
46
- output.text Report.classification.upcase, :align => :center
47
- output.text "\n"
48
-
49
- output.font_size(22) { output.text Report.title, :align => :center }
50
- output.font_size(18) {
51
- output.text "Critical and High Findings", :align => :center
52
- output.text "\n"
53
- output.text "This report was prepared by\n#{Report.author}", :align => :center
54
- }
43
+ text Report.classification.upcase, :align => :center
44
+ text "\n"
45
+
46
+ report_title Report.title
47
+ report_subtitle "Critical and High Findings"
48
+ report_author "This report was prepared by\n#{Report.author}"
55
49
 
56
- output.text "\n\n\n"
50
+ text "\n\n\n"
57
51
 
58
52
  unique_risks = Array.new
59
- unique_risks << Hash[:title => "Critical Findings", :color => "9B30FF", :values => Item.critical_risks_unique]
60
- unique_risks << Hash[:title => "High Findings", :color => "FF0000", :values => Item.high_risks_unique]
61
- # unique_risks << Hash[:title => "Medium Findings", :color => "FF8040", :values => Item.medium_risks_unique]
53
+ unique_risks << Hash[:title => "Critical Findings", :color => "9B30FF", :values => Item.critical_risks_unique] if Item.critical_risks_unique.all.size != 0
54
+ unique_risks << Hash[:title => "High Findings", :color => "FF0000", :values => Item.high_risks_unique] if Item.high_risks_unique.all.size != 0
62
55
 
63
- unique_risks.each do |h|
56
+ unique_risks.each_with_index do |h, index|
64
57
  if h[:values].length > 1
58
+
65
59
  output.font_size(18) do
66
60
  output.fill_color h[:color]
67
- output.text h[:title], :style => :bold
61
+ text h[:title], :style => :bold
68
62
  output.fill_color "000000"
69
63
  end
70
64
 
71
- output.font_size(10)
72
-
73
- output.text "\n"
65
+ text "\n"
74
66
 
75
67
  h[:values].each do |f|
76
68
 
77
- hosts = Item.where(:plugin_id => f.plugin_id)
69
+ hosts = Item.where(:plugin_id => f.plugin_id).group(:host_id)
78
70
  plugin = Plugin.find_by_id(f.plugin_id)
79
71
 
80
72
  references = Reference.where(:plugin_id => plugin.id).group(:value).order(:reference_name)
81
73
 
82
74
  output.font_size(16) do
83
- output.text "#{plugin.plugin_name}\n"
75
+ text "#{plugin.plugin_name}\n"
84
76
  end
85
77
 
86
78
  if hosts.length > 1
87
- output.text "Hosts", :style => :bold
79
+ text "Hosts", :style => :bold
88
80
  else
89
- output.text "Host", :style => :bold
81
+ text "Host", :style => :bold
90
82
  end
91
83
 
92
84
  hostlist = Array.new
93
85
  hosts.each do |host|
94
- h = Host.find_by_id(host.host_id)
86
+ ho = Host.find_by_id(host.host_id)
95
87
  #if h.id != blacklist_host_id.first.id
96
- hostlist << h.name
88
+ host_string = "#{ho.name}"
89
+ host_string << " (#{ho.fqdn})" if ho.fqdn != nil
90
+ hostlist << host_string
97
91
  #end
98
92
  end
99
93
 
100
- output.text hostlist.join(', ')
94
+ text hostlist.join(', ')
101
95
 
102
96
  if f.plugin_output != nil
103
- output.text "\nPlugin output", :style => :bold
104
- output.text f.plugin_output
97
+ text "\nPlugin output", :style => :bold
98
+ text f.plugin_output
105
99
  end
106
100
 
107
101
  if plugin.description != nil
108
- output.text "\nDescription", :style => :bold
109
- output.text plugin.description
102
+ text "\nDescription", :style => :bold
103
+ text plugin.description.gsub(/[ ]{2,}/, " "), :inline_format => true
110
104
  end
111
105
 
112
106
  if plugin.synopsis != nil
113
- output.text "\nSynopsis", :style => :bold
114
- output.text plugin.synopsis
107
+ text "\nSynopsis", :style => :bold
108
+ text plugin.synopsis
115
109
  end
116
110
 
117
111
  if plugin.cvss_base_score != nil
118
- output.text "\nCVSS Base Score", :style => :bold
119
- output.text plugin.cvss_base_score
112
+ text "\nCVSS Base Score", :style => :bold
113
+ text plugin.cvss_base_score
120
114
  end
121
115
 
122
116
  if plugin.exploit_available != nil
123
- output.text "\nExploit Available", :style => :bold
117
+ text "\nExploit Available", :style => :bold
124
118
 
125
119
  if plugin.exploit_available == "true"
126
- output.text "Yes"
120
+ text "Yes"
127
121
  else
128
- output.text "No"
122
+ text "No"
129
123
  end
130
124
  end
131
125
 
132
126
  if plugin.solution != nil
133
- output.text "\nSolution", :style => :bold
134
- output.text plugin.solution
127
+ text "\nSolution", :style => :bold
128
+ text plugin.solution
135
129
  end
136
130
 
137
131
  if references.size != 0
138
- output.text "\nReferences", :style => :bold
139
- references.each do |ref|
140
- ref_text = sprintf "%s: %s\n", ref.reference_name, ref.value
141
- output.text ref_text
142
- end
143
- output.text "\nNessus Plugin", :style => :bold
144
- output.text "http://www.tenablesecurity.com/plugins/index.php?view=single&id=#{f.plugin_id}"
132
+ text "\nReferences", :style => :bold
133
+ text plugin.references.reference_string, :inline_format => true
134
+ plugin_url = "http://www.tenablesecurity.com/plugins/index.php?view=single&id=#{plugin.id}"
135
+ text "<b>nessus_plugin</b>: #{plugin_url}", :inline_format => true, :link => plugin_url
145
136
  end
146
- output.text "\n"
137
+
138
+ text "\n"
147
139
  end
148
140
  end
149
141
 
150
- output.start_new_page unless h[:values] == nil
142
+ output.start_new_page if unique_risks[index+1] != nil
151
143
  end
152
144
 
153
145
  output.number_pages "<page> of <total>", :at => [output.bounds.right - 75, 0], :width => 150, :page_filter => :all
154
-
155
146
  end
156
147
  end
157
148
  end
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2012 Arxopia LLC.
1
+ # Copyright (c) 2010-2013 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -27,6 +27,7 @@
27
27
  module Risu
28
28
  module Templates
29
29
  class Template < Risu::Base::TemplateBase
30
+ include TemplateHelper
30
31
 
31
32
  # Initializes the template loading meta data
32
33
  #
@@ -35,7 +36,7 @@ module Risu
35
36
  {
36
37
  :name => "template",
37
38
  :author => "hammackj",
38
- :version => "0.0.2",
39
+ :version => "0.0.3",
39
40
  :description => "template"
40
41
  }
41
42
  end
@@ -43,7 +44,7 @@ module Risu
43
44
  # Called during the rendering process
44
45
  #
45
46
  def render(output)
46
- output.text "Template"
47
+ text "Template"
47
48
  output.start_new_page
48
49
  end
49
50
  end
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2012 Arxopia LLC.
1
+ # Copyright (c) 2010-2013 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -33,13 +33,13 @@ require 'risu'
33
33
  Gem::Specification.new do |s|
34
34
  s.name = "#{Risu::APP_NAME}"
35
35
  s.version = Risu::VERSION
36
- s.homepage = "http://www.hammackj.com/projects/risu"
36
+ s.homepage = "http://www.arxopia.com/projects/risu"
37
37
  s.summary = "#{Risu::APP_NAME}"
38
38
  s.description = "#{Risu::APP_NAME} is a Nessus .nessus XML parser and report generation tool"
39
39
  s.license = "BSD"
40
40
 
41
41
  s.author = "Jacob Hammack"
42
- s.email = "jacob.hammack@hammackj.com"
42
+ s.email = "risu@arxopia.com"
43
43
 
44
44
  s.files = Dir['[A-Z]*'] + Dir['lib/**/*'] + ['risu.gemspec']
45
45
  s.bindir = "bin"
@@ -48,17 +48,18 @@ Gem::Specification.new do |s|
48
48
  s.has_rdoc = 'yard'
49
49
  s.extra_rdoc_files = ["README.markdown", "LICENSE", "NEWS.markdown"]
50
50
 
51
- s.required_rubygems_version = ">= 1.6.0"
51
+ s.required_rubygems_version = ">= 1.8.24"
52
52
  s.rubyforge_project = "#{Risu::APP_NAME}"
53
53
 
54
- s.add_development_dependency("simplecov", [">= 0.9.9"])
55
- s.add_development_dependency("yard", [">= 0.6.4"])
54
+ s.add_development_dependency("simplecov", [">= 0.7.1"])
55
+ s.add_development_dependency("yard", [">= 0.8.3"])
56
56
 
57
- s.add_dependency('rails', ['>= 3.0.7'])
58
- s.add_dependency('libxml-ruby', ['>= 1.1.4'])
59
- s.add_dependency('prawn', ['>= 0.11.1'])
60
- s.add_dependency('gruff', ['>= 0.3.6'])
57
+ s.add_dependency('rails', ['>= 3.2.11'])
58
+ s.add_dependency('libxml-ruby', ['>= 2.4.0'])
59
+ s.add_dependency('prawn', ['>= 0.12.0'])
60
+ s.add_dependency('gruff', ['>= 0.3.7'])
61
61
  s.add_dependency('mysql2', ['>= 0.3.11'])
62
62
  s.add_dependency('rmagick', [">= 2.13.1"])
63
- s.add_dependency('sqlite3', [">= 1.3.3"])
63
+ s.add_dependency('sqlite3', [">= 1.3.7"])
64
+ s.add_dependency('nokogiri', [">=1.5.6"])
64
65
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: risu
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.3
4
+ version: 1.6.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-30 00:00:00.000000000 Z
12
+ date: 2013-02-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: simplecov
@@ -18,7 +18,7 @@ dependencies:
18
18
  requirements:
19
19
  - - ! '>='
20
20
  - !ruby/object:Gem::Version
21
- version: 0.9.9
21
+ version: 0.7.1
22
22
  type: :development
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.9
29
+ version: 0.7.1
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: yard
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -34,7 +34,7 @@ dependencies:
34
34
  requirements:
35
35
  - - ! '>='
36
36
  - !ruby/object:Gem::Version
37
- version: 0.6.4
37
+ version: 0.8.3
38
38
  type: :development
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
@@ -42,7 +42,7 @@ dependencies:
42
42
  requirements:
43
43
  - - ! '>='
44
44
  - !ruby/object:Gem::Version
45
- version: 0.6.4
45
+ version: 0.8.3
46
46
  - !ruby/object:Gem::Dependency
47
47
  name: rails
48
48
  requirement: !ruby/object:Gem::Requirement
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirements:
51
51
  - - ! '>='
52
52
  - !ruby/object:Gem::Version
53
- version: 3.0.7
53
+ version: 3.2.11
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
@@ -58,7 +58,7 @@ dependencies:
58
58
  requirements:
59
59
  - - ! '>='
60
60
  - !ruby/object:Gem::Version
61
- version: 3.0.7
61
+ version: 3.2.11
62
62
  - !ruby/object:Gem::Dependency
63
63
  name: libxml-ruby
64
64
  requirement: !ruby/object:Gem::Requirement
@@ -66,7 +66,7 @@ dependencies:
66
66
  requirements:
67
67
  - - ! '>='
68
68
  - !ruby/object:Gem::Version
69
- version: 1.1.4
69
+ version: 2.4.0
70
70
  type: :runtime
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
@@ -74,7 +74,7 @@ dependencies:
74
74
  requirements:
75
75
  - - ! '>='
76
76
  - !ruby/object:Gem::Version
77
- version: 1.1.4
77
+ version: 2.4.0
78
78
  - !ruby/object:Gem::Dependency
79
79
  name: prawn
80
80
  requirement: !ruby/object:Gem::Requirement
@@ -82,7 +82,7 @@ dependencies:
82
82
  requirements:
83
83
  - - ! '>='
84
84
  - !ruby/object:Gem::Version
85
- version: 0.11.1
85
+ version: 0.12.0
86
86
  type: :runtime
87
87
  prerelease: false
88
88
  version_requirements: !ruby/object:Gem::Requirement
@@ -90,7 +90,7 @@ dependencies:
90
90
  requirements:
91
91
  - - ! '>='
92
92
  - !ruby/object:Gem::Version
93
- version: 0.11.1
93
+ version: 0.12.0
94
94
  - !ruby/object:Gem::Dependency
95
95
  name: gruff
96
96
  requirement: !ruby/object:Gem::Requirement
@@ -98,7 +98,7 @@ dependencies:
98
98
  requirements:
99
99
  - - ! '>='
100
100
  - !ruby/object:Gem::Version
101
- version: 0.3.6
101
+ version: 0.3.7
102
102
  type: :runtime
103
103
  prerelease: false
104
104
  version_requirements: !ruby/object:Gem::Requirement
@@ -106,7 +106,7 @@ dependencies:
106
106
  requirements:
107
107
  - - ! '>='
108
108
  - !ruby/object:Gem::Version
109
- version: 0.3.6
109
+ version: 0.3.7
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: mysql2
112
112
  requirement: !ruby/object:Gem::Requirement
@@ -146,7 +146,7 @@ dependencies:
146
146
  requirements:
147
147
  - - ! '>='
148
148
  - !ruby/object:Gem::Version
149
- version: 1.3.3
149
+ version: 1.3.7
150
150
  type: :runtime
151
151
  prerelease: false
152
152
  version_requirements: !ruby/object:Gem::Requirement
@@ -154,9 +154,25 @@ dependencies:
154
154
  requirements:
155
155
  - - ! '>='
156
156
  - !ruby/object:Gem::Version
157
- version: 1.3.3
157
+ version: 1.3.7
158
+ - !ruby/object:Gem::Dependency
159
+ name: nokogiri
160
+ requirement: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ! '>='
164
+ - !ruby/object:Gem::Version
165
+ version: 1.5.6
166
+ type: :runtime
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ! '>='
172
+ - !ruby/object:Gem::Version
173
+ version: 1.5.6
158
174
  description: risu is a Nessus .nessus XML parser and report generation tool
159
- email: jacob.hammack@hammackj.com
175
+ email: risu@arxopia.com
160
176
  executables:
161
177
  - risu
162
178
  extensions: []
@@ -165,66 +181,67 @@ extra_rdoc_files:
165
181
  - LICENSE
166
182
  - NEWS.markdown
167
183
  files:
168
- - README.markdown
169
- - LICENSE
184
+ - Rakefile
170
185
  - NEWS.markdown
171
186
  - Gemfile.ci
172
- - Rakefile
187
+ - README.markdown
188
+ - LICENSE
173
189
  - lib/risu.rb
174
- - lib/risu/templates/stig_findings_summary.rb
175
- - lib/risu/templates/pci_compliance.rb
176
- - lib/risu/templates/technical_findings.rb
177
- - lib/risu/templates/ms_patch_summary.rb
178
- - lib/risu/templates/findings_summary_with_pluginid.rb
179
- - lib/risu/templates/findings_host.rb
180
- - lib/risu/templates/exec_summary.rb
181
- - lib/risu/templates/finding_statistics.rb
182
- - lib/risu/templates/graphs.rb
183
- - lib/risu/templates/findings_summary.rb
184
- - lib/risu/templates/assets.rb
185
- - lib/risu/templates/cover_sheet.rb
186
- - lib/risu/templates/notable_detailed.rb
187
- - lib/risu/templates/ms_update_summary.rb
188
- - lib/risu/templates/template.rb
189
- - lib/risu/templates/notable.rb
190
- - lib/risu/templates/ms_wsus_findings.rb
191
- - lib/risu/templates/data/nessuslogo.jpg
192
- - lib/risu/templates/executive_summary.rb
193
- - lib/risu/templates/host_summary.rb
194
- - lib/risu/base/schema.rb
190
+ - lib/risu/models.rb
191
+ - lib/risu/base/templater.rb
195
192
  - lib/risu/base/template_base.rb
193
+ - lib/risu/base/schema.rb
194
+ - lib/risu/base/template_helper.rb
196
195
  - lib/risu/base/template_manager.rb
197
- - lib/risu/base/templater.rb
198
- - lib/risu/parsers.rb
199
- - lib/risu/renderers/nilrenderer.rb
196
+ - lib/risu/cli.rb
197
+ - lib/risu/cli/banner.rb
198
+ - lib/risu/cli/application.rb
200
199
  - lib/risu/base.rb
201
- - lib/risu/parsers/nessus/nessus_sax_listener.rb
200
+ - lib/risu/renderers/nilrenderer.rb
201
+ - lib/risu/renderers.rb
202
+ - lib/risu/exceptions.rb
202
203
  - lib/risu/parsers/nessus/nessus_document.rb
204
+ - lib/risu/parsers/nessus/nessus_sax_listener.rb
203
205
  - lib/risu/parsers/nexpose/nexpose_document.rb
204
206
  - lib/risu/parsers/nexpose/simple_nexpose.rb
205
- - lib/risu/cli.rb
206
207
  - lib/risu/exceptions/invaliddocument.rb
207
- - lib/risu/renderers.rb
208
- - lib/risu/cli/application.rb
209
- - lib/risu/cli/banner.rb
210
- - lib/risu/exceptions.rb
208
+ - lib/risu/templates/graphs.rb
209
+ - lib/risu/templates/template.rb
210
+ - lib/risu/templates/ms_wsus_findings.rb
211
+ - lib/risu/templates/ms_patch_summary.rb
212
+ - lib/risu/templates/notable_detailed.rb
213
+ - lib/risu/templates/finding_statistics.rb
214
+ - lib/risu/templates/assets.rb
215
+ - lib/risu/templates/findings_host.rb
216
+ - lib/risu/templates/stig_findings_summary.rb
217
+ - lib/risu/templates/host_summary.rb
218
+ - lib/risu/templates/pci_compliance.rb
219
+ - lib/risu/templates/executive_summary_detailed.rb
220
+ - lib/risu/templates/exec_summary.rb
221
+ - lib/risu/templates/findings_summary_with_pluginid.rb
222
+ - lib/risu/templates/cover_sheet.rb
223
+ - lib/risu/templates/data/nessuslogo.jpg
224
+ - lib/risu/templates/notable.rb
225
+ - lib/risu/templates/ms_update_summary.rb
226
+ - lib/risu/templates/technical_findings.rb
227
+ - lib/risu/templates/findings_summary.rb
211
228
  - lib/risu/models/host.rb
212
229
  - lib/risu/models/item.rb
213
- - lib/risu/models/reference.rb
230
+ - lib/risu/models/servicedescription.rb
214
231
  - lib/risu/models/pluginspreference.rb
215
- - lib/risu/models/plugin.rb
232
+ - lib/risu/models/familyselection.rb
216
233
  - lib/risu/models/report.rb
217
- - lib/risu/models/patch.rb
218
- - lib/risu/models/serverpreference.rb
234
+ - lib/risu/models/individualpluginselection.rb
235
+ - lib/risu/models/reference.rb
219
236
  - lib/risu/models/version.rb
237
+ - lib/risu/models/plugin.rb
238
+ - lib/risu/models/patch.rb
220
239
  - lib/risu/models/policy.rb
221
- - lib/risu/models/individualpluginselection.rb
222
- - lib/risu/models/familyselection.rb
223
- - lib/risu/models/servicedescription.rb
224
- - lib/risu/models.rb
240
+ - lib/risu/models/serverpreference.rb
241
+ - lib/risu/parsers.rb
225
242
  - risu.gemspec
226
243
  - bin/risu
227
- homepage: http://www.hammackj.com/projects/risu
244
+ homepage: http://www.arxopia.com/projects/risu
228
245
  licenses:
229
246
  - BSD
230
247
  post_install_message:
@@ -242,11 +259,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
242
259
  requirements:
243
260
  - - ! '>='
244
261
  - !ruby/object:Gem::Version
245
- version: 1.6.0
262
+ version: 1.8.24
246
263
  requirements: []
247
264
  rubyforge_project: risu
248
- rubygems_version: 1.8.24
265
+ rubygems_version: 1.8.25
249
266
  signing_key:
250
267
  specification_version: 3
251
268
  summary: risu
252
269
  test_files: []
270
+ has_rdoc: yard