risu 1.7.4 → 1.7.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/NEWS.markdown +35 -0
  3. data/README.markdown +1 -1
  4. data/lib/risu.rb +3 -3
  5. data/lib/risu/base/host_template_helper.rb +3 -2
  6. data/lib/risu/base/schema.rb +6 -0
  7. data/lib/risu/base/template_helper.rb +8 -7
  8. data/lib/risu/base/template_manager.rb +5 -4
  9. data/lib/risu/cli.rb +2 -2
  10. data/lib/risu/cli/application.rb +1 -3
  11. data/lib/risu/exceptions.rb +2 -2
  12. data/lib/risu/exceptions/invaliddocument.rb +2 -2
  13. data/lib/risu/models.rb +2 -2
  14. data/lib/risu/models/host.rb +7 -1
  15. data/lib/risu/models/item.rb +32 -15
  16. data/lib/risu/models/pluginspreference.rb +2 -2
  17. data/lib/risu/models/policy.rb +2 -2
  18. data/lib/risu/models/reference.rb +2 -2
  19. data/lib/risu/models/report.rb +2 -2
  20. data/lib/risu/models/serverpreference.rb +2 -2
  21. data/lib/risu/models/version.rb +2 -2
  22. data/lib/risu/parsers.rb +2 -2
  23. data/lib/risu/parsers/nessus/nessus_sax_listener.rb +5 -2
  24. data/lib/risu/parsers/nessus/postprocess/adobe_acrobat.rb +87 -0
  25. data/lib/risu/parsers/nessus/postprocess/adobe_air.rb +21 -3
  26. data/lib/risu/parsers/nessus/postprocess/adobe_reader.rb +10 -2
  27. data/lib/risu/parsers/nessus/postprocess/apache.rb +8 -4
  28. data/lib/risu/parsers/nessus/postprocess/apple_quicktime.rb +56 -0
  29. data/lib/risu/parsers/nessus/postprocess/blackberry_enterprise_server.rb +61 -0
  30. data/lib/risu/parsers/nessus/postprocess/db2.rb +4 -3
  31. data/lib/risu/parsers/nessus/postprocess/downgrade_plugins.rb +79 -0
  32. data/lib/risu/parsers/nessus/postprocess/filezilla.rb +53 -0
  33. data/lib/risu/parsers/nessus/postprocess/firefox.rb +83 -0
  34. data/lib/risu/parsers/nessus/postprocess/flash_player.rb +63 -41
  35. data/lib/risu/parsers/nessus/postprocess/flexnet.rb +2 -2
  36. data/lib/risu/parsers/nessus/postprocess/foxit_reader.rb +58 -0
  37. data/lib/risu/parsers/nessus/postprocess/google_chrome.rb +30 -3
  38. data/lib/risu/parsers/nessus/postprocess/hp_system_mgt_homepage.rb +12 -2
  39. data/lib/risu/parsers/nessus/postprocess/java.rb +24 -9
  40. data/lib/risu/parsers/nessus/postprocess/openssh.rb +6 -4
  41. data/lib/risu/parsers/nessus/postprocess/openssl.rb +33 -3
  42. data/lib/risu/parsers/nessus/postprocess/oracle_database.rb +2 -2
  43. data/lib/risu/parsers/nessus/postprocess/php.rb +47 -1
  44. data/lib/risu/parsers/nessus/postprocess/post_process.rb +2 -2
  45. data/lib/risu/parsers/nessus/postprocess/root_cause.rb +35 -1
  46. data/lib/risu/parsers/nessus/postprocess/shockwave.rb +1 -0
  47. data/lib/risu/parsers/nessus/postprocess/sigplus_pro.rb +55 -0
  48. data/lib/risu/parsers/nessus/postprocess/symantec_pcanywhere.rb +56 -0
  49. data/lib/risu/parsers/nessus/postprocess/vlc.rb +58 -0
  50. data/lib/risu/parsers/nessus/postprocess/vmware_esxi.rb +9 -2
  51. data/lib/risu/parsers/nessus/postprocess/vmware_player.rb +51 -0
  52. data/lib/risu/parsers/nessus/postprocess/vmware_vcenter.rb +62 -0
  53. data/lib/risu/parsers/nessus/postprocess/vmware_vsphere_client.rb +53 -0
  54. data/lib/risu/parsers/nessus/postprocess/windows.rb +688 -0
  55. data/lib/risu/parsers/nessus/postprocess/winscp.rb +57 -0
  56. data/lib/risu/parsers/nessus/postprocess/wireshark.rb +13 -1
  57. data/lib/risu/parsers/nexpose/nexpose_document.rb +2 -2
  58. data/lib/risu/parsers/nexpose/simple_nexpose.rb +2 -2
  59. data/lib/risu/renderers.rb +2 -2
  60. data/lib/risu/renderers/csvrenderer.rb +2 -2
  61. data/lib/risu/renderers/nilrenderer.rb +2 -2
  62. data/lib/risu/renderers/pdfrenderer.rb +2 -2
  63. data/lib/risu/templates/executive_summary_detailed.rb +2 -2
  64. data/lib/risu/templates/exploitablity_summary.rb +2 -2
  65. data/lib/risu/templates/finding_statistics.rb +2 -2
  66. data/lib/risu/templates/graphs.rb +2 -2
  67. data/lib/risu/templates/host_findings_csv.rb +3 -3
  68. data/lib/risu/templates/host_summary.rb +2 -2
  69. data/lib/risu/templates/ms_patch_summary.rb +2 -2
  70. data/lib/risu/templates/top_25.rb +2 -2
  71. metadata +16 -2
