risu 1.7.1 → 1.7.2

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 (96) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/NEWS.markdown +12 -2
  4. data/README.markdown +3 -3
  5. data/Rakefile +1 -1
  6. data/bin/risu +1 -1
  7. data/lib/risu.rb +2 -2
  8. data/lib/risu/base.rb +1 -1
  9. data/lib/risu/base/post_process_base.rb +1 -1
  10. data/lib/risu/base/post_process_manager.rb +1 -1
  11. data/lib/risu/base/schema.rb +1 -1
  12. data/lib/risu/base/template_base.rb +1 -1
  13. data/lib/risu/base/template_helper.rb +1 -1
  14. data/lib/risu/base/template_manager.rb +1 -1
  15. data/lib/risu/base/templater.rb +1 -1
  16. data/lib/risu/cli.rb +1 -1
  17. data/lib/risu/cli/application.rb +1 -1
  18. data/lib/risu/cli/banner.rb +1 -1
  19. data/lib/risu/exceptions.rb +1 -1
  20. data/lib/risu/exceptions/invaliddocument.rb +1 -1
  21. data/lib/risu/models.rb +1 -1
  22. data/lib/risu/models/attachment.rb +1 -1
  23. data/lib/risu/models/familyselection.rb +1 -1
  24. data/lib/risu/models/host.rb +1 -1
  25. data/lib/risu/models/hostproperty.rb +1 -1
  26. data/lib/risu/models/individualpluginselection.rb +1 -1
  27. data/lib/risu/models/item.rb +1 -1
  28. data/lib/risu/models/patch.rb +1 -1
  29. data/lib/risu/models/plugin.rb +1 -1
  30. data/lib/risu/models/pluginspreference.rb +1 -1
  31. data/lib/risu/models/policy.rb +1 -1
  32. data/lib/risu/models/reference.rb +1 -1
  33. data/lib/risu/models/report.rb +1 -1
  34. data/lib/risu/models/serverpreference.rb +1 -1
  35. data/lib/risu/models/servicedescription.rb +1 -1
  36. data/lib/risu/models/version.rb +1 -1
  37. data/lib/risu/parsers.rb +1 -1
  38. data/lib/risu/parsers/nessus/nessus_document.rb +1 -1
  39. data/lib/risu/parsers/nessus/nessus_sax_listener.rb +2 -2
  40. data/lib/risu/parsers/nessus/postprocess.rb +1 -1
  41. data/lib/risu/parsers/nessus/postprocess/adobe_air.rb +1 -1
  42. data/lib/risu/parsers/nessus/postprocess/adobe_reader.rb +1 -1
  43. data/lib/risu/parsers/nessus/postprocess/apache.rb +9 -1
  44. data/lib/risu/parsers/nessus/postprocess/ca_brightstor_arcserve.rb +1 -1
  45. data/lib/risu/parsers/nessus/postprocess/core_ftp.rb +1 -1
  46. data/lib/risu/parsers/nessus/postprocess/db2.rb +55 -0
  47. data/lib/risu/parsers/nessus/postprocess/flash_player.rb +1 -1
  48. data/lib/risu/parsers/nessus/postprocess/flexnet.rb +1 -1
  49. data/lib/risu/parsers/nessus/postprocess/google_chrome.rb +1 -1
  50. data/lib/risu/parsers/nessus/postprocess/hp_system_mgt_homepage.rb +1 -1
  51. data/lib/risu/parsers/nessus/postprocess/java.rb +1 -1
  52. data/lib/risu/parsers/nessus/postprocess/openssh.rb +1 -1
  53. data/lib/risu/parsers/nessus/postprocess/openssl.rb +1 -1
  54. data/lib/risu/parsers/nessus/postprocess/oracle_database.rb +1 -1
  55. data/lib/risu/parsers/nessus/postprocess/php.rb +1 -1
  56. data/lib/risu/parsers/nessus/postprocess/post_process.rb +1 -1
  57. data/lib/risu/parsers/nessus/postprocess/risk_score.rb +1 -1
  58. data/lib/risu/parsers/nessus/postprocess/root_cause.rb +1 -1
  59. data/lib/risu/parsers/nessus/postprocess/servu.rb +1 -1
  60. data/lib/risu/parsers/nessus/postprocess/shockwave.rb +1 -1
  61. data/lib/risu/parsers/nessus/postprocess/vmware_esxi.rb +68 -0
  62. data/lib/risu/parsers/nessus/postprocess/windows.rb +16 -1
  63. data/lib/risu/parsers/nessus/postprocess/wireshark.rb +1 -1
  64. data/lib/risu/parsers/nexpose/nexpose_document.rb +1 -1
  65. data/lib/risu/parsers/nexpose/simple_nexpose.rb +1 -1
  66. data/lib/risu/renderers.rb +1 -1
  67. data/lib/risu/renderers/csvrenderer.rb +1 -1
  68. data/lib/risu/renderers/nilrenderer.rb +1 -1
  69. data/lib/risu/renderers/pdfrenderer.rb +1 -1
  70. data/lib/risu/templates/assets.rb +1 -1
  71. data/lib/risu/templates/cover_sheet.rb +1 -1
  72. data/lib/risu/templates/exec_summary.rb +1 -1
  73. data/lib/risu/templates/executive_summary_detailed.rb +1 -1
  74. data/lib/risu/templates/exploitablity_summary.rb +1 -1
  75. data/lib/risu/templates/finding_statistics.rb +1 -1
  76. data/lib/risu/templates/findings_host.rb +1 -1
  77. data/lib/risu/templates/findings_summary.rb +1 -1
  78. data/lib/risu/templates/findings_summary_with_pluginid.rb +1 -1
  79. data/lib/risu/templates/graphs.rb +1 -1
  80. data/lib/risu/templates/host_findings_csv.rb +1 -1
  81. data/lib/risu/templates/host_summary.rb +1 -1
  82. data/lib/risu/templates/malicious_process_detection.rb +1 -1
  83. data/lib/risu/templates/missing_root_causes.rb +1 -1
  84. data/lib/risu/templates/ms_patch_summary.rb +1 -1
  85. data/lib/risu/templates/ms_update_summary.rb +1 -1
  86. data/lib/risu/templates/ms_wsus_findings.rb +1 -1
  87. data/lib/risu/templates/notable.rb +1 -1
  88. data/lib/risu/templates/notable_detailed.rb +1 -1
  89. data/lib/risu/templates/pci_compliance.rb +1 -1
  90. data/lib/risu/templates/stig_findings_summary.rb +1 -1
  91. data/lib/risu/templates/talking_points.rb +2 -2
  92. data/lib/risu/templates/technical_findings.rb +1 -1
  93. data/lib/risu/templates/template.rb +1 -1
  94. data/lib/risu/templates/top_25.rb +1 -1
  95. data/risu.gemspec +1 -1
  96. metadata +5 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f8b56c0da2dc7bc99cb12f074a266cb974b6b0e8
