risu 1.7.9 → 1.8.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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/LICENSE +1 -1
- data/README.markdown +16 -8
- data/Rakefile +12 -3
- data/bin/risu +2 -2
- data/docs/NEWS.markdown +32 -9
- data/lib/risu.rb +2 -2
- data/lib/risu/base.rb +1 -1
- data/lib/risu/base/graph_template_helper.rb +20 -26
- data/lib/risu/base/host_template_helper.rb +17 -23
- data/lib/risu/base/malware_template_helper.rb +18 -24
- data/lib/risu/base/post_process_base.rb +97 -71
- data/lib/risu/base/post_process_manager.rb +3 -3
- data/lib/risu/base/scan_helper.rb +17 -23
- data/lib/risu/base/schema.rb +2 -2
- data/lib/risu/base/shares_template_helper.rb +18 -24
- data/lib/risu/base/template_base.rb +1 -1
- data/lib/risu/base/template_helper.rb +20 -26
- data/lib/risu/base/template_manager.rb +5 -5
- data/lib/risu/base/templater.rb +3 -5
- data/lib/risu/cli.rb +1 -1
- data/lib/risu/cli/application.rb +26 -5
- 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 +1 -1
- data/lib/risu/models/attachment.rb +1 -1
- data/lib/risu/models/familyselection.rb +1 -1
- data/lib/risu/models/host.rb +13 -13
- data/lib/risu/models/hostproperty.rb +1 -1
- data/lib/risu/models/individualpluginselection.rb +1 -1
- data/lib/risu/models/item.rb +7 -7
- 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 +2 -2
- 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 +1 -1
- data/lib/risu/parsers/nessus/postprocess.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/7zip.rb +46 -0
- data/lib/risu/parsers/nessus/postprocess/adobe_acrobat.rb +8 -1
- data/lib/risu/parsers/nessus/postprocess/adobe_air.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/adobe_reader.rb +5 -3
- data/lib/risu/parsers/nessus/postprocess/apache.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/apache_tomcat.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/apple_itunes.rb +2 -1
- data/lib/risu/parsers/nessus/postprocess/apple_quicktime.rb +26 -3
- data/lib/risu/parsers/nessus/postprocess/blackberry_enterprise_server.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/ca_brightstor_arcserve.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/cisco_anyconnect.rb +5 -1
- data/lib/risu/parsers/nessus/postprocess/cisco_ios.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/core_ftp.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/db2.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/downgrade_plugins.rb +3 -2
- data/lib/risu/parsers/nessus/postprocess/filezilla.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/firefox.rb +3 -1
- data/lib/risu/parsers/nessus/postprocess/flash_player.rb +29 -26
- data/lib/risu/parsers/nessus/postprocess/flexnet.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/foxit_phantom_pdf.rb +46 -0
- data/lib/risu/parsers/nessus/postprocess/foxit_reader.rb +11 -8
- data/lib/risu/parsers/nessus/postprocess/google_chrome.rb +11 -1
- data/lib/risu/parsers/nessus/postprocess/hp_system_mgt_homepage.rb +2 -1
- data/lib/risu/parsers/nessus/postprocess/irfanview.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/java.rb +3 -1
- data/lib/risu/parsers/nessus/postprocess/libreoffice.rb +3 -2
- data/lib/risu/parsers/nessus/postprocess/openoffice.rb +3 -1
- data/lib/risu/parsers/nessus/postprocess/openssh.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/openssl.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/oracle_database.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/php.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/post_process.rb +2 -2
- data/lib/risu/parsers/nessus/postprocess/real_player.rb +53 -0
- data/lib/risu/parsers/nessus/postprocess/risk_score.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/root_cause.rb +2 -3
- data/lib/risu/parsers/nessus/postprocess/servu.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/shockwave.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/sigplus_pro.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/skype.rb +46 -0
- data/lib/risu/parsers/nessus/postprocess/symantec_endpoint.rb +52 -0
- data/lib/risu/parsers/nessus/postprocess/symantec_pcanywhere.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/timbuktu.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/vlc.rb +12 -9
- data/lib/risu/parsers/nessus/postprocess/vmware_esxi.rb +9 -2
- data/lib/risu/parsers/nessus/postprocess/vmware_player.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/vmware_vcenter.rb +2 -2
- data/lib/risu/parsers/nessus/postprocess/vmware_vsphere_client.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/windows.rb +751 -705
- data/lib/risu/parsers/nessus/postprocess/winscp.rb +1 -1
- data/lib/risu/parsers/nessus/postprocess/wireshark.rb +2 -1
- 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 +3 -3
- data/lib/risu/renderers/nilrenderer.rb +1 -1
- data/lib/risu/renderers/pdfrenderer.rb +4 -5
- data/lib/risu/template_helpers.rb +1 -1
- data/lib/risu/templates/assets.rb +3 -3
- data/lib/risu/templates/authentication_summary.rb +34 -5
- data/lib/risu/templates/cover_sheet.rb +3 -6
- data/lib/risu/templates/exec_summary.rb +12 -4
- data/lib/risu/templates/executive_summary_detailed.rb +3 -3
- data/lib/risu/templates/exploitablity_summary.rb +3 -3
- data/lib/risu/templates/failed_audits.rb +20 -26
- data/lib/risu/templates/finding_statistics.rb +3 -3
- data/lib/risu/templates/findings_host.rb +3 -3
- data/lib/risu/templates/findings_summary.rb +5 -5
- data/lib/risu/templates/findings_summary_with_pluginid.rb +5 -5
- data/lib/risu/templates/graphs.rb +3 -3
- data/lib/risu/templates/host_findings_csv.rb +3 -3
- data/lib/risu/templates/host_summary.rb +3 -3
- data/lib/risu/templates/malicious_process_detection.rb +3 -3
- data/lib/risu/templates/missing_root_causes.rb +3 -3
- data/lib/risu/templates/ms_patch_summary.rb +3 -3
- data/lib/risu/templates/ms_update_summary.rb +3 -3
- data/lib/risu/templates/ms_wsus_findings.rb +19 -26
- data/lib/risu/templates/notable.rb +3 -3
- data/lib/risu/templates/notable_detailed.rb +3 -3
- data/lib/risu/templates/pci_compliance.rb +3 -3
- data/lib/risu/templates/stig_findings_summary.rb +3 -3
- data/lib/risu/templates/talking_points.rb +5 -31
- data/lib/risu/templates/technical_findings.rb +3 -3
- data/lib/risu/templates/template.rb +3 -3
- data/lib/risu/templates/top_25.rb +3 -3
- data/lib/risu/version.rb +6 -5
- data/risu.gemspec +9 -7
- metadata +49 -20
- metadata.gz.sig +2 -0
- data/Gemfile.lock +0 -148
data/lib/risu/models/host.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -600,18 +600,18 @@ module Risu
|
|
|
600
600
|
"found on the #{Report.title} network.\n\n"
|
|
601
601
|
|
|
602
602
|
# @TODO this should be a table sorted by %
|
|
603
|
-
text << "#{nt_percent.round.to_i}% of the network is Windows NT
|
|
604
|
-
text << "#{w2k_percent.round.to_i}% of the network is Windows 2000
|
|
605
|
-
text << "#{xp_percent.round.to_i}% of the network is Windows XP
|
|
606
|
-
text << "#{w2k3_percent.round.to_i}% of the network is Windows Server 2003
|
|
607
|
-
text << "#{vista_percent.round.to_i}% of the network is Windows Vista
|
|
608
|
-
text << "#{w2k8_percent.round.to_i}% of the network is Windows Server 2008
|
|
609
|
-
text << "#{w7_percent.round.to_i}% of the network is Windows 7
|
|
610
|
-
text << "#{w8_percent.round.to_i}% of the network is Windows 8
|
|
611
|
-
text << "#{w10_percent.round.to_i}% of the network is Windows 10
|
|
612
|
-
text << "#{w2k12_percent.round.to_i}% of the network is Windows Server 20012
|
|
613
|
-
|
|
614
|
-
text << "\n\n" << unsupported_os_windows if nt > 0 or w2k > 0
|
|
603
|
+
text << "#{nt_percent.round.to_i}% (#{nt}) of the network is Windows NT.\n" if nt_percent >= 1
|
|
604
|
+
text << "#{w2k_percent.round.to_i}% (#{w2k}) of the network is Windows 2000.\n" if w2k_percent >= 1
|
|
605
|
+
text << "#{xp_percent.round.to_i}% (#{xp}) of the network is Windows XP.\n" if xp_percent >= 1
|
|
606
|
+
text << "#{w2k3_percent.round.to_i}% (#{w2k3}) of the network is Windows Server 2003.\n" if w2k3_percent >= 1
|
|
607
|
+
text << "#{vista_percent.round.to_i}% (#{vista}) of the network is Windows Vista.\n" if vista_percent >= 1
|
|
608
|
+
text << "#{w2k8_percent.round.to_i}% (#{w2k8}) of the network is Windows Server 2008.\n" if w2k8_percent >= 1
|
|
609
|
+
text << "#{w7_percent.round.to_i}% (#{w7}) of the network is Windows 7.\n" if w7_percent >= 1
|
|
610
|
+
text << "#{w8_percent.round.to_i}% (#{w8}) of the network is Windows 8.\n" if w8_percent >= 1
|
|
611
|
+
text << "#{w10_percent.round.to_i}% (#{w10}) of the network is Windows 10.\n" if w10_percent >= 1
|
|
612
|
+
text << "#{w2k12_percent.round.to_i}% (#{w2k12}) of the network is Windows Server 20012.\n" if w2k12_percent >= 1
|
|
613
|
+
|
|
614
|
+
text << "\n\n" << unsupported_os_windows if nt > 0 or w2k > 0 or xp > 0
|
|
615
615
|
|
|
616
616
|
return text
|
|
617
617
|
end
|
data/lib/risu/models/item.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -502,7 +502,7 @@ module Risu
|
|
|
502
502
|
# Scrubs a plugin_name to remove all pointless data
|
|
503
503
|
#
|
|
504
504
|
# @return [String] Scrubbed plugin name
|
|
505
|
-
def scrub_plugin_name
|
|
505
|
+
def scrub_plugin_name name
|
|
506
506
|
return name.gsub("(remote check)", "").gsub("(uncredentialed check)", "").gsub(/(\(\d.*\))/, "")
|
|
507
507
|
end
|
|
508
508
|
|
|
@@ -604,11 +604,11 @@ module Risu
|
|
|
604
604
|
|
|
605
605
|
name = scrub_plugin_name(plugin.plugin_name)
|
|
606
606
|
total = Item.where(:plugin_id => item.plugin_id).count
|
|
607
|
-
core =
|
|
608
|
-
metasploit =
|
|
609
|
-
canvas =
|
|
610
|
-
exploithub =
|
|
611
|
-
d2elliot =
|
|
607
|
+
core = plugin.exploit_framework_core? ? "Yes" : nil
|
|
608
|
+
metasploit = plugin.exploit_framework_metasploit? ? "Yes" : nil
|
|
609
|
+
canvas = plugin.exploit_framework_canvas? ? "Yes" : nil
|
|
610
|
+
exploithub = plugin.exploit_framework_exploithub? ? "Yes" : nil
|
|
611
|
+
d2elliot = plugin.exploit_framework_d2_elliot? ? "Yes" : nil
|
|
612
612
|
|
|
613
613
|
results.push [name, total, core, metasploit, canvas, exploithub, d2elliot]
|
|
614
614
|
end
|
data/lib/risu/models/patch.rb
CHANGED
data/lib/risu/models/plugin.rb
CHANGED
data/lib/risu/models/policy.rb
CHANGED
data/lib/risu/models/report.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -29,7 +29,7 @@ module Risu
|
|
|
29
29
|
|
|
30
30
|
class << self
|
|
31
31
|
|
|
32
|
-
attr_accessor :title, :author, :company, :classification, :extra
|
|
32
|
+
attr_accessor :title, :author, :company, :classification, :network, :owner, :location, :extra
|
|
33
33
|
|
|
34
34
|
#
|
|
35
35
|
#@scan_date = Host.where("start is not null").first[:start].to_s
|
data/lib/risu/models/version.rb
CHANGED
data/lib/risu/parsers.rb
CHANGED
|
@@ -0,0 +1,46 @@
|
|
|
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 SevenZipPatchRollup < Risu::Base::PostProcessBase
|
|
27
|
+
|
|
28
|
+
#
|
|
29
|
+
def initialize
|
|
30
|
+
@info =
|
|
31
|
+
{
|
|
32
|
+
:description => "7-Zip Patch Rollup",
|
|
33
|
+
:plugin_id => -99954,
|
|
34
|
+
:plugin_name => "Update to the latest 7-Zip",
|
|
35
|
+
:item_name => "Update to the latest 7-Zip",
|
|
36
|
+
:plugin_ids => [
|
|
37
|
+
91230,
|
|
38
|
+
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -72,6 +72,13 @@ module Risu
|
|
|
72
72
|
91096,
|
|
73
73
|
87917,
|
|
74
74
|
89830,
|
|
75
|
+
92034,
|
|
76
|
+
40802,
|
|
77
|
+
40801,
|
|
78
|
+
40800,
|
|
79
|
+
48323,
|
|
80
|
+
49260,
|
|
81
|
+
51062,
|
|
75
82
|
|
|
76
83
|
|
|
77
84
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -80,8 +80,10 @@ module Risu
|
|
|
80
80
|
87918,
|
|
81
81
|
89831,
|
|
82
82
|
70343,
|
|
83
|
-
91097
|
|
84
|
-
|
|
83
|
+
91097,
|
|
84
|
+
92035,
|
|
85
|
+
94072,
|
|
86
|
+
|
|
85
87
|
|
|
86
88
|
|
|
87
89
|
]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -39,6 +39,7 @@ module Risu
|
|
|
39
39
|
86602,
|
|
40
40
|
91347,
|
|
41
41
|
87371,
|
|
42
|
+
92410,
|
|
42
43
|
|
|
43
44
|
|
|
44
45
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -38,9 +38,32 @@ module Risu
|
|
|
38
38
|
72706,
|
|
39
39
|
78678,
|
|
40
40
|
62890,
|
|
41
|
+
87848,
|
|
42
|
+
85662,
|
|
43
|
+
84505,
|
|
44
|
+
59113,
|
|
45
|
+
56667,
|
|
46
|
+
55764,
|
|
47
|
+
21556,
|
|
48
|
+
22336,
|
|
49
|
+
24761,
|
|
50
|
+
25123,
|
|
51
|
+
25347,
|
|
52
|
+
25703,
|
|
53
|
+
26916,
|
|
54
|
+
29698,
|
|
55
|
+
29982,
|
|
56
|
+
31735,
|
|
57
|
+
33130,
|
|
58
|
+
34119,
|
|
59
|
+
34460,
|
|
60
|
+
35437,
|
|
61
|
+
38988,
|
|
62
|
+
40929,
|
|
63
|
+
45388,
|
|
64
|
+
27626,
|
|
65
|
+
30204,
|
|
41
66
|
|
|
42
|
-
|
|
43
|
-
|
|
44
67
|
]
|
|
45
68
|
}
|
|
46
69
|
end
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -45,6 +45,10 @@ module Risu
|
|
|
45
45
|
85541,
|
|
46
46
|
87894,
|
|
47
47
|
88100,
|
|
48
|
+
54954,
|
|
49
|
+
59820,
|
|
50
|
+
93382,
|
|
51
|
+
71464,
|
|
48
52
|
|
|
49
53
|
|
|
50
54
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -43,7 +43,8 @@ module Risu
|
|
|
43
43
|
41028 => 0, #SNMP Agent Default Community Name (public) - 41028
|
|
44
44
|
10264 => 0, #SNMP Agent Default Community Names - 10264
|
|
45
45
|
10081 => 0, #FTP Privileged Port Bounce Scan - 10081
|
|
46
|
-
|
|
46
|
+
42411 => 0, #Microsoft Windows SMB Shares Unprivileged Access
|
|
47
|
+
66349 => 0, #X Server Unauthenticated Access: Screenshot
|
|
47
48
|
|
|
48
49
|
}
|
|
49
50
|
end
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -76,6 +76,8 @@ module Risu
|
|
|
76
76
|
90793,
|
|
77
77
|
91547,
|
|
78
78
|
88754,
|
|
79
|
+
92755,
|
|
80
|
+
93662,
|
|
79
81
|
|
|
80
82
|
|
|
81
83
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2010-
|
|
1
|
+
# Copyright (c) 2010-2017 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
|
|
@@ -34,6 +34,20 @@ module Risu
|
|
|
34
34
|
:plugin_name => "Update to the latest Flash Player",
|
|
35
35
|
:item_name => "Update to the latest Flash Player",
|
|
36
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,
|
|
37
51
|
46859,
|
|
38
52
|
48300,
|
|
39
53
|
49307,
|
|
@@ -53,6 +67,7 @@ module Risu
|
|
|
53
67
|
58994,
|
|
54
68
|
59196,
|
|
55
69
|
59426,
|
|
70
|
+
61550,
|
|
56
71
|
61622,
|
|
57
72
|
62480,
|
|
58
73
|
62836,
|
|
@@ -71,24 +86,13 @@ module Risu
|
|
|
71
86
|
71351,
|
|
72
87
|
71951,
|
|
73
88
|
72284,
|
|
74
|
-
74431,
|
|
75
|
-
73994,
|
|
76
|
-
73740,
|
|
77
|
-
73433,
|
|
78
89
|
72606,
|
|
79
|
-
76413,
|
|
80
|
-
34741,
|
|
81
|
-
35742,
|
|
82
|
-
40434,
|
|
83
|
-
43068,
|
|
84
|
-
25694,
|
|
85
90
|
72937,
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
21079,
|
|
91
|
+
73433,
|
|
92
|
+
73740,
|
|
93
|
+
73994,
|
|
94
|
+
74431,
|
|
95
|
+
76413,
|
|
92
96
|
77172,
|
|
93
97
|
77577,
|
|
94
98
|
78441,
|
|
@@ -96,18 +100,16 @@ module Risu
|
|
|
96
100
|
79442,
|
|
97
101
|
79835,
|
|
98
102
|
80484,
|
|
103
|
+
80946,
|
|
99
104
|
80998,
|
|
100
105
|
81127,
|
|
101
106
|
81819,
|
|
102
|
-
80946,
|
|
103
|
-
83365,
|
|
104
107
|
82781,
|
|
105
|
-
|
|
108
|
+
83365,
|
|
106
109
|
84048,
|
|
107
110
|
84365,
|
|
108
111
|
84642,
|
|
109
112
|
84730,
|
|
110
|
-
31799,
|
|
111
113
|
85326,
|
|
112
114
|
86060,
|
|
113
115
|
86369,
|
|
@@ -116,16 +118,17 @@ module Risu
|
|
|
116
118
|
87244,
|
|
117
119
|
87657,
|
|
118
120
|
88639,
|
|
119
|
-
88639,
|
|
120
|
-
11323,
|
|
121
121
|
89834,
|
|
122
122
|
90425,
|
|
123
123
|
91163,
|
|
124
|
+
91670,
|
|
125
|
+
92012,
|
|
126
|
+
93461,
|
|
127
|
+
93960,
|
|
128
|
+
94334,
|
|
129
|
+
94628,
|
|
124
130
|
|
|
125
131
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
132
|
]
|
|
130
133
|
}
|
|
131
134
|
end
|