@@ -21,8 +21,8 @@
21
21
  # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
22
22
  # OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
23
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.
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
26
 
27
27
  module Risu
28
28
  module Parsers
@@ -43,7 +43,37 @@ module Risu
43
43
  12110,
44
44
  74363,
45
45
  77086,
46
- 74326
46
+ 74326,
47
+ 73412,
48
+ 77200,
49
+ 17757,
50
+ 73404,
51
+ 74364,
52
+ 77088,
53
+ 17755,
54
+ 17756,
55
+ 17758,
56
+ 17759,
57
+ 17761,
58
+ 17762,
59
+ 17763,
60
+ 17765,
61
+ 57459,
62
+ 58799,
63
+ 17760,
64
+ 56996,
65
+ 58564,
66
+ 59076,
67
+ 64532,
68
+ 71857,
69
+ 78554,
70
+ 80568,
71
+ 82032,
72
+ 84153,
73
+ 51892,
74
+
75
+
76
+
47
77
  ]
48
78
  }
49
79
  end
@@ -21,8 +21,8 @@
21
21
  # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
22
22
  # OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
23
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.
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
26
 
27
27
  module Risu
28
28
  module Parsers
@@ -52,7 +52,53 @@ module Risu
52
52
  73862,
53
53
  74291,
54
54
  76791,
55
- ]
55
+ 11850,
56
+ 15973,
57
+ 17710,
58
+ 17796,
59
+ 18033,
60
+ 20111,
61
+ 22268,
62
+ 24906,
63
+ 29833,
64
+ 33849,
65
+ 35067,
66
+ 41014,
67
+ 57537,
68
+ 58966,
69
+ 66842,
70
+ 58988,
71
+ 67259,
72
+ 77285,
73
+ 35750,
74
+ 39480,
75
+ 43351,
76
+ 44921,
77
+ 64992,
78
+ 66584,
79
+ 71426,
80
+ 77402,
81
+ 78545,
82
+ 79246,
83
+ 80330,
84
+ 81080,
85
+ 81510,
86
+ 82025,
87
+ 83033,
88
+ 83517,
89
+ 84362,
90
+ 84671,
91
+ 32123,
92
+ 35043,
93
+ 48244,
94
+ 28181,
95
+ 51139,
96
+ 51439,
97
+ 73289,
98
+
99
+
100
+
101
+ ]
56
102
  }
57
103
  end
58
104
  end
@@ -21,8 +21,8 @@
21
21
  # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
22
22
  # OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
23
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.
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
26
 
27
27
  module Risu
28
28
  module Parsers
@@ -270,8 +270,25 @@ module Risu
270
270
  34725 => "Vendor Patch",
271
271
  42424 => "Vendor Patch",
272
272
  77200 => "Vendor Patch",
273
-
273
+ -99979 => "Vendor Patch",
274
+ 80101 => "Vendor Patch",
275
+ -99978 => "Vendor Patch",
276
+ -99977 => "Vendor Patch",
277
+ 62311 => "Vendor Patch",
278
+ 73595 => "Vendor Patch",
279
+ 47152 => "Vendor Patch",
280
+ -99976 => "Vendor Patch",
281
+ -99971 => "Vendor Patch",
282
+ 80518 => "Vendor Patch",
283
+ 85181 => "Vendor Patch",
284
+ 80442 => "Vendor Patch",
285
+ 73018 => "Vendor Patch",
286
+ -99981 => "Vendor Patch",
287
+ -99967 => "Vendor Patch",
288
+ 70124 => "Vendor Patch",
274
289
 
290
+
291
+
275
292
  33850 => "Vendor Support",
276
293
  34460 => "Vendor Support",
277
294
  73182 => "Vendor Support",
@@ -299,6 +316,10 @@ module Risu
299
316
  57859 => "Vendor Support",
300
317
  56998 => "Vendor Support",
301
318
  73598 => "Vendor Support",
319
+ 84729 => "Vendor Support",
320
+ 58991 => "Vendor Support",
321
+
322
+
302
323
 
303
324
  49071 => "Configuration",
304
325
  19948 => "Configuration",
@@ -368,6 +389,19 @@ module Risu
368
389
  11245 => "Configuration",
369
390
  76073 => "Configuration",
370
391
  10907 => "Configuration",
392
+ 73920 => "Configuration",
393
+ 10081 => "Configuration",
394
+ 10412 => "Configuration",
395
+ 78479 => "Configuration",
396
+ 81606 => "Configuration",
397
+ 70395 => "Configuration",
398
+ 51369 => "Configuration",
399
+ 51418 => "Configuration",
400
+ 10166 => "Configuration",
401
+ 11454 => "Configuration",
402
+ 10305 => "Configuration",
403
+ 39364 => "Configuration",
404
+
371
405
 
372
406
  }
373
407
  end
@@ -62,6 +62,7 @@ module Risu
62
62
  65913,
63
63
  67233,
64
64
  69844,
65
+ 84765,
65
66
 
66
67
  ]
67
68
  }
@@ -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 SigPlusPro < Risu::Base::PostProcessBase
32
+
33
+ #
34
+ def initialize
35
+ @info =
36
+ {
37
+ :description => "SigPlus Pro Patch Rollups",
38
+ :plugin_id => -99977,
39
+ :plugin_name => "Update to the latest SigPlus Pro",
40
+ :item_name => "Update to the latest SigPlus Pro",
41
+ :plugin_ids => [
42
+ 51895,
43
+ 51894,
44
+
45
+
46
+
47
+
48
+ ]
49
+ }
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,56 @@
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 SymantecPcAnywhereRollups < Risu::Base::PostProcessBase
32
+
33
+ #
34
+ def initialize
35
+ @info =
36
+ {
37
+ :description => "Symantec pcAnywhere Patch Rollup",
38
+ :plugin_id => -99971,
39
+ :plugin_name => "Update to the latest Symantec pcAnywhere",
40
+ :item_name => "Update to the latest Symantec pcAnywhere",
41
+ :plugin_ids => [
42
+ 20743,
43
+ 57796,
44
+ 58119,
45
+ 35976,
46
+ 58204,
47
+
48
+
49
+ ]
50
+ }
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,58 @@
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 VLCRollups < Risu::Base::PostProcessBase
32
+
33
+ #
34
+ def initialize
35
+ @info =
36
+ {
37
+ :description => "VLC Patch Rollup",
38
+ :plugin_id => -99970,
39
+ :plugin_name => "Update to the latest VLC",
40
+ :item_name => "Update to the latest VLC",
41
+ :plugin_ids => [
42
+ 58416,
43
+ 60049,
44
+ 63381,
45
+ 66216,
46
+ 72279,
47
+ 69015,
48
+ 70560,
49
+ 78626,
50
+
51
+ ]
52
+ }
53
+ end
54
+ end
55
+ end
56
+ end
57
+ end
58
+ end
@@ -56,8 +56,15 @@ module Risu
56
56
  72037,
57
57
  76203,
58
58
  76368,
59
-
60
-
59
+ 73917,
60
+ 81085,
61
+ 71774,
62
+ 74470,
63
+ 78108,
64
+ 79862,
65
+ 80037,
66
+ 81084,
67
+
61
68
  ]
62
69
  }
63
70
  end
@@ -0,0 +1,51 @@
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 VMwarePlayer < Risu::Base::PostProcessBase
32
+
33
+ #
34
+ def initialize
35
+ @info =
36
+ {
37
+ :description => "VMware Player Patch Rollup",
38
+ :plugin_id => -99976,
39
+ :plugin_name => "Update to the latest VMware Player",
40
+ :item_name => "Update to the latest VMware Player",
41
+ :plugin_ids => [
42
+ 71231,
43
+ 76454
44
+ ]
45
+ }
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,62 @@
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 VMwareVCenter < Risu::Base::PostProcessBase
32
+
33
+ #
34
+ def initialize
35
+ @info =
36
+ {
37
+ :description => "VMware vCenter Patch Rollup",
38
+ :plugin_id => -99979,
39
+ :plugin_name => "Update to the latest VMware vCenter",
40
+ :item_name => "Update to the latest VMware vCenter",
41
+ :plugin_ids => [
42
+ 79865,
43
+ 66274,
44
+ 66806,
45
+ 70612,
46
+ 77728,
47
+ 65209,
48
+ 65223,
49
+ 76457,
50
+ 83186,
51
+ 81146,
52
+
53
+
54
+
55
+ ]
56
+ }
57
+ end
58
+ end
59
+ end
60
+ end
61
+ end
62
+ end