4
- data.tar.gz: 8beff1b136dfdd21db5c615c5b0c6cac4c080afa
3
+ metadata.gz: 0073dd7b2895f69ff1d3515c21c91ccc14ba437d
4
+ data.tar.gz: 1eea60625dad86ec77f8d6966cd66e01f989cd3f
5
5
  SHA512:
6
- metadata.gz: 4ddd9137d0e2c2e7d10f19f206d0c920924961b15f82a7c3a822977dfe0ac0d75e64ee6e563a5206d2717c3376743da04e858f70040b03186069ad9a6f49c4ae
7
- data.tar.gz: 831ebf0f7b7eef82188d8bf385a6cdcf0c99435955f3ad34ddfcb53405cd7805cd300252c55a783ec3d1a31e23eca6c1ede14a9bab56eb85845d77643fbfb3e7
6
+ metadata.gz: 813332cd080c91dee71d85441a0977ff18b93febfb592286b70df0f38ea7b2b32fde77f6346bf92efc8c4e418726beaa0bd8621b80bc78874270fb4ea9af3fe9
7
+ data.tar.gz: bed6c5350c538f1a0d378558c7c196f7a2d712d0bbe383dd0d4ea9ed9c9c81c3e62641506208545d3760bce0552cd0bb5c4541e5e8f1e65ffcae49ad5c25eace
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2014 Arxopia LLC.
1
+ Copyright (c) 2010-2015 Arxopia LLC.
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
@@ -1,6 +1,16 @@
1
1
  # News
