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
|
@@ -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
|
|
@@ -31,7 +31,7 @@ module Risu
|
|
|
31
31
|
{
|
|
32
32
|
:description => "VMware Player Patch Rollup",
|
|
33
33
|
:plugin_id => -99976,
|
|
34
|
-
:plugin_name => "
|
|
34
|
+
:plugin_name => "Missing the latest VMware Player Patches",
|
|
35
35
|
:item_name => "Update to the latest VMware Player",
|
|
36
36
|
:plugin_ids => [
|
|
37
37
|
71231,
|
|
@@ -41,7 +41,7 @@ module Risu
|
|
|
41
41
|
84219,
|
|
42
42
|
84805,
|
|
43
43
|
81185,
|
|
44
|
-
|
|
44
|
+
|
|
45
45
|
|
|
46
46
|
]
|
|
47
47
|
}
|
|
@@ -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
|
|
@@ -31,7 +31,7 @@ module Risu
|
|
|
31
31
|
{
|
|
32
32
|
:description => "VMware vCenter Patch Rollup",
|
|
33
33
|
:plugin_id => -99979,
|
|
34
|
-
:plugin_name => "
|
|
34
|
+
:plugin_name => "Missing the latest VMware vCenter Patches",
|
|
35
35
|
:item_name => "Update to the latest VMware vCenter",
|
|
36
36
|
:plugin_ids => [
|
|
37
37
|
79865,
|
|
@@ -52,9 +52,15 @@ module Risu
|
|
|
52
52
|
91322,
|
|
53
53
|
87592,
|
|
54
54
|
92870,
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
91713, #VMware vCenter Server 5.0.x < 5.0u3g / 5.1.x < 5.1u3d / 5.5.x < 5.5u2d Reflected XSS (VMSA-2016- 0009)
|
|
56
|
+
76947, #VMware vCenter Converter Multiple Vulnerabilities (VMSA-2014-0006)
|
|
57
|
+
99475, #VMware vCenter Server 6.0.x < 6.0u3b / 6.5.x < 6.5c BlazeDS AMF3 RCE (VMSA-2017-0007)
|
|
58
|
+
104654, #VMware vCenter Server 5.5.x < 5.5u3f / 6.0.x < 6.0u3c / 6.5.x < 6.5u1 Multiple Vulnerabilities (VMSA- 2017-0017)
|
|
59
|
+
86124, #VMware vCenter 5.5 LDAP Certificate Validation MitM Spoofing (VMSA-2015-0006)
|
|
60
|
+
95468, #VMware vCenter Server 5.5.x < 5.5u3e / 6.0.x < 6.0u2a Multiple XXE Vulnerabilities (VMSA-2016-0022)
|
|
61
|
+
105784, #VMware vCenter Server 5.5.x < 5.5U3g / 6.0.x < 6.0U3d / 6.5.x < 6.5U1e Hypervisor-Assisted Guest Remediation (VMSA-2018-0004) (Spectre)
|
|
62
|
+
111760, #VMware vCenter Server 5.5.x / 6.0.x / 6.5.x / 6.7.x Speculative Execution Side Channel Vulnerability (Foreshadow) (VMSA-2018-0020)
|
|
63
|
+
79864, #VMware vCenter Update Manager Multiple Java Vulnerabilities (VMSA-2014-0012)
|
|
58
64
|
|
|
59
65
|
|
|
60
66
|
|
|
@@ -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
|
|
@@ -31,15 +31,16 @@ module Risu
|
|
|
31
31
|
{
|
|
32
32
|
:description => "VMware vSphere Client Patch Rollup",
|
|
33
33
|
:plugin_id => -99967,
|
|
34
|
-
:plugin_name => "
|
|
34
|
+
:plugin_name => "Missing the latest VMware vSphere Client Patches",
|
|
35
35
|
:item_name => "Update to the latest VMware vSphere Client",
|
|
36
36
|
:plugin_ids => [
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
64559,
|
|
38
|
+
73595,
|
|
39
|
+
51057,
|
|
40
40
|
76355,
|
|
41
41
|
87675,
|
|
42
|
-
|
|
42
|
+
95657, #VMware vSphere Client XXE Injection Information Disclosure (VMSA-2016-0022)
|
|
43
|
+
|
|
43
44
|
]
|
|
44
45
|
}
|
|
45
46
|
end
|
|
@@ -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
|
|
@@ -31,15 +31,14 @@ module Risu
|
|
|
31
31
|
{
|
|
32
32
|
:description => "WinSCP Patch Rollups",
|
|
33
33
|
:plugin_id => -99978,
|
|
34
|
-
:plugin_name => "
|
|
34
|
+
:plugin_name => "Missing the latest WinSCP Patches",
|
|
35
35
|
:item_name => "Update to the latest WinSCP",
|
|
36
36
|
:plugin_ids => [
|
|
37
|
-
73613,
|
|
38
|
-
76167,
|
|
39
|
-
78078,
|
|
40
|
-
72388,
|
|
41
|
-
72389,
|
|
42
|
-
|
|
37
|
+
73613, #WinSCP Heartbeat Information Disclosure (Heartbleed)
|
|
38
|
+
76167, #WinSCP 5.x < 5.5.4 Multiple Vulnerabilities
|
|
39
|
+
78078, #WinSCP 5.x < 5.5.5 Multiple Vulnerabilities
|
|
40
|
+
72388, #WinSCP < 5.1.6 RSA Signature Blob Integer Overflow
|
|
41
|
+
72389, #WinSCP < 5.1.7 Multiple Vulnerabilities
|
|
43
42
|
|
|
44
43
|
|
|
45
44
|
]
|
|
@@ -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
|
|
@@ -31,58 +31,80 @@ module Risu
|
|
|
31
31
|
{
|
|
32
32
|
:description => "Wireshark Patch Rollups",
|
|
33
33
|
:plugin_id => -99992,
|
|
34
|
-
:plugin_name => "
|
|
34
|
+
:plugin_name => "Missing the latest Wireshark Patches",
|
|
35
35
|
:item_name => "Update to the latest Wireshark",
|
|
36
36
|
:plugin_ids => [
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
37
|
+
61572, #Wireshark 1.6.x < 1.6.10 Multiple Vulnerabilities
|
|
38
|
+
64361, #Wireshark 1.6.x < 1.6.13 Multiple Vulnerabilities
|
|
39
|
+
65253, #Wireshark 1.6.x < 1.6.14 Multiple Vulnerabilities
|
|
40
|
+
66543, #Wireshark 1.6.x < 1.6.15 ASN.1 BER Dissector Malformed Packet Handling DoS
|
|
41
|
+
65254, #Wireshark 1.8.x < 1.8.6 Multiple Vulnerabilities
|
|
42
|
+
66544, #Wireshark 1.8.x < 1.8.7 Multiple Vulnerabilities
|
|
43
|
+
72941, #Wireshark 1.8.x < 1.8.13 Multiple Vulnerabilities
|
|
44
|
+
66895, #Wireshark 1.8.x < 1.8.8 Multiple Vulnerabilities
|
|
45
|
+
69104, #Wireshark 1.8.x < 1.8.9 Multiple Vulnerabilities
|
|
46
|
+
69880, #Wireshark 1.8.x < 1.8.10 Multiple DoS
|
|
47
|
+
70763, #Wireshark 1.8.x < 1.8.11 Multiple DoS Vulnerabilities
|
|
48
|
+
71520, #Wireshark 1.8.x < 1.8.12 Multiple DoS
|
|
49
|
+
56164, #Wireshark 1.6.x < 1.6.2 Multiple Vulnerabilities
|
|
50
|
+
56690, #Wireshark 1.6.x < 1.6.3 Multiple Vulnerabilities
|
|
51
|
+
58518, #Wireshark 1.6.x < 1.6.6 Multiple Denial of Service Vulnerabilities
|
|
52
|
+
59240, #Wireshark 1.6.x < 1.6.8 Multiple Denial of Service Vulnerabilities
|
|
53
|
+
60117, #Wireshark 1.6.x < 1.6.9 Multiple Denial of Service Vulnerabilities
|
|
54
|
+
62477, #Wireshark 1.6.x < 1.6.11 DRDA DoS
|
|
55
|
+
63095, #Wireshark 1.6.x < 1.6.12 Multiple Vulnerabilities
|
|
56
|
+
66894, #Wireshark 1.6.x < 1.6.16 Multiple DoS Vulnerabilities
|
|
57
|
+
57539, #Wireshark 1.6.x < 1.6.5 Multiple Vulnerabilities
|
|
58
|
+
53473, #Wireshark < 1.2.16 / 1.4.5 Multiple Vulnerabilities
|
|
59
|
+
57538, #Wireshark 1.4.x < 1.4.11 Multiple Vulnerabilities
|
|
60
|
+
61571, #Wireshark 1.4.x < 1.4.15 Multiple Vulnerabilities
|
|
61
|
+
54942, #Wireshark < 1.2.17 / 1.4.7 Multiple DoS Vulnerabilities
|
|
62
|
+
55510, #Wireshark < 1.2.18 / 1.4.8 / 1.6.1 Multiple Denial of Service Vulnerabilities
|
|
63
|
+
56163, #Wireshark 1.4.x < 1.4.9 Multiple Vulnerabilities
|
|
64
|
+
56689, #Wireshark 1.4.x < 1.4.10 Multiple Vulnerabilities
|
|
65
|
+
58517, #Wireshark 1.4.x < 1.4.12 Multiple Denial of Service Vulnerabilities
|
|
66
|
+
59239, #Wireshark 1.4.x < 1.4.13 Multiple Denial of Service Vulnerabilities
|
|
67
|
+
60116, #Wireshark 1.4.x < 1.4.14 Multiple Denial of Service Vulnerabilities
|
|
68
|
+
51458, #Wireshark < 1.2.14 / 1.4.3 Multiple Vulnerabilities
|
|
69
|
+
52502, #Wireshark < 1.2.15 / 1.4.4 Multiple Vulnerabilities
|
|
70
|
+
83488, #Wireshark 1.10.x < 1.10.14 / 1.12.x < 1.12.5 Multiple DoS Vulnerabilities
|
|
71
|
+
36127, #Wireshark / Ethereal 0.99.2 to 1.0.6 Multiple Vulnerabilities
|
|
72
|
+
40335, #Wireshark / Ethereal 0.9.2 to 1.2.0 Multiple Vulnerabilities
|
|
73
|
+
43350, #Wireshark / Ethereal 0.9.0 to 1.2.4 Multiple Vulnerabilities
|
|
74
|
+
44338, #Wireshark / Ethereal Dissector LWRES Multiple Buffer Overflows
|
|
75
|
+
46864, #Wireshark / Ethereal < 1.0.14 / 1.2.9 Multiple Vulnerabilities
|
|
76
|
+
48213, #Wireshark / Ethereal < 1.0.15 / 1.2.10 Multiple Vulnerabilities
|
|
77
|
+
48943, #Wireshark / Ethereal < 1.2.11 / 1.0.16 Path Subversion Arbitrary DLL Injection Code Execution
|
|
78
|
+
89103, #Wireshark 1.12.x < 1.12.10 Multiple Vulnerabilities
|
|
79
|
+
90786, #Wireshark 1.12.x < 1.12.11 Multiple DoS
|
|
80
|
+
90787, #Wireshark 2.0.x < 2.0.3 Multiple DoS
|
|
81
|
+
92817, #Wireshark 2.0.x < 2.0.5 Multiple DoS
|
|
82
|
+
99437, #Wireshark 2.0.x < 2.0.12 / 2.2.x < 2.2.6 Multiple DoS
|
|
83
|
+
97574, #Wireshark 2.0.x < 2.0.11 / 2.2.x < 2.2.5 Multiple DoS
|
|
84
|
+
89104, #Wireshark 2.0.x < 2.0.2 Multiple Vulnerabilities
|
|
85
|
+
91821, #Wireshark 2.0.x < 2.0.4 Multiple DoS
|
|
86
|
+
100671, #Wireshark 2.0.x < 2.0.13 / 2.2.x < 2.2.7 Multiple DoS
|
|
87
|
+
91820, #Wireshark 1.12.x < 1.12.12 Multiple DoS - 91820
|
|
88
|
+
92816, #Wireshark 1.12.x < 1.12.13 Multiple DoS - 92816
|
|
89
|
+
50678, #Wireshark < 1.2.13 / 1.4.2 Multiple Vulnerabilities
|
|
90
|
+
107093, #Wireshark 2.2.x < 2.2.13 / 2.4.x < 2.4.5 Multiple DoS Vulnerabilities
|
|
91
|
+
108885, #Wireshark 2.2.x < 2.2.14 / 2.4.x < 2.4.6 Multiple Vulnerabilities
|
|
92
|
+
110269, #Wireshark 2.2.x < 2.2.15 / 2.4.x < 2.4.7 / 2.6.x < 2.6.1 Multiple Vulnerabilities
|
|
93
|
+
111387, #Wireshark 2.2.x < 2.2.16 / 2.4.x < 2.4.8 / 2.6.x < 2.6.2 Multiple Vulnerabilities
|
|
94
|
+
117339, #Wireshark 2.2.x < 2.2.17 / 2.4.x < 2.4.9 / 2.6.x < 2.6.3 Multiple Vulnerabilities
|
|
95
|
+
101898, #Wireshark 2.0.x < 2.0.14 / 2.2.x < 2.2.8 Multiple DoS
|
|
96
|
+
102920, #Wireshark 2.2.x < 2.2.9 Multiple DoS
|
|
97
|
+
103985, #Wireshark 2.2.x < 2.2.10 Multiple DoS
|
|
98
|
+
105007, #Wireshark 2.2.x < 2.2.11 / 2.4.x < 2.4.3 DoS Vulnerabilities
|
|
99
|
+
106142, #Wireshark 2.2.x < 2.2.12 / 2.4.x < 2.4.4 DoS Vulnerabilities
|
|
100
|
+
102919, #Wireshark 2.0.x < 2.0.15 Multiple DoS
|
|
101
|
+
103984, #Wireshark 2.0.x < 2.0.16 DMP dissector DoS
|
|
102
|
+
118206, #Wireshark 2.4.x < 2.4.10 Multiple Vulnerabilities
|
|
103
|
+
119419, #Wireshark 2.4.x < 2.4.11 Multiple Vulnerabilities
|
|
104
|
+
121107, #Wireshark 2.4.x < 2.4.12 Multiple Vulnerabilities
|
|
105
|
+
124164, #Wireshark 2.4.x < 2.4.14 Multiple Vulnerabilities
|
|
106
|
+
125365, #Wireshark 2.4.x < 2.4.15 A Vulnerability
|
|
107
|
+
126923, #Wireshark 2.4.x < 2.4.16 DoS Vulnerability
|
|
86
108
|
]
|
|
87
109
|
}
|
|
88
110
|
end
|
data/lib/risu/renderers.rb
CHANGED