risu 1.8.3 → 1.8.4
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.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/Gemfile.lock +159 -0
- data/LICENSE +1 -1
- data/README.markdown +2 -5
- data/Rakefile +1 -1
- data/bin/risu +1 -1
- data/docs/NEWS.markdown +3 -0
- data/lib/risu.rb +2 -2
- data/lib/risu/base.rb +1 -1
- data/lib/risu/base/graph_template_helper.rb +1 -1
- data/lib/risu/base/host_template_helper.rb +2 -1
- data/lib/risu/base/malware_template_helper.rb +1 -1
- data/lib/risu/base/post_process_base.rb +7 -4
- data/lib/risu/base/post_process_manager.rb +1 -1
- data/lib/risu/base/scan_helper.rb +1 -1
- data/lib/risu/base/schema.rb +10 -3
- data/lib/risu/base/shares_template_helper.rb +1 -1
- data/lib/risu/base/template_base.rb +1 -1
- data/lib/risu/base/template_helper.rb +1 -1
- data/lib/risu/base/template_manager.rb +1 -1
- data/lib/risu/base/templater.rb +1 -1
- data/lib/risu/cli.rb +1 -1
- data/lib/risu/cli/application.rb +16 -16
- data/lib/risu/cli/banner.rb +1 -1
- data/lib/risu/exceptions.rb +1 -1
- data/lib/risu/exceptions/invaliddocument.rb +1 -1
- data/lib/risu/graphs.rb +1 -1
- data/lib/risu/graphs/top_vuln_graph.rb +1 -1
- data/lib/risu/graphs/windows_os_graph.rb +1 -1
- data/lib/risu/models.rb +2 -1
- data/lib/risu/models/attachment.rb +1 -1
- data/lib/risu/models/familyselection.rb +1 -1
- data/lib/risu/models/host.rb +34 -2
- data/lib/risu/models/hostproperty.rb +1 -1
- data/lib/risu/models/individualpluginselection.rb +1 -1
- data/lib/risu/models/item.rb +248 -20
- data/lib/risu/models/nessuspluginmetadata.rb +28 -0
- data/lib/risu/models/patch.rb +1 -1
- data/lib/risu/models/plugin.rb +1 -1
- data/lib/risu/models/pluginspreference.rb +1 -1
- data/lib/risu/models/policy.rb +1 -1
- data/lib/risu/models/reference.rb +1 -1
- data/lib/risu/models/report.rb +1 -1
- data/lib/risu/models/serverpreference.rb +1 -1
- data/lib/risu/models/servicedescription.rb +1 -1
- data/lib/risu/models/version.rb +1 -1
- data/lib/risu/parsers.rb +1 -1
- data/lib/risu/parsers/nessus/nessus_document.rb +1 -1
- data/lib/risu/parsers/nessus/nessus_sax_listener.rb +3 -2
- data/lib/risu/parsers/nessus/postprocess.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/7zip.rb +6 -4
- data/lib/risu/parsers/nessus/postprocess/adobe_acrobat.rb +48 -54
- data/lib/risu/parsers/nessus/postprocess/adobe_air.rb +58 -63
- data/lib/risu/parsers/nessus/postprocess/adobe_coldfusion.rb +47 -0
- data/lib/risu/parsers/nessus/postprocess/{shockwave.rb → adobe_creative_desktop.rb} +9 -34
- data/lib/risu/parsers/nessus/postprocess/adobe_flash_player.rb +175 -0
- data/lib/risu/parsers/nessus/postprocess/adobe_reader.rb +73 -55
- data/lib/risu/parsers/nessus/postprocess/adobe_shockwave_player.rb +74 -0
- data/lib/risu/parsers/nessus/postprocess/apache.rb +38 -33
- data/lib/risu/parsers/nessus/postprocess/apache_tomcat.rb +8 -10
- data/lib/risu/parsers/nessus/postprocess/apple_icloud.rb +47 -0
- data/lib/risu/parsers/nessus/postprocess/apple_itunes.rb +23 -17
- data/lib/risu/parsers/nessus/postprocess/apple_quicktime.rb +38 -32
- data/lib/risu/parsers/nessus/postprocess/artifex_ghostscript.rb +49 -0
- data/lib/risu/parsers/nessus/postprocess/blackberry_enterprise_server.rb +10 -14
- data/lib/risu/parsers/nessus/postprocess/ca_brightstor_arcserve.rb +10 -10
- data/lib/risu/parsers/nessus/postprocess/cisco_anyconnect.rb +18 -20
- data/lib/risu/parsers/nessus/postprocess/cisco_ios.rb +25 -15
- data/lib/risu/parsers/nessus/postprocess/cisco_telepresence.rb +45 -0
- data/lib/risu/parsers/nessus/postprocess/core_ftp.rb +6 -6
- data/lib/risu/parsers/nessus/postprocess/db2.rb +7 -9
- data/lib/risu/parsers/nessus/postprocess/dell_idrac.rb +49 -0
- data/lib/risu/parsers/nessus/postprocess/downgrade_plugins.rb +4 -2
- data/lib/risu/parsers/nessus/postprocess/dropbear_ssh.rb +7 -6
- data/lib/risu/parsers/nessus/postprocess/filezilla.rb +4 -6
- data/lib/risu/parsers/nessus/postprocess/firefox.rb +113 -71
- data/lib/risu/parsers/nessus/postprocess/flexnet.rb +3 -3
- data/lib/risu/parsers/nessus/postprocess/foxit_phantom_pdf.rb +10 -3
- data/lib/risu/parsers/nessus/postprocess/foxit_reader.rb +13 -12
- data/lib/risu/parsers/nessus/postprocess/google_chrome.rb +34 -6
- data/lib/risu/parsers/nessus/postprocess/hp_system_mgt_homepage.rb +3 -3
- data/lib/risu/parsers/nessus/postprocess/iLo.rb +50 -0
- data/lib/risu/parsers/nessus/postprocess/intel_mgt_engine.rb +47 -0
- data/lib/risu/parsers/nessus/postprocess/irfanview.rb +2 -2
- data/lib/risu/parsers/nessus/postprocess/java.rb +70 -64
- data/lib/risu/parsers/nessus/postprocess/libreoffice.rb +2 -2
- data/lib/risu/parsers/nessus/postprocess/microsoft_office.rb +73 -0
- data/lib/risu/parsers/nessus/postprocess/microsoft_visual_studio.rb +47 -0
- data/lib/risu/parsers/nessus/postprocess/microsoft_windows.rb +1312 -0
- data/lib/risu/parsers/nessus/postprocess/mongo_db.rb +46 -0
- data/lib/risu/parsers/nessus/postprocess/mozzila_thunderbird.rb +49 -0
- data/lib/risu/parsers/nessus/postprocess/normalize_plugin_names.rb +5 -2
- data/lib/risu/parsers/nessus/postprocess/openoffice.rb +14 -11
- data/lib/risu/parsers/nessus/postprocess/openssh.rb +3 -3
- data/lib/risu/parsers/nessus/postprocess/openssl.rb +58 -39
- data/lib/risu/parsers/nessus/postprocess/oracle_database.rb +3 -3
- data/lib/risu/parsers/nessus/postprocess/php.rb +94 -69
- data/lib/risu/parsers/nessus/postprocess/post_process.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/putty.rb +47 -0
- data/lib/risu/parsers/nessus/postprocess/real_player.rb +3 -3
- data/lib/risu/parsers/nessus/postprocess/risk_score.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/root_cause.rb +16 -3
- data/lib/risu/parsers/nessus/postprocess/samba.rb +46 -0
- data/lib/risu/parsers/nessus/postprocess/servu.rb +4 -4
- data/lib/risu/parsers/nessus/postprocess/sigplus_pro.rb +3 -3
- data/lib/risu/parsers/nessus/postprocess/skype.rb +4 -3
- data/lib/risu/parsers/nessus/postprocess/solarwinds_dameware.rb +48 -0
- data/lib/risu/parsers/nessus/postprocess/symantec_endpoint.rb +4 -3
- data/lib/risu/parsers/nessus/postprocess/symantec_pcanywhere.rb +3 -3
- data/lib/risu/parsers/nessus/postprocess/tenable_nessus.rb +47 -0
- data/lib/risu/parsers/nessus/postprocess/timbuktu.rb +2 -2
- data/lib/risu/parsers/nessus/postprocess/vlc.rb +4 -3
- data/lib/risu/parsers/nessus/postprocess/vmware_esxi.rb +64 -54
- data/lib/risu/parsers/nessus/postprocess/vmware_player.rb +3 -3
- data/lib/risu/parsers/nessus/postprocess/vmware_vcenter.rb +11 -5
- data/lib/risu/parsers/nessus/postprocess/vmware_vsphere_client.rb +7 -6
- data/lib/risu/parsers/nessus/postprocess/winscp.rb +7 -8
- data/lib/risu/parsers/nessus/postprocess/wireshark.rb +73 -51
- data/lib/risu/parsers/nexpose/nexpose_document.rb +1 -1
- data/lib/risu/parsers/nexpose/simple_nexpose.rb +1 -1
- data/lib/risu/renderers.rb +1 -1
- data/lib/risu/renderers/csvrenderer.rb +1 -1
- data/lib/risu/renderers/nilrenderer.rb +1 -1
- data/lib/risu/renderers/pdfrenderer.rb +1 -1
- data/lib/risu/template_helpers.rb +1 -1
- data/lib/risu/templates/assets.rb +1 -1
- data/lib/risu/templates/authentication_summary.rb +1 -1
- data/lib/risu/templates/cover_sheet.rb +1 -1
- data/lib/risu/templates/exec_summary.rb +1 -1
- data/lib/risu/templates/executive_summary_detailed.rb +1 -1
- data/lib/risu/templates/exploitablity_summary.rb +1 -1
- data/lib/risu/templates/failed_audits.rb +1 -1
- data/lib/risu/templates/finding_statistics.rb +1 -1
- data/lib/risu/templates/findings_host.rb +1 -1
- data/lib/risu/templates/findings_summary.rb +1 -1
- data/lib/risu/templates/findings_summary_with_pluginid.rb +1 -1
- data/lib/risu/templates/graphs.rb +1 -1
- data/lib/risu/templates/host_findings_csv.rb +1 -1
- data/lib/risu/templates/host_summary.rb +1 -1
- data/lib/risu/templates/malicious_process_detection.rb +1 -1
- data/lib/risu/templates/missing_root_causes.rb +1 -1
- data/lib/risu/templates/ms_patch_summary.rb +1 -1
- data/lib/risu/templates/ms_update_summary.rb +1 -1
- data/lib/risu/templates/ms_wsus_findings.rb +1 -1
- data/lib/risu/templates/notable.rb +1 -1
- data/lib/risu/templates/notable_detailed.rb +1 -1
- data/lib/risu/templates/pci_compliance.rb +1 -1
- data/lib/risu/templates/rollup_summary.rb +82 -0
- data/lib/risu/templates/stig_findings_summary.rb +1 -1
- data/lib/risu/templates/talking_points.rb +1 -1
- data/lib/risu/templates/technical_findings.rb +1 -1
- data/lib/risu/templates/template.rb +1 -1
- data/lib/risu/templates/top_25.rb +1 -1
- data/lib/risu/version.rb +2 -2
- data/risu.gemspec +5 -5
- metadata +59 -56
- metadata.gz.sig +0 -0
- data/lib/risu/parsers/nessus/postprocess/flash_player.rb +0 -145
- data/lib/risu/parsers/nessus/postprocess/windows.rb +0 -976
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Copyright (c) 2010-2020 Jacob Hammack.
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
# furnished to do so, subject to the following conditions:
|
|
9
|
+
#
|
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
|
11
|
+
# all copies or substantial portions of the Software.
|
|
12
|
+
#
|
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
19
|
+
# THE SOFTWARE.
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
module Risu
|
|
23
|
+
module Templates
|
|
24
|
+
class RollupSummary < Risu::Base::TemplateBase
|
|
25
|
+
include TemplateHelper
|
|
26
|
+
|
|
27
|
+
#
|
|
28
|
+
#
|
|
29
|
+
def initialize
|
|
30
|
+
@template_info =
|
|
31
|
+
{
|
|
32
|
+
:name => "rollup_summary",
|
|
33
|
+
:author => "hammackj",
|
|
34
|
+
:version => "0.0.1",
|
|
35
|
+
:renderer => "PDF",
|
|
36
|
+
:description => "Generates a Findings Summary with Nessus Plugin ID"
|
|
37
|
+
}
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# TODO doc
|
|
41
|
+
#
|
|
42
|
+
def print_risk_title text, color
|
|
43
|
+
@output.font_size(20) do
|
|
44
|
+
@output.fill_color color.gsub('#', '')
|
|
45
|
+
@output.text text, :style => :bold
|
|
46
|
+
@output.fill_color "000000"
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
# TODO doc
|
|
51
|
+
#
|
|
52
|
+
def print_risk_summary_with_plugin_id risks, text, color
|
|
53
|
+
print_risk_title(text, color) if risks.length != 0
|
|
54
|
+
|
|
55
|
+
risks.each do |item|
|
|
56
|
+
name = Plugin.find_by_id(item.plugin_id).plugin_name
|
|
57
|
+
#count = Item.where(:plugin_id => item.plugin_id).count
|
|
58
|
+
|
|
59
|
+
text "#{item.plugin_id}, ##{name}"
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# TODO doc
|
|
64
|
+
#
|
|
65
|
+
def render output
|
|
66
|
+
text Report.classification.upcase, :align => :center
|
|
67
|
+
text "\n"
|
|
68
|
+
|
|
69
|
+
report_title Report.title
|
|
70
|
+
report_subtitle "Findings Summary Report"
|
|
71
|
+
report_author "This report was prepared by\n#{Report.author}"
|
|
72
|
+
text "\n\n\n"
|
|
73
|
+
|
|
74
|
+
print_risk_summary_with_plugin_id(Item.critical_risks_unique_sorted, "Critical Findings", Risu::GRAPH_COLORS[0])
|
|
75
|
+
print_risk_summary_with_plugin_id(Item.high_risks_unique_sorted, "High Findings", Risu::GRAPH_COLORS[1])
|
|
76
|
+
print_risk_summary_with_plugin_id(Item.medium_risks_unique_sorted, "Medium Findings", Risu::GRAPH_COLORS[2])
|
|
77
|
+
print_risk_summary_with_plugin_id(Item.low_risks_unique_sorted, "Low Findings", Risu::GRAPH_COLORS[3])
|
|
78
|
+
print_risk_summary_with_plugin_id(Item.info_risks_unique_sorted, "Informational Findings", Risu::GRAPH_COLORS[4])
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
end
|
data/lib/risu/version.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2020 Jacob Hammack.
|
|
2
2
|
#
|
|
3
3
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
4
|
# of this software and associated documentation files (the "Software"), to deal
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
module Risu
|
|
23
23
|
APP_NAME = "risu"
|
|
24
|
-
VERSION = "1.8.
|
|
24
|
+
VERSION = "1.8.4"
|
|
25
25
|
HOME_PAGE = "https://hammackj.github.io/risu/"
|
|
26
26
|
GITHUB = "http://github.com/hammackj/risu"
|
|
27
27
|
EMAIL = "jacob.hammack@hammackj.com"
|
data/risu.gemspec
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2020 Jacob Hammack.
|
|
2
2
|
#
|
|
3
3
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
4
|
# of this software and associated documentation files (the "Software"), to deal
|
|
@@ -51,13 +51,13 @@ Gem::Specification.new do |s|
|
|
|
51
51
|
s.add_runtime_dependency 'prawn', '~> 2.1', '>= 2.1.0'
|
|
52
52
|
s.add_runtime_dependency 'prawn-table', '~> 0.2', '>= 0.2.2'
|
|
53
53
|
s.add_runtime_dependency 'gruff', '~> 0.7', '>= 0.7.0'
|
|
54
|
-
s.add_runtime_dependency 'mysql2', '~> 0.
|
|
54
|
+
#s.add_runtime_dependency 'mysql2', '~> 0.5', '>= 0.5.2'
|
|
55
55
|
s.add_runtime_dependency 'rmagick', '~> 2.15', '>= 2.15.4'
|
|
56
56
|
s.add_runtime_dependency 'sqlite3', '~> 1.3', '>= 1.3.11'
|
|
57
57
|
s.add_runtime_dependency 'nokogiri', '~> 1.7', '>= 1.7.0.1'
|
|
58
58
|
|
|
59
|
-
s.add_development_dependency 'simplecov', '~> 0.
|
|
60
|
-
s.add_development_dependency 'yard', '~> 0.
|
|
59
|
+
s.add_development_dependency 'simplecov', '~> 0.15', '>= 0.15'
|
|
60
|
+
s.add_development_dependency 'yard', '~> 0.9', '>= 0.9.20'
|
|
61
61
|
s.add_development_dependency 'minitest', '~> 5.0', '>= 5.9'
|
|
62
|
-
s.add_development_dependency 'test-unit', '~> 3.2', ">= 3.2"
|
|
62
|
+
s.add_development_dependency 'test-unit', '~> 3.2', ">= 3.2.4"
|
|
63
63
|
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.8.
|
|
4
|
+
version: 1.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jacob Hammack
|
|
@@ -13,28 +13,32 @@ bindir: bin
|
|
|
13
13
|
cert_chain:
|
|
14
14
|
- |
|
|
15
15
|
-----BEGIN CERTIFICATE-----
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
16
|
+
MIIEWjCCAsKgAwIBAgIBATANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDDCBqYWNv
|
|
17
|
+
Yi5oYW1tYWNrL0RDPWhhbW1hY2tqL0RDPWNvbTAeFw0xOTEwMTYxNDAwMjVaFw0y
|
|
18
|
+
MDEwMTUxNDAwMjVaMCsxKTAnBgNVBAMMIGphY29iLmhhbW1hY2svREM9aGFtbWFj
|
|
19
|
+
a2ovREM9Y29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAo5LD+tmT
|
|
20
|
+
MdC/4naRmRFPrbdgMkd+ir6gft6PLez1AZsCLmWFr6hRolPBmdGwIq7bb8LrJ8FA
|
|
21
|
+
52z8KhV/PA5/nVxZdELqRRma+8f6NpWDzpiNwjjaY2uur640ojIlP3mHiX04m2ge
|
|
22
|
+
8aRJ3caq443dxDnqtdjyCMWBgYUL37G31qw4pmyL5xv/+eocZWPvL862ZIzm5jWq
|
|
23
|
+
bGJOiEgJzvR0hOr09BnHF1XmZXjnTdQOZmq0MHVxF4QmNxRW2atvi4mE0fU5yBN9
|
|
24
|
+
CZ8K6l8m+9huKfrK2jL8m/pU/8d7Hcsnf81zT8rNTr5/R58iE15XmeX0OVMKzpGc
|
|
25
|
+
TSNMhbBLQgXcyrqZzfmL2B+QZZ5Dt1X8jc4R5qcWKTvNbY53eb9XwnYOH39HdEFC
|
|
26
|
+
7OuNES+dLp7TcErgNILP38EApgIRo/ek8QKTNyz7YXwgoj1U7JvGL6wu/di5a3CK
|
|
27
|
+
16b0P0JxmLs+PTvfr/owk8C96+aAhrmtjQOAYiPz6CftbOMTP+OtFf61AgMBAAGj
|
|
28
|
+
gYgwgYUwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFKrZkiYLIIut
|
|
29
|
+
KaO35lY2qSQbnat5MCUGA1UdEQQeMByBGmphY29iLmhhbW1hY2tAaGFtbWFja2ou
|
|
30
|
+
Y29tMCUGA1UdEgQeMByBGmphY29iLmhhbW1hY2tAaGFtbWFja2ouY29tMA0GCSqG
|
|
31
|
+
SIb3DQEBCwUAA4IBgQA8kXy6L7S+mvX3C5Ca3zcH/KPgQk/LB40LfCxfCJCd5nRF
|
|
32
|
+
SBDKcyQkVun1lqmBaUNn+0UNWOdCWotUEYJq68VbFwoN5rVo6sMEbV5vEemWElQj
|
|
33
|
+
B/oA3DTew4U2TLMi07xYzHWIvrAiWHYAC6Xy5SpStxmZGJOdJeupweCnzlJN2Rqh
|
|
34
|
+
T8josr5JsONSLJU77aK6koR06P9bRaEoWBMWcKxWMZ06GDxkUU//tPAmNWTeIjVe
|
|
35
|
+
SOya5X5dLwL9Tv5rULVuoNVFCMXlcO4BHT/54Cq5eWDrAYOZlA2suwLWEtJ+LXb0
|
|
36
|
+
E62JvrKHMj01LWV1mOlckbU/ho1UyDeSD06QuelGQ2gYQvQBRn9Ws6oT8pacxNIX
|
|
37
|
+
pmf/Ai6Ry8jdkzqJAi6DPEc0tAsmEgRSshTt5YFrhmwI4kk66cxhSMV+hXUl6qRr
|
|
38
|
+
xbUnlP4a5/qCZZoX8GFXkgQewDRVsjXaqZTlk0XanIlAP9JMJGRpc3k088eAoEKS
|
|
39
|
+
4wCpiOXil+dcZUf2LU4=
|
|
36
40
|
-----END CERTIFICATE-----
|
|
37
|
-
date:
|
|
41
|
+
date: 2020-02-07 00:00:00.000000000 Z
|
|
38
42
|
dependencies:
|
|
39
43
|
- !ruby/object:Gem::Dependency
|
|
40
44
|
name: rails
|
|
@@ -136,26 +140,6 @@ dependencies:
|
|
|
136
140
|
- - ">="
|
|
137
141
|
- !ruby/object:Gem::Version
|
|
138
142
|
version: 0.7.0
|
|
139
|
-
- !ruby/object:Gem::Dependency
|
|
140
|
-
name: mysql2
|
|
141
|
-
requirement: !ruby/object:Gem::Requirement
|
|
142
|
-
requirements:
|
|
143
|
-
- - "~>"
|
|
144
|
-
- !ruby/object:Gem::Version
|
|
145
|
-
version: '0.4'
|
|
146
|
-
- - ">="
|
|
147
|
-
- !ruby/object:Gem::Version
|
|
148
|
-
version: 0.4.5
|
|
149
|
-
type: :runtime
|
|
150
|
-
prerelease: false
|
|
151
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
152
|
-
requirements:
|
|
153
|
-
- - "~>"
|
|
154
|
-
- !ruby/object:Gem::Version
|
|
155
|
-
version: '0.4'
|
|
156
|
-
- - ">="
|
|
157
|
-
- !ruby/object:Gem::Version
|
|
158
|
-
version: 0.4.5
|
|
159
143
|
- !ruby/object:Gem::Dependency
|
|
160
144
|
name: rmagick
|
|
161
145
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -222,40 +206,40 @@ dependencies:
|
|
|
222
206
|
requirements:
|
|
223
207
|
- - "~>"
|
|
224
208
|
- !ruby/object:Gem::Version
|
|
225
|
-
version: '0.
|
|
209
|
+
version: '0.15'
|
|
226
210
|
- - ">="
|
|
227
211
|
- !ruby/object:Gem::Version
|
|
228
|
-
version: 0.
|
|
212
|
+
version: '0.15'
|
|
229
213
|
type: :development
|
|
230
214
|
prerelease: false
|
|
231
215
|
version_requirements: !ruby/object:Gem::Requirement
|
|
232
216
|
requirements:
|
|
233
217
|
- - "~>"
|
|
234
218
|
- !ruby/object:Gem::Version
|
|
235
|
-
version: '0.
|
|
219
|
+
version: '0.15'
|
|
236
220
|
- - ">="
|
|
237
221
|
- !ruby/object:Gem::Version
|
|
238
|
-
version: 0.
|
|
222
|
+
version: '0.15'
|
|
239
223
|
- !ruby/object:Gem::Dependency
|
|
240
224
|
name: yard
|
|
241
225
|
requirement: !ruby/object:Gem::Requirement
|
|
242
226
|
requirements:
|
|
243
227
|
- - "~>"
|
|
244
228
|
- !ruby/object:Gem::Version
|
|
245
|
-
version: '0.
|
|
229
|
+
version: '0.9'
|
|
246
230
|
- - ">="
|
|
247
231
|
- !ruby/object:Gem::Version
|
|
248
|
-
version: 0.
|
|
232
|
+
version: 0.9.20
|
|
249
233
|
type: :development
|
|
250
234
|
prerelease: false
|
|
251
235
|
version_requirements: !ruby/object:Gem::Requirement
|
|
252
236
|
requirements:
|
|
253
237
|
- - "~>"
|
|
254
238
|
- !ruby/object:Gem::Version
|
|
255
|
-
version: '0.
|
|
239
|
+
version: '0.9'
|
|
256
240
|
- - ">="
|
|
257
241
|
- !ruby/object:Gem::Version
|
|
258
|
-
version: 0.
|
|
242
|
+
version: 0.9.20
|
|
259
243
|
- !ruby/object:Gem::Dependency
|
|
260
244
|
name: minitest
|
|
261
245
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -285,7 +269,7 @@ dependencies:
|
|
|
285
269
|
version: '3.2'
|
|
286
270
|
- - ">="
|
|
287
271
|
- !ruby/object:Gem::Version
|
|
288
|
-
version:
|
|
272
|
+
version: 3.2.4
|
|
289
273
|
type: :development
|
|
290
274
|
prerelease: false
|
|
291
275
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -295,7 +279,7 @@ dependencies:
|
|
|
295
279
|
version: '3.2'
|
|
296
280
|
- - ">="
|
|
297
281
|
- !ruby/object:Gem::Version
|
|
298
|
-
version:
|
|
282
|
+
version: 3.2.4
|
|
299
283
|
description: risu is a Nessus .nessus XML parser and report generation tool
|
|
300
284
|
email: jacob.hammack@hammackj.com
|
|
301
285
|
executables:
|
|
@@ -309,6 +293,7 @@ files:
|
|
|
309
293
|
- CODE_OF_CONDUCT.markdown
|
|
310
294
|
- CONTRIBUTING.md
|
|
311
295
|
- Gemfile
|
|
296
|
+
- Gemfile.lock
|
|
312
297
|
- LICENSE
|
|
313
298
|
- README.markdown
|
|
314
299
|
- Rakefile
|
|
@@ -343,6 +328,7 @@ files:
|
|
|
343
328
|
- lib/risu/models/hostproperty.rb
|
|
344
329
|
- lib/risu/models/individualpluginselection.rb
|
|
345
330
|
- lib/risu/models/item.rb
|
|
331
|
+
- lib/risu/models/nessuspluginmetadata.rb
|
|
346
332
|
- lib/risu/models/patch.rb
|
|
347
333
|
- lib/risu/models/plugin.rb
|
|
348
334
|
- lib/risu/models/pluginspreference.rb
|
|
@@ -359,30 +345,44 @@ files:
|
|
|
359
345
|
- lib/risu/parsers/nessus/postprocess/7zip.rb
|
|
360
346
|
- lib/risu/parsers/nessus/postprocess/adobe_acrobat.rb
|
|
361
347
|
- lib/risu/parsers/nessus/postprocess/adobe_air.rb
|
|
348
|
+
- lib/risu/parsers/nessus/postprocess/adobe_coldfusion.rb
|
|
349
|
+
- lib/risu/parsers/nessus/postprocess/adobe_creative_desktop.rb
|
|
350
|
+
- lib/risu/parsers/nessus/postprocess/adobe_flash_player.rb
|
|
362
351
|
- lib/risu/parsers/nessus/postprocess/adobe_reader.rb
|
|
352
|
+
- lib/risu/parsers/nessus/postprocess/adobe_shockwave_player.rb
|
|
363
353
|
- lib/risu/parsers/nessus/postprocess/apache.rb
|
|
364
354
|
- lib/risu/parsers/nessus/postprocess/apache_tomcat.rb
|
|
355
|
+
- lib/risu/parsers/nessus/postprocess/apple_icloud.rb
|
|
365
356
|
- lib/risu/parsers/nessus/postprocess/apple_itunes.rb
|
|
366
357
|
- lib/risu/parsers/nessus/postprocess/apple_quicktime.rb
|
|
358
|
+
- lib/risu/parsers/nessus/postprocess/artifex_ghostscript.rb
|
|
367
359
|
- lib/risu/parsers/nessus/postprocess/blackberry_enterprise_server.rb
|
|
368
360
|
- lib/risu/parsers/nessus/postprocess/ca_brightstor_arcserve.rb
|
|
369
361
|
- lib/risu/parsers/nessus/postprocess/cisco_anyconnect.rb
|
|
370
362
|
- lib/risu/parsers/nessus/postprocess/cisco_ios.rb
|
|
363
|
+
- lib/risu/parsers/nessus/postprocess/cisco_telepresence.rb
|
|
371
364
|
- lib/risu/parsers/nessus/postprocess/core_ftp.rb
|
|
372
365
|
- lib/risu/parsers/nessus/postprocess/db2.rb
|
|
366
|
+
- lib/risu/parsers/nessus/postprocess/dell_idrac.rb
|
|
373
367
|
- lib/risu/parsers/nessus/postprocess/downgrade_plugins.rb
|
|
374
368
|
- lib/risu/parsers/nessus/postprocess/dropbear_ssh.rb
|
|
375
369
|
- lib/risu/parsers/nessus/postprocess/filezilla.rb
|
|
376
370
|
- lib/risu/parsers/nessus/postprocess/firefox.rb
|
|
377
|
-
- lib/risu/parsers/nessus/postprocess/flash_player.rb
|
|
378
371
|
- lib/risu/parsers/nessus/postprocess/flexnet.rb
|
|
379
372
|
- lib/risu/parsers/nessus/postprocess/foxit_phantom_pdf.rb
|
|
380
373
|
- lib/risu/parsers/nessus/postprocess/foxit_reader.rb
|
|
381
374
|
- lib/risu/parsers/nessus/postprocess/google_chrome.rb
|
|
382
375
|
- lib/risu/parsers/nessus/postprocess/hp_system_mgt_homepage.rb
|
|
376
|
+
- lib/risu/parsers/nessus/postprocess/iLo.rb
|
|
377
|
+
- lib/risu/parsers/nessus/postprocess/intel_mgt_engine.rb
|
|
383
378
|
- lib/risu/parsers/nessus/postprocess/irfanview.rb
|
|
384
379
|
- lib/risu/parsers/nessus/postprocess/java.rb
|
|
385
380
|
- lib/risu/parsers/nessus/postprocess/libreoffice.rb
|
|
381
|
+
- lib/risu/parsers/nessus/postprocess/microsoft_office.rb
|
|
382
|
+
- lib/risu/parsers/nessus/postprocess/microsoft_visual_studio.rb
|
|
383
|
+
- lib/risu/parsers/nessus/postprocess/microsoft_windows.rb
|
|
384
|
+
- lib/risu/parsers/nessus/postprocess/mongo_db.rb
|
|
385
|
+
- lib/risu/parsers/nessus/postprocess/mozzila_thunderbird.rb
|
|
386
386
|
- lib/risu/parsers/nessus/postprocess/normalize_plugin_names.rb
|
|
387
387
|
- lib/risu/parsers/nessus/postprocess/openoffice.rb
|
|
388
388
|
- lib/risu/parsers/nessus/postprocess/openssh.rb
|
|
@@ -390,22 +390,24 @@ files:
|
|
|
390
390
|
- lib/risu/parsers/nessus/postprocess/oracle_database.rb
|
|
391
391
|
- lib/risu/parsers/nessus/postprocess/php.rb
|
|
392
392
|
- lib/risu/parsers/nessus/postprocess/post_process.rb
|
|
393
|
+
- lib/risu/parsers/nessus/postprocess/putty.rb
|
|
393
394
|
- lib/risu/parsers/nessus/postprocess/real_player.rb
|
|
394
395
|
- lib/risu/parsers/nessus/postprocess/risk_score.rb
|
|
395
396
|
- lib/risu/parsers/nessus/postprocess/root_cause.rb
|
|
397
|
+
- lib/risu/parsers/nessus/postprocess/samba.rb
|
|
396
398
|
- lib/risu/parsers/nessus/postprocess/servu.rb
|
|
397
|
-
- lib/risu/parsers/nessus/postprocess/shockwave.rb
|
|
398
399
|
- lib/risu/parsers/nessus/postprocess/sigplus_pro.rb
|
|
399
400
|
- lib/risu/parsers/nessus/postprocess/skype.rb
|
|
401
|
+
- lib/risu/parsers/nessus/postprocess/solarwinds_dameware.rb
|
|
400
402
|
- lib/risu/parsers/nessus/postprocess/symantec_endpoint.rb
|
|
401
403
|
- lib/risu/parsers/nessus/postprocess/symantec_pcanywhere.rb
|
|
404
|
+
- lib/risu/parsers/nessus/postprocess/tenable_nessus.rb
|
|
402
405
|
- lib/risu/parsers/nessus/postprocess/timbuktu.rb
|
|
403
406
|
- lib/risu/parsers/nessus/postprocess/vlc.rb
|
|
404
407
|
- lib/risu/parsers/nessus/postprocess/vmware_esxi.rb
|
|
405
408
|
- lib/risu/parsers/nessus/postprocess/vmware_player.rb
|
|
406
409
|
- lib/risu/parsers/nessus/postprocess/vmware_vcenter.rb
|
|
407
410
|
- lib/risu/parsers/nessus/postprocess/vmware_vsphere_client.rb
|
|
408
|
-
- lib/risu/parsers/nessus/postprocess/windows.rb
|
|
409
411
|
- lib/risu/parsers/nessus/postprocess/winscp.rb
|
|
410
412
|
- lib/risu/parsers/nessus/postprocess/wireshark.rb
|
|
411
413
|
- lib/risu/parsers/nexpose/nexpose_document.rb
|
|
@@ -438,6 +440,7 @@ files:
|
|
|
438
440
|
- lib/risu/templates/notable.rb
|
|
439
441
|
- lib/risu/templates/notable_detailed.rb
|
|
440
442
|
- lib/risu/templates/pci_compliance.rb
|
|
443
|
+
- lib/risu/templates/rollup_summary.rb
|
|
441
444
|
- lib/risu/templates/stig_findings_summary.rb
|
|
442
445
|
- lib/risu/templates/talking_points.rb
|
|
443
446
|
- lib/risu/templates/technical_findings.rb
|
|
@@ -465,7 +468,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
465
468
|
version: '0'
|
|
466
469
|
requirements: []
|
|
467
470
|
rubyforge_project: risu
|
|
468
|
-
rubygems_version: 2.6
|
|
471
|
+
rubygems_version: 2.7.6
|
|
469
472
|
signing_key:
|
|
470
473
|
specification_version: 4
|
|
471
474
|
summary: risu
|
metadata.gz.sig
CHANGED
|
Binary file
|
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
# Copyright (c) 2010-2017 Jacob Hammack.
|
|
2
|
-
#
|
|
3
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
-
# of this software and associated documentation files (the "Software"), to deal
|
|
5
|
-
# in the Software without restriction, including without limitation the rights
|
|
6
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
-
# copies of the Software, and to permit persons to whom the Software is
|
|
8
|
-
# furnished to do so, subject to the following conditions:
|
|
9
|
-
#
|
|
10
|
-
# The above copyright notice and this permission notice shall be included in
|
|
11
|
-
# all copies or substantial portions of the Software.
|
|
12
|
-
#
|
|
13
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
19
|
-
# THE SOFTWARE.
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
module Risu
|
|
23
|
-
module Parsers
|
|
24
|
-
module Nessus
|
|
25
|
-
module PostProcess
|
|
26
|
-
class FlashPlayer < Risu::Base::PostProcessBase
|
|
27
|
-
|
|
28
|
-
#
|
|
29
|
-
def initialize
|
|
30
|
-
@info =
|
|
31
|
-
{
|
|
32
|
-
:description => "Flash Player Patch Rollup",
|
|
33
|
-
:plugin_id => -99997,
|
|
34
|
-
:plugin_name => "Update to the latest Flash Player",
|
|
35
|
-
:item_name => "Update to the latest Flash Player",
|
|
36
|
-
:plugin_ids => [
|
|
37
|
-
11323,
|
|
38
|
-
11952,
|
|
39
|
-
20158,
|
|
40
|
-
21079,
|
|
41
|
-
22056,
|
|
42
|
-
23869,
|
|
43
|
-
25694,
|
|
44
|
-
29741,
|
|
45
|
-
31799,
|
|
46
|
-
34741,
|
|
47
|
-
35742,
|
|
48
|
-
40434,
|
|
49
|
-
43068,
|
|
50
|
-
44596,
|
|
51
|
-
46859,
|
|
52
|
-
48300,
|
|
53
|
-
49307,
|
|
54
|
-
50493,
|
|
55
|
-
51926,
|
|
56
|
-
52673,
|
|
57
|
-
53472,
|
|
58
|
-
54299,
|
|
59
|
-
54972,
|
|
60
|
-
55140,
|
|
61
|
-
55803,
|
|
62
|
-
56259,
|
|
63
|
-
56874,
|
|
64
|
-
58001,
|
|
65
|
-
58207,
|
|
66
|
-
58538,
|
|
67
|
-
58994,
|
|
68
|
-
59196,
|
|
69
|
-
59426,
|
|
70
|
-
61550,
|
|
71
|
-
61622,
|
|
72
|
-
62480,
|
|
73
|
-
62836,
|
|
74
|
-
63242,
|
|
75
|
-
63450,
|
|
76
|
-
64506,
|
|
77
|
-
64584,
|
|
78
|
-
64916,
|
|
79
|
-
65219,
|
|
80
|
-
65910,
|
|
81
|
-
66445,
|
|
82
|
-
66872,
|
|
83
|
-
67225,
|
|
84
|
-
69866,
|
|
85
|
-
70858,
|
|
86
|
-
71351,
|
|
87
|
-
71951,
|
|
88
|
-
72284,
|
|
89
|
-
72606,
|
|
90
|
-
72937,
|
|
91
|
-
73433,
|
|
92
|
-
73740,
|
|
93
|
-
73994,
|
|
94
|
-
74431,
|
|
95
|
-
76413,
|
|
96
|
-
77172,
|
|
97
|
-
77577,
|
|
98
|
-
78441,
|
|
99
|
-
79140,
|
|
100
|
-
79442,
|
|
101
|
-
79835,
|
|
102
|
-
80484,
|
|
103
|
-
80946,
|
|
104
|
-
80998,
|
|
105
|
-
81127,
|
|
106
|
-
81819,
|
|
107
|
-
82781,
|
|
108
|
-
83365,
|
|
109
|
-
84048,
|
|
110
|
-
84365,
|
|
111
|
-
84642,
|
|
112
|
-
84730,
|
|
113
|
-
85326,
|
|
114
|
-
86060,
|
|
115
|
-
86369,
|
|
116
|
-
86423,
|
|
117
|
-
86851,
|
|
118
|
-
87244,
|
|
119
|
-
87657,
|
|
120
|
-
88639,
|
|
121
|
-
89834,
|
|
122
|
-
90425,
|
|
123
|
-
91163,
|
|
124
|
-
91670,
|
|
125
|
-
92012,
|
|
126
|
-
93461,
|
|
127
|
-
93960,
|
|
128
|
-
94334,
|
|
129
|
-
94628,
|
|
130
|
-
95762,
|
|
131
|
-
96388,
|
|
132
|
-
97142,
|
|
133
|
-
97727,
|
|
134
|
-
99283,
|
|
135
|
-
100052,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
]
|
|
139
|
-
}
|
|
140
|
-
end
|
|
141
|
-
end
|
|
142
|
-
end
|
|
143
|
-
end
|
|
144
|
-
end
|
|
145
|
-
end
|