2
2
 
3
- #1.7.1 (September 25, 2014)
3
+ # 1.7.2 (January 5, 2015)
4
+ - Updated Copyrights / etc
5
+ - Added VMware ESXi Post Processing
6
+ - Added DB2 Post Processing
7
+ - Updated Default Credential plugin list
8
+ - Updated many of the post processing plugins
9
+ - Models
10
+ - HostProperty Model
11
+ - UnsupportedProduct
12
+
13
+ # 1.7.1 (September 25, 2014)
4
14
  - Updated Windows Patch Rollup
5
15
  - Added CA Brightstor Arcserve Backup Rollup
6
16
  - Updated the RootCause plug-ins list
@@ -10,7 +20,7 @@
10
20
  - UnsupportedProduct:microsoft:windows_xp
11
21
  - UnsupportedProduct:microsoft:windows_2000
12
22
 
13
- #1.7.0 (September 12, 2014)
23
+ # 1.7.0 (September 12, 2014)
14
24
  - Update Copyrights to 2014
15
25
  - Wiki
16
26
  - New page for installing on [OSX]((https://github.com/arxopia/risu/wiki/OSX-Installation-Guide)
@@ -2,11 +2,11 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/risu.png)](http://badge.fury.io/rb/risu)
4
4
 
5
- [![Build Status](https://travis-ci.org/arxopia/risu.png?branch=1.7.0)](https://travis-ci.org/arxopia/risu)
5
+ [![Build Status](https://travis-ci.org/arxopia/risu.png?branch=1.7.2)](https://travis-ci.org/arxopia/risu)
6
6
 
7
7
  Risu is [Nessus](http://www.nessus.org) parser, that converts the generated reports into a [ActiveRecord](http://api.rubyonrails.org/classes/ActiveRecord/Base.html) database, this allows for easy report generation and vulnerability verification.
8
8
 
9
- Version **1.7.1** is the current release.
9
+ Version **1.7.2** is the current release.
10
10
 
11
11
  ## Requirements
12
12
 
@@ -79,7 +79,7 @@ Using the risu Console is just like using Rails. You can access all of the Activ
79
79
  |_| |_|___/\__,_|
80
80
 
81
81
 
82
- risu Console v1.7.0
82
+ risu Console v1.7.2
83
83
  >> Host.first
84
84
  => #<Risu::Models::Host id: 1, report_id: 1, name: "10.69.69.74", os: "Linux Kernel 2.6 on Debian 4.0 (etch)", mac: "XX:XX:XX:XX:XX:XX", start: "2011-04-20 16:29:37", end: "2011-04-20 16:32:14", ip: "10.69.69.74", fqdn: "redada.arxopia.net", netbios: "REDADA", local_checks_proto: nil, smb_login_used: nil, ssh_auth_meth: nil, ssh_login_used: nil, pci_dss_compliance: nil, notes: nil>
85
85
 
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
data/bin/risu CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- # Copyright (c) 2010-2014 Arxopia LLC.
3
+ # Copyright (c) 2010-2015 Arxopia LLC.
4
4
  # All rights reserved.
5
5
  #
6
6
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -26,7 +26,7 @@
26
26
 
27
27
  module Risu
28
28
  APP_NAME = "risu"
29
- VERSION = "1.7.1"
29
+ VERSION = "1.7.2"
30
30
  GRAPH_WIDTH = 750
31
31
  # red orange yellow green blue purple grey pink
32
32
  GRAPH_COLORS = %w(#d2403f #ec9241 #fcc343 #50ad51 #397bbb #8E6B8E black #cccccc brown #e52d89)
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -149,7 +149,7 @@ module Risu
149
149
  def default_credential_plugins
150
150
  [
151
151
  10862, 25927, 32315, 65950, 39364, 33852, 11454, 51369,
152
- 26918, 76073, 24745, 11245
152
+ 26918, 76073, 24745, 11245, 23938, 46786, 46789,
153
153
  ].uniq
154
154
  end
155
155
 
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -57,7 +57,7 @@ module Risu
57
57
  "traceroute-hop-0", "traceroute-hop-1", "traceroute-hop-2", "operating-system-unsupported", "patch-summary-total-cves",
58
58
  "pcidss:insecure_http_methods", "LastUnauthenticatedResults", "LastAuthenticatedResults", "cpe-0", "cpe-1",
59
59
  "cpe-2", "cpe-3", "Credentialed_Scan", "policy-used", "UnsupportedProduct:microsoft:windows_xp::sp2",
60
- "UnsupportedProduct:microsoft:windows_xp", "UnsupportedProduct:microsoft:windows_2000"
60
+ "UnsupportedProduct:microsoft:windows_xp", "UnsupportedProduct:microsoft:windows_2000", "UnsupportedProduct"
61
61
  ]
62
62
 
63
63
  @valid_host_properties_regex = Array[
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -55,6 +55,14 @@ module Risu
55
55
  62101,
56
56
  64912,
57
57
  68915,
58
+ 77531,
59
+ 45004,
60
+ 57603,
61
+ 42052,
62
+ 48205,
63
+ 50070,
64
+ 53896,
65
+
58
66
 
59
67
 
60
68
  ]
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -0,0 +1,55 @@
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
+ # All rights reserved.
3
+ #
4
+ # Redistribution and use in source and binary forms, with or without
5
+ # modification, are permitted provided that the following conditions are met:
6
+ #
7
+ # * Redistributions of source code must retain the above copyright
8
+ # notice, this list of conditions and the following disclaimer.
9
+ # * Redistributions in binary form must reproduce the above copyright
10
+ # notice, this list of conditions and the following disclaimer in the
11
+ # documentation and/or other materials provided with the distribution.
12
+ # * Neither the name of the Arxopia LLC nor the names of its contributors
13
+ # may be used to endorse or promote products derived from this software
14
+ # without specific prior written permission.
15
+ #
16
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
+ # DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
20
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21
+ # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
22
+ # OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
23
+ # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
24
+ # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
25
+ # OF THE POSSIBILITY OF SUCH DAMAGE.
26
+
27
+ module Risu
28
+ module Parsers
29
+ module Nessus
30
+ module PostProcess
31
+ class DB2 < Risu::Base::PostProcessBase
32
+
33
+ #
34
+ def initialize
35
+ @info =
36
+ {
37
+ :description => "DB2 Patch Rollup",
38
+ :plugin_id => -99980,
39
+ :plugin_name => "Update to the latest DB2",
40
+ :item_name => "Update to the latest DB2",
41
+ :plugin_ids => [
42
+ 62701,
43
+ 71519,
44
+ 76114,
45
+ 76116
46
+
47
+
48
+ ]
49
+ }
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -0,0 +1,68 @@
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
+ # All rights reserved.
3
+ #
4
+ # Redistribution and use in source and binary forms, with or without
5
+ # modification, are permitted provided that the following conditions are met:
6
+ #
7
+ # * Redistributions of source code must retain the above copyright
8
+ # notice, this list of conditions and the following disclaimer.
9
+ # * Redistributions in binary form must reproduce the above copyright
10
+ # notice, this list of conditions and the following disclaimer in the
11
+ # documentation and/or other materials provided with the distribution.
12
+ # * Neither the name of the Arxopia LLC nor the names of its contributors
13
+ # may be used to endorse or promote products derived from this software
14
+ # without specific prior written permission.
15
+ #
16
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
+ # DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
20
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21
+ # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
22
+ # OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
23
+ # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
24
+ # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
25
+ # OF THE POSSIBILITY OF SUCH DAMAGE.
26
+
27
+ module Risu
28
+ module Parsers
29
+ module Nessus
30
+ module PostProcess
31
+ class ESXi < Risu::Base::PostProcessBase
32
+
33
+ #
34
+ def initialize
35
+ @info =
36
+ {
37
+ :description => "VMware ESXi Patch Rollup",
38
+ :plugin_id => -99981,
39
+ :plugin_name => "Update to the latest VMware ESXi",
40
+ :item_name => "Update to the latest VMware ESXi",
41
+ :plugin_ids => [
42
+ 70879,
43
+ 70880,
44
+ 70882,
45
+ 70883,
46
+ 70884,
47
+ 70885,
48
+ 70888,
49
+ 59447,
50
+ 70877,
51
+ 70878,
52
+ 70881,
53
+ 70886,
54
+ 70887,
55
+ 71773,
56
+ 72037,
57
+ 76203,
58
+ 76368,
59
+
60
+
61
+ ]
62
+ }
63
+ end
64
+ end
65
+ end
66
+ end
67
+ end
68
+ end
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -49,6 +49,21 @@ module Risu
49
49
  40564,
50
50
  45517,
51
51
  62940,
52
+ 53514,
53
+ 79638,
54
+ 11214,
55
+ 11808,
56
+ 11835,
57
+ 11890,
58
+ 12209,
59
+ 13852,
60
+ 18502,
61
+ 19407,
62
+ 19408,
63
+ 21193,
64
+ 21655,
65
+ 11110,
66
+
52
67
 
53
68
  ]
54
69
  }
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -82,7 +82,7 @@ module Risu
82
82
  end
83
83
 
84
84
 
85
- # # Copyright (c) 2010-2014 Arxopia LLC.
85
+ # # Copyright (c) 2010-2015 Arxopia LLC.
86
86
  # # All rights reserved.
87
87
  # #
88
88
  # # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2010-2014 Arxopia LLC.
1
+ # Copyright (c) 2010-2015 Arxopia LLC.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: risu
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Hammack
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-26 00:00:00.000000000 Z
11
+ date: 2015-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simplecov
@@ -243,6 +243,7 @@ files:
243
243
  - lib/risu/parsers/nessus/postprocess/apache.rb
244
244
  - lib/risu/parsers/nessus/postprocess/ca_brightstor_arcserve.rb
245
245
  - lib/risu/parsers/nessus/postprocess/core_ftp.rb
246
+ - lib/risu/parsers/nessus/postprocess/db2.rb
246
247
  - lib/risu/parsers/nessus/postprocess/flash_player.rb
247
248
  - lib/risu/parsers/nessus/postprocess/flexnet.rb
248
249
  - lib/risu/parsers/nessus/postprocess/google_chrome.rb
@@ -257,6 +258,7 @@ files:
257
258
  - lib/risu/parsers/nessus/postprocess/root_cause.rb
258
259
  - lib/risu/parsers/nessus/postprocess/servu.rb
259
260
  - lib/risu/parsers/nessus/postprocess/shockwave.rb
261
+ - lib/risu/parsers/nessus/postprocess/vmware_esxi.rb
260
262
  - lib/risu/parsers/nessus/postprocess/windows.rb
261
263
  - lib/risu/parsers/nessus/postprocess/wireshark.rb
262
264
  - lib/risu/parsers/nexpose/nexpose_document.rb
@@ -313,7 +315,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
313
315
  version: 1.8.24
314
316
  requirements: []
315
317
  rubyforge_project: risu
316
- rubygems_version: 2.2.0
318
+ rubygems_version: 2.2.2
317
319
  signing_key:
318
320
  specification_version: 4
319
321
  summary: risu