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,47 @@
|
|
|
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 Parsers
|
|
24
|
+
module Nessus
|
|
25
|
+
module PostProcess
|
|
26
|
+
class MicrosoftVisualStudioRollup < Risu::Base::PostProcessBase
|
|
27
|
+
|
|
28
|
+
#
|
|
29
|
+
def initialize
|
|
30
|
+
@info =
|
|
31
|
+
{
|
|
32
|
+
:description => "Microsoft Visual Studio Patch Rollup",
|
|
33
|
+
:plugin_id => -99940,
|
|
34
|
+
:plugin_name => "Missing the latest Microsoft Visual Studio",
|
|
35
|
+
:item_name => "Update to the latest Microsoft Visual Studio",
|
|
36
|
+
:plugin_ids => [
|
|
37
|
+
121065, #Security Updates for Microsoft Visual Studio Products (January 2019)
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
|
|
@@ -0,0 +1,1312 @@
|
|
|
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 Parsers
|
|
24
|
+
module Nessus
|
|
25
|
+
module PostProcess
|
|
26
|
+
class MicrosoftWindowsPatches < Risu::Base::PostProcessBase
|
|
27
|
+
|
|
28
|
+
#
|
|
29
|
+
def initialize
|
|
30
|
+
@info =
|
|
31
|
+
{
|
|
32
|
+
:description => "Microsoft Windows Patch Rollup",
|
|
33
|
+
:plugin_id => -99983,
|
|
34
|
+
:plugin_name => "Missing the latest Windows Updates Patches",
|
|
35
|
+
:item_name => "Update to the latest Windows Updates",
|
|
36
|
+
:plugin_ids => [
|
|
37
|
+
11110, #MS02-045: Microsoft Windows SMB Protocol SMB_COM_TRANSACTION Packet Remote Overflow DoS (326830) (uncredentialed check)
|
|
38
|
+
11214, #MS02-061: Microsoft SQL Server Multiple Vulnerabilities (uncredentialed check)
|
|
39
|
+
11322, #MS02-035: MS SQL Installation may leave passwords on system (263968)
|
|
40
|
+
11804, #MS03-031: Cumulative Patch for MS SQL Server (815495)
|
|
41
|
+
11808, #MS03-026: Microsoft RPC Interface Buffer Overrun (823980) (uncredentialed check)
|
|
42
|
+
11835, #MS03-039: Microsoft RPC Interface Buffer Overrun (824146) (uncredentialed check)
|
|
43
|
+
11890, #MS03-043: Buffer Overrun in Messenger Service (828035) (uncredentialed check)
|
|
44
|
+
12054, #MS04-007: ASN.1 Vulnerability Could Allow Code Execution (828028) (uncredentialed check) (NTLM)
|
|
45
|
+
12209, #MS04-011: Security Update for Microsoft Windows (835732) (uncredentialed check)
|
|
46
|
+
13852, #MS04-022: Microsoft Windows Task Scheduler Remote Overflow (841873) (uncredentialed check)
|
|
47
|
+
14724, #MS04-028: Buffer Overrun in JPEG Processing (833987)
|
|
48
|
+
18026, #MS05-023: Vulnerability in Word May Lead to Code Execution (890169)
|
|
49
|
+
18482, #MS05-026: Vulnerability in HTML Help Could Allow Remote Code Execution (896358)
|
|
50
|
+
18502, #MS05-027: Vulnerability in SMB Could Allow Remote Code Execution (896422) (uncredentialed check)
|
|
51
|
+
18681, #MS05-036: Vulnerability in Microsoft Color Management Module Could Allow Remote Code Execution (901214)
|
|
52
|
+
19402, #MS05-039: Vulnerability in Plug and Play Could Allow Remote Code Execution and Elevation of Privilege (899588)
|
|
53
|
+
19403, #MS05-040: Vulnerability in Telephony Service Could Allow Remote Code Execution (893756)
|
|
54
|
+
19405, #MS05-042: Vulnerability in Kerberos Could Allow Denial of Service, Information Disclosure and Spoofing (899587)
|
|
55
|
+
19407, #MS05-043: Vulnerability in Printer Spooler Service Could Allow Remote Code Execution (896423) (uncredentialed check)
|
|
56
|
+
19408, #MS05-039: Vulnerability in Plug and Play Service Could Allow Remote Code Execution (899588) (uncredentialed check)
|
|
57
|
+
19998, #MS05-045: Vulnerability in Network Connection Manager Could Allow Denial of Service (905414)
|
|
58
|
+
19999, #MS05-046: Vulnerability in the Client Service for NetWare Could Allow Remote Code Execution (899589)
|
|
59
|
+
20001, #MS05-048: Vulnerability in the Microsoft Collaboration Data Objects Could Allow Remote Code Execution (907245)
|
|
60
|
+
20003, #MS05-050: Vulnerability in DirectShow Could Allow Remote Code Execution (904706)
|
|
61
|
+
20004, #MS05-051: Vulnerabilities in MSDTC and COM+ Could Allow Remote Code Execution (902400)
|
|
62
|
+
20389, #MS06-002: Vulnerability in Embedded Web Fonts Could Allow Remote Code Execution (908519)
|
|
63
|
+
20390, #MS06-003: Vulnerability in TNEF Decoding in Microsoft Outlook and Microsoft Exchange Could Allow Remote Code Execution (902412)
|
|
64
|
+
20907, #MS06-007: Vulnerability in TCP/IP Could Allow Denial of Service (913446)
|
|
65
|
+
20908, #MS06-008: Vulnerability in Web Client Service Could Allow Remote Code Execution (911927)
|
|
66
|
+
21078, #MS06-012: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (905413)
|
|
67
|
+
21193, #MS05-047: Plug and Play Remote Code Execution and Local Privilege Elevation (905749) (uncredentialed check)
|
|
68
|
+
21211, #MS06-014: Vulnerability in MDAC Could Allow Code Execution (911562)
|
|
69
|
+
21655, #MS04-012: Cumulative Update for Microsoft RPC/DCOM (828741) (uncredentialed check)
|
|
70
|
+
21686, #MS06-022: Vulnerability in ART Image Rendering Could Allow Remote Code Execution (918439)
|
|
71
|
+
21687, #MS06-023: Vulnerability in Microsoft JScript Could Allow Remote Code Execution (917344)
|
|
72
|
+
21689, #MS06-025: Vulnerability in Routing and Remote Access Could Allow Remote Code Execution (911280)
|
|
73
|
+
21690, #MS06-027: Vulnerabilities in Microsoft Word Could Allow Remote Code Execution (917336)
|
|
74
|
+
21692, #MS06-030: Vulnerability in Server Message Block Could Allow Elevation of Privilege (914389)
|
|
75
|
+
21694, #MS06-032: Vulnerability in TCP/IP Could Allow Remote Code Execution (917953)
|
|
76
|
+
22028, #MS06-034: Vulnerability in Microsoft IIS using ASP Could Allow Remote Code Execution (917537)
|
|
77
|
+
22030, #MS06-036: Vulnerability in DHCP Client Service Could Allow Remote Code Execution (914388)
|
|
78
|
+
22034, #MS06-035: Vulnerability in Server Service Could Allow Remote Code Execution (917159) (uncredentialed check)
|
|
79
|
+
22183, #MS06-041: Vulnerability in DNS Resolution Could Allow Remote Code Execution (920683)
|
|
80
|
+
22188, #MS06-046: Vulnerability in HTML Help Could Allow Remote Code Execution (922616)
|
|
81
|
+
22189, #MS06-047: Vulnerability in Microsoft Visual Basic for Applications Could Allow Remote Code Execution (921645)
|
|
82
|
+
22190, #MS06-048: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (922968)
|
|
83
|
+
22192, #MS06-050: Vulnerabilities in Microsoft Windows Hyperlink Object Library Could Allow Remote Code Execution (920670)
|
|
84
|
+
22194, #MS06-040: Vulnerability in Server Service Could Allow Remote Code Execution (921883) (uncredentialed check)
|
|
85
|
+
22333, #MS06-053: Vulnerability in Indexing Service Could Allow XSS (920685)
|
|
86
|
+
22334, #MS06-054: Vulnerability in Microsoft Publisher Could Allow Remote Code Execution (910729)
|
|
87
|
+
22529, #MS06-056: Vulnerabilities in ASP.NET could allow information disclosure (922770)
|
|
88
|
+
22530, #MS06-057: Vulnerability in Windows Explorer Could Allow Remote Execution (923191)
|
|
89
|
+
22532, #MS06-059: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (924164)
|
|
90
|
+
22533, #MS06-060: Vulnerabilities in Microsoft Word Could Allow Remote Code Execution (924554)
|
|
91
|
+
22534, #MS06-061: Vulnerabilities in Microsoft XML Core Services Could Allow Remote Code Execution (924191)
|
|
92
|
+
22535, #MS06-062: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (922581)
|
|
93
|
+
22536, #MS06-063: Vulnerability in Server Service Could Allow Denial of Service (923414)
|
|
94
|
+
22537, #MS06-064: Vulnerability in TCP/IP IPv6 Could Allow Denial of Service (922819)
|
|
95
|
+
22538, #MS06-065: Vulnerability in Windows Object Packager Could Allow Remote Execution (924496)
|
|
96
|
+
23643, #MS06-066: Vulnerability in the Client Service for NetWare Could Allow Remote Code Execution (923980)
|
|
97
|
+
23644, #MS06-067: Cumulative Security Update for Internet Explorer (922760)
|
|
98
|
+
23645, #MS06-068: Vulnerability in Microsoft Agent Could Remote Code Execution (920213)
|
|
99
|
+
23833, #MS06-072: Cumulative Security Update for Internet Explorer (925454)
|
|
100
|
+
23837, #MS06-074: Vulnerability in SNMP Could Allow Remote Code Execution (926247)
|
|
101
|
+
23838, #MS06-078: Vulnerability in Windows Media Format Could Allow Remote Code Execution (923689/925398)
|
|
102
|
+
23998, #MS07-002: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (927198)
|
|
103
|
+
23999, #MS07-003: Vulnerabilities in Microsoft Outlook Could Allow Remote Code Execution (925938)
|
|
104
|
+
24330, #MS07-006: Vulnerability in Windows Shell Could Allow Elevation of Privilege (928255)
|
|
105
|
+
24332, #MS07-008: Vulnerability in HTML Help ActiveX Control Could Allow Remote Code Execution (928843)
|
|
106
|
+
24335, #MS07-011: Vulnerability in Microsoft OLE Dialog Could Allow Remote Code Execution (926436)
|
|
107
|
+
24337, #MS07-013: Vulnerability in Microsoft RichEdit Could Allow Remote Code Execution (918118)
|
|
108
|
+
24338, #MS07-014: Vulnerabilities in Microsoft Word Could Allow Remote Code Execution (929434)
|
|
109
|
+
24339, #MS07-015: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (932554)
|
|
110
|
+
24340, #MS07-016: Cumulative Security Update for Internet Explorer (928090)
|
|
111
|
+
24911, #MS07-017: Vulnerabilities in GDI Could Allow Remote Code Execution (925902)
|
|
112
|
+
25025, #MS07-022: Vulnerability in Windows Kernel Could Allow Elevation of Privilege (931784)
|
|
113
|
+
25162, #MS07-023: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (934233)
|
|
114
|
+
25163, #MS07-024: Vulnerabilities in Microsoft Word Could Allow Remote Code Execution (934232)
|
|
115
|
+
25164, #MS07-025: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (934873)
|
|
116
|
+
25166, #MS07-027: Cumulative Security Update for Internet Explorer (931768)
|
|
117
|
+
25167, #MS07-028: Vulnerability in CAPICOM Could Allow Remote Code Execution (931906)
|
|
118
|
+
25484, #MS07-031: Vulnerability in the Windows Schannel Security Package Could Allow Remote Code Execution (935840)
|
|
119
|
+
25486, #MS07-033: Cumulative Security Update for Internet Explorer (933566)
|
|
120
|
+
25488, #MS07-035: Vulnerability in Win 32 API Could Allow Remote Code Execution (935839)
|
|
121
|
+
25687, #MS07-036: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (936542)
|
|
122
|
+
25688, #MS07-037: Vulnerability in Microsoft Publisher Could Allow Remote Code Execution (936548)
|
|
123
|
+
25691, #MS07-040: Vulnerabilities in .NET Framework Could Allow Remote Code Execution (931212)
|
|
124
|
+
25880, #MS07-042: Vulnerability in Microsoft XML Core Services Could Allow Remote Code Execution (936227)
|
|
125
|
+
25882, #MS07-044: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (940965)
|
|
126
|
+
25883, #MS07-045: Cumulative Security Update for Internet Explorer (937143)
|
|
127
|
+
25884, #MS07-046: Vulnerability in GDI Could Allow Remote Code Execution (938829)
|
|
128
|
+
25886, #MS07-050: Vulnerability in Vector Markup Language Could Allow Remote Code Execution (938127)
|
|
129
|
+
26962, #MS07-056: Cumulative Security Update for Outlook Express and Windows Mail (941202)
|
|
130
|
+
26963, #MS07-057: Cumulative Security Update for Internet Explorer (939653)
|
|
131
|
+
27525, #Microsoft Office Service Pack Out of Date
|
|
132
|
+
28183, #MS07-061: Vulnerability in Windows URI Handling Could Allow Remote Code Execution (943460)
|
|
133
|
+
28185, #Macrovision SafeDisc secdrv.sys Crafted METHOD_NEITHER IOCTL Local Overflow
|
|
134
|
+
29308, #MS07-064: Vulnerabilities in DirectX Could Allow Remote Code Execution (941568)
|
|
135
|
+
29311, #MS07-067: Vulnerability in Macrovision Driver Could Allow Local Elevation of Privilege (944653)
|
|
136
|
+
29312, #MS07-068: Vulnerability in Windows Media File Format Could Allow Remote Code Execution (941569 / 944275)
|
|
137
|
+
29313, #MS07-069: Cumulative Security Update for Internet Explorer (942615)
|
|
138
|
+
29893, #MS08-001: Vulnerabilities in Windows TCP/IP Could Allow Remote Code Execution (941644)
|
|
139
|
+
29894, #MS08-002: Vulnerability in LSASS Could Allow Local Elevation of Privilege (943485)
|
|
140
|
+
31039, #MS08-005: Vulnerability in Internet Information Services Could Allow Elevation of Privilege (942831)
|
|
141
|
+
31040, #MS08-006: Vulnerability in Internet Information Services Could Allow Remote Code Execution (942830)
|
|
142
|
+
31041, #MS08-007: Vulnerability in WebDAV Mini-Redirector Could Allow Remote Code Execution (946026)
|
|
143
|
+
31042, #MS08-008: Vulnerability in OLE Automation Could Allow Remote Code Execution (947890)
|
|
144
|
+
31044, #MS08-010: Cumulative Security Update for Internet Explorer (944533)
|
|
145
|
+
31793, #MS08-020: Vulnerability in DNS Client Could Allow Spoofing (945553)
|
|
146
|
+
31794, #MS08-021: Vulnerabilities in GDI Could Allow Remote Code Execution (948590)
|
|
147
|
+
31795, #MS08-022: Vulnerability in VBScript and JScript Scripting Engines Could Allow Remote Code Execution (944338)
|
|
148
|
+
31797, #MS08-024: Cumulative Security Update for Internet Explorer (947864)
|
|
149
|
+
31798, #MS08-025: Vulnerability in Windows Kernel Could Allow Elevation of Privilege (941693)
|
|
150
|
+
32310, #MS08-026: Vulnerabilities in Microsoft Word Could Allow Remote Code Execution (951207)
|
|
151
|
+
32311, #MS08-027: Vulnerability in Microsoft Publisher Could Allow Remote Code Execution (951208)
|
|
152
|
+
32312, #MS08-028: Vulnerability in Microsoft Jet Database Engine Could Allow Remote Code Execution (950749)
|
|
153
|
+
33107, #MS08-011: Vulnerabilities in Microsoft Works File Converter Could Allow Remote Code Execution (947081)
|
|
154
|
+
33132, #MS08-030: Vulnerability in Bluetooth Stack Could Allow Remote Code Execution (951376)
|
|
155
|
+
33133, #MS08-031: Cumulative Security Update for Internet Explorer (950759)
|
|
156
|
+
33134, #MS08-032: Cumulative Security Update of ActiveX Kill Bits (950760)
|
|
157
|
+
33135, #MS08-033: Vulnerabilities in DirectX Could Allow Remote Code Execution (951698)
|
|
158
|
+
33137, #MS08-036: Vulnerabilities in Pragmatic General Multicast (PGM) Could Allow Denial of Service (950762)
|
|
159
|
+
33441, #MS08-037: Vulnerabilities in DNS Could Allow Spoofing (953230)
|
|
160
|
+
33444, #MS08-040: Vulnerabilities in Microsoft SQL Server Could Allow Elevation of Privilege (941203)
|
|
161
|
+
33870, #MS08-041: Vulnerability in the ActiveX Control for the Snapshot Viewer for Microsoft Access Could Allow Remote Code Execution (955617)
|
|
162
|
+
33871, #MS08-042: Vulnerabilities in Microsoft Word Could Allow Remote Code Execution (955048)
|
|
163
|
+
33872, #MS08-043: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (954066)
|
|
164
|
+
33873, #MS08-044: Vulnerabilities in Microsoft Office Filters Could Allow Remote Code Execution (924090)
|
|
165
|
+
33874, #MS08-045: Cumulative Security Update for Internet Explorer (953838)
|
|
166
|
+
33875, #MS08-046: Vulnerability in Microsoft Windows Image Color Management System Could Allow Remote Code Execution (952954)
|
|
167
|
+
33877, #MS08-048: Security Update for Outlook Express and Windows Mail (951066)
|
|
168
|
+
33878, #MS08-049: Vulnerabilities in Event System Could Allow Remote Code Execution (950974)
|
|
169
|
+
33879, #MS08-050: Vulnerability in Windows Messenger Could Allow Information Disclosure (955702)
|
|
170
|
+
33880, #MS08-051: Vulnerabilities in Microsoft PowerPoint Could Allow Remote Code Execution (949785)
|
|
171
|
+
33881, #MS KB953839: Cumulative Security Update of ActiveX Kill Bits
|
|
172
|
+
34120, #MS08-052: Vulnerabilities in GDI+ Could Allow Remote Code Execution (954593)
|
|
173
|
+
34121, #MS08-053: Vulnerability in Windows Media Encoder 9 Could Allow Remote Code Execution (954156)
|
|
174
|
+
34123, #MS08-055: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (955047)
|
|
175
|
+
34311, #MS08-040: Microsoft SQL Server Multiple Privilege Escalation (941203) (uncredentialed check)
|
|
176
|
+
34402, #MS08-057: Microsoft Excel Multiple Method Remote Code Execution (956416)
|
|
177
|
+
34403, #MS08-058: Microsoft Internet Explorer Multiple Vulnerabilities (956390)
|
|
178
|
+
34406, #MS08-061: Microsoft Windows Kernel Multiple Privilege Elevation (954211)
|
|
179
|
+
34408, #MS08-063: Microsoft Windows SMB File Name Handling Remote Underflow (957095)
|
|
180
|
+
34409, #MS08-064: Microsoft Windows Virtual Address Descriptors (VAD) Local Privilege Escalation (956841)
|
|
181
|
+
34411, #MS08-066: Microsoft Windows Ancillary Function Driver (afd.sys) Local Privilege Escalation (956803)
|
|
182
|
+
34414, #MS KB956391: Cumulative Security Update of ActiveX Kill Bits
|
|
183
|
+
34476, #MS08-067: Microsoft Windows Server Service Crafted RPC Request Handling Unspecified Remote Code Execution (958644) (ECLIPSEDWING)
|
|
184
|
+
34477, #MS08-067: Microsoft Windows Server Service Crafted RPC Request Handling Remote Code Execution (958644) (ECLIPSEDWING) (uncredentialed check)
|
|
185
|
+
34743, #MS08-068: Vulnerability in SMB Could Allow Remote Code Execution (957097)
|
|
186
|
+
34744, #MS08-069: Vulnerabilities in Microsoft XML Core Services Could Allow Remote Code Execution (955218)
|
|
187
|
+
35069, #MS08-070: Vulnerabilities in Visual Basic 6.0 ActiveX Controls Could Allow Remote Code Execution (932349)
|
|
188
|
+
35070, #MS08-071: Vulnerabilities in GDI+ Could Allow Remote Code Execution (956802)
|
|
189
|
+
35071, #MS08-072: Vulnerabilities in Microsoft Word Could Allow Remote Code Execution (957173)
|
|
190
|
+
35072, #MS08-073: Microsoft Internet Explorer Multiple Vulnerabilities (958215)
|
|
191
|
+
35073, #MS08-074: Microsoft Excel Multiple Method Remote Code Execution (959070)
|
|
192
|
+
35075, #MS08-076: Vulnerabilities in Windows Media Components Could Allow Remote Code Execution (959807)
|
|
193
|
+
35221, #MS08-078: Microsoft Internet Explorer Security Update (960714)
|
|
194
|
+
35361, #MS09-001: Vulnerabilities in SMB Could Allow Remote Code Execution (958687)
|
|
195
|
+
35630, #MS09-002: Cumulative Security Update for Internet Explorer (961260)
|
|
196
|
+
35632, #MS09-004: Vulnerability in Microsoft SQL Server Could Allow Remote Code Execution (959420)
|
|
197
|
+
35634, #MS KB960715: Cumulative Security Update of ActiveX Kill Bits
|
|
198
|
+
35635, #MS09-004: Vulnerability in Microsoft SQL Server Could Allow Remote Code Execution (959420) (uncredentialed check)
|
|
199
|
+
35822, #MS09-006: Vulnerabilities in Windows Kernel Could Allow Remote Code Execution (958690)
|
|
200
|
+
35823, #MS09-007: Vulnerability in SChannel Could Allow Spoofing (960225)
|
|
201
|
+
36147, #MS09-009: Vulnerabilities in Microsoft Office Excel Could Cause Remote Code Execution (968557)
|
|
202
|
+
36148, #MS09-010: Vulnerabilities in WordPad and Office Text Converters Could Allow Remote Code Execution (960477)
|
|
203
|
+
36149, #MS09-011: Vulnerability in Microsoft DirectShow Could Allow Remote Code Execution (961373)
|
|
204
|
+
36150, #MS09-012: Vulnerabilities in Windows Could Allow Elevation of Privilege (959454)
|
|
205
|
+
36151, #MS09-013: Vulnerabilities in Windows HTTP Services Could Allow Remote Code Execution (960803)
|
|
206
|
+
36152, #MS09-014: Cumulative Security Update for Internet Explorer (963027)
|
|
207
|
+
36153, #MS09-015: Blended Threat Vulnerability in SearchPath Could Allow Elevation of Privilege (959426)
|
|
208
|
+
38742, #MS09-017: Vulnerabilities in Microsoft Office PowerPoint Could Allow Remote Code Execution (967340)
|
|
209
|
+
39341, #MS09-019: Cumulative Security Update for Internet Explorer (969897)
|
|
210
|
+
39342, #MS09-020: Vulnerabilities in Internet Information Services (IIS) Could Allow Elevation of Privilege (970483)
|
|
211
|
+
39343, #MS09-021: Vulnerabilities in Microsoft Office Excel Could Allow Remote Code Execution (969462)
|
|
212
|
+
39344, #MS09-022: Vulnerabilities in Windows Print Spooler Could Allow Remote Code Execution (961501)
|
|
213
|
+
39346, #MS09-024: Vulnerability in Microsoft Works Converters Could Allow Remote Code Execution (957632)
|
|
214
|
+
39347, #MS09-025: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (968537)
|
|
215
|
+
39348, #MS09-026: Vulnerability in RPC Could Allow Elevation of Privilege (970238)
|
|
216
|
+
39349, #MS09-027: Vulnerabilities in Microsoft Office Word Could Allow Remote Code Execution (969514)
|
|
217
|
+
39350, #MS KB969898: Cumulative Security Update of ActiveX Kill Bits
|
|
218
|
+
39622, #MS09-032: Cumulative Security Update of ActiveX Kill Bits (973346)
|
|
219
|
+
39783, #MS09-043: Vulnerabilities in Microsoft Office Web Components Control Could Allow Remote Code Execution (973472)
|
|
220
|
+
39791, #MS09-028: Vulnerabilities in Microsoft DirectShow Could Allow Remote Code Execution (971633)
|
|
221
|
+
39792, #MS09-029: Vulnerabilities in the Embedded OpenType Font Engine Could Allow Remote Code Execution (961371)
|
|
222
|
+
39793, #MS09-030: Vulnerability in Microsoft Office Publisher Could Allow Remote Code Execution (969516)
|
|
223
|
+
40407, #MS09-034: Cumulative Security Update for Internet Explorer (972260)
|
|
224
|
+
40435, #MS09-035: Vulnerabilities in Visual Studio Active Template Library Could Allow Remote Code Execution (969706)
|
|
225
|
+
40556, #MS09-037: Vulnerabilities in Microsoft Active Template Library (ATL) Could Allow Remote Code Execution (973908)
|
|
226
|
+
40557, #MS09-038: Vulnerabilities in Windows Media File Processing Could Allow Remote Code Execution (971557)
|
|
227
|
+
40559, #MS09-040: Vulnerability in Message Queuing Could Allow Elevation of Privilege (971032)
|
|
228
|
+
40560, #MS09-041: Vulnerability in Workstation Service Could Allow Elevation of Privilege (971657)
|
|
229
|
+
40561, #MS09-042: Vulnerability in Telnet Could Allow Remote Code Execution (960859)
|
|
230
|
+
40562, #MS09-043: Vulnerabilities in Microsoft Office Web Components Could Allow Remote Code Execution (957638)
|
|
231
|
+
40564, #
|
|
232
|
+
40565, #MS09-044: Vulnerabilities in Remote Desktop Connection Could Allow Remote Code Execution (970927)
|
|
233
|
+
40888, #MS09-045: Vulnerability in JScript Scripting Engine Could Allow Remote Code Execution (971961)
|
|
234
|
+
40889, #MS09-046: Vulnerability in DHTML Editing Component ActiveX Control Could Allow Remote Code Execution (956844)
|
|
235
|
+
40890, #MS09-047: Vulnerabilities in Windows Media Format Could Allow Remote Code Execution (973812)
|
|
236
|
+
40891, #MS09-048: Vulnerabilities in Windows TCP/IP Could Allow Remote Code Execution (967723)
|
|
237
|
+
42107, #MS09-051: Vulnerabilities in Windows Media Runtime Could Allow Remote Code Execution (975682)
|
|
238
|
+
42108, #MS09-052: Vulnerability in Windows Media Player Could Allow Remote Code Execution (974112)
|
|
239
|
+
42110, #MS09-054: Cumulative Security Update for Internet Explorer (974455)
|
|
240
|
+
42112, #MS09-056: Vulnerabilities in Windows CryptoAPI Could Allow Spoofing (974571)
|
|
241
|
+
42113, #MS09-057: Vulnerability in Indexing Service Could Allow Remote Code Execution (969059)
|
|
242
|
+
42114, #MS09-058: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (971486)
|
|
243
|
+
42115, #MS09-059: Vulnerability in Local Security Authority Subsystem Service Could Allow Denial of Service (975467)
|
|
244
|
+
42116, #MS09-060: Vulnerabilities in Microsoft Active Template Library (ATL) ActiveX Controls for Microsoft Office Could Allow Remote Code Execution (973965)
|
|
245
|
+
42117, #MS09-061: Vulnerabilities in the Microsoft .NET Common Language Runtime Could Allow Remote Code Execution (974378)
|
|
246
|
+
42118, #MS09-062: Vulnerabilities in GDI+ Could Allow Remote Code Execution (957488)
|
|
247
|
+
42439, #MS09-065: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Remote Code Execution (969947)
|
|
248
|
+
42441, #MS09-067: Vulnerabilities in Microsoft Office Excel Could Allow Remote Code Execution (972652)
|
|
249
|
+
42442, #MS09-068: Vulnerability in Microsoft Office Word Could Allow Remote Code Execution (976307)
|
|
250
|
+
43061, #MS09-069: Vulnerability in Local Security Authority Subsystem Service Could Allow Denial of Service (974392)
|
|
251
|
+
43063, #MS09-071: Vulnerabilities in Internet Authentication Service Could Allow Remote Code Execution (974318)
|
|
252
|
+
43064, #MS09-072: Cumulative Security Update for Internet Explorer (976325)
|
|
253
|
+
43065, #MS09-073: Vulnerability in WordPad and Office Text Converters Could Allow Remote Code Execution (975539)
|
|
254
|
+
43089, #MS KB955759: Security Enhancements for the Indeo Codec
|
|
255
|
+
43865, #MS10-001: Vulnerability in the Embedded OpenType Font Engine Could Allow Remote Code Execution (972270)
|
|
256
|
+
44045, #MS KB979267: Flash 6 ActiveX Control On Windows XP Multiple Vulnerabilities
|
|
257
|
+
44110, #MS10-002: Cumulative Security Update for Internet Explorer (978207)
|
|
258
|
+
44414, #MS10-004: Vulnerabilities in Microsoft Office PowerPoint Could Allow Remote Code Execution (975416)
|
|
259
|
+
44415, #MS10-005: Vulnerability in Microsoft Paint Could Allow Remote Code Execution (978706)
|
|
260
|
+
44416, #MS10-006: Vulnerabilities in SMB Client Could Allow Remote Code Execution (978251)
|
|
261
|
+
44417, #MS10-007: Vulnerability in Windows Shell Handler Could Allow Remote Code Execution (975713)
|
|
262
|
+
44418, #MS10-008: Cumulative Security Update of ActiveX Kill Bits (978262)
|
|
263
|
+
44421, #MS10-011: Vulnerability in Windows Client/Server Run-time Subsystem Could Allow Elevation of Privilege (978037)
|
|
264
|
+
44422, #MS10-012: Vulnerabilities in SMB Could Allow Remote Code Execution (971468)
|
|
265
|
+
44423, #MS10-013: Vulnerability in Microsoft DirectShow Could Allow Remote Code Execution (977935)
|
|
266
|
+
44425, #MS10-015: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (977165)
|
|
267
|
+
45020, #MS10-016: Vulnerability in Windows Movie Maker Could Allow Remote Code Execution (975561)
|
|
268
|
+
45021, #MS10-017: Vulnerabilities in Microsoft Office Excel Could Allow Remote Code Execution (980150)
|
|
269
|
+
45378, #MS10-018: Cumulative Security Update for Internet Explorer (980182)
|
|
270
|
+
45506, #MS10-019: Vulnerabilities in Windows Could Allow Remote Code Execution (981210)
|
|
271
|
+
45507, #MS10-020: Vulnerabilities in SMB Client Could Allow Remote Code Execution (980232)
|
|
272
|
+
45508, #MS10-021: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (979683)
|
|
273
|
+
45509, #MS10-022: Vulnerability in VBScript Scripting Engine Could Allow Remote Code Execution (981169)
|
|
274
|
+
45510, #MS10-023: Vulnerability in Microsoft Office Publisher Could Allow Remote Code Execution (981160)
|
|
275
|
+
45513, #MS10-026: Vulnerability in Microsoft MPEG Layer-3 Codecs Could Allow Remote Code Execution (977816)
|
|
276
|
+
45514, #MS10-027: Vulnerability in Windows Media Player Could Allow Remote Code Execution (979402)
|
|
277
|
+
45516, #MS10-029: Vulnerability in Windows ISATAP Component Could Allow Spoofing (978338)
|
|
278
|
+
45517, #MS10-024: Vulnerabilities in Microsoft Exchange and Windows SMTP Service Could Allow Denial of Service (981832) (uncredentialed check)
|
|
279
|
+
46312, #MS10-030: Vulnerability in Outlook Express and Windows Mail Could Allow Remote Code Execution (978542)
|
|
280
|
+
46313, #MS10-031: Vulnerability in Microsoft Visual Basic for Applications Could Allow Remote Code Execution (978213)
|
|
281
|
+
46839, #MS10-032: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (979559)
|
|
282
|
+
46840, #MS10-033: Vulnerabilities in Media Decompression Could Allow Remote Code Execution (979902)
|
|
283
|
+
46841, #MS10-034: Cumulative Security Update of ActiveX Kill Bits (980195)
|
|
284
|
+
46842, #MS10-035: Cumulative Security Update for Internet Explorer (982381)
|
|
285
|
+
46843, #MS10-036: Vulnerability in COM Validation in Microsoft Office Could Allow Remote Code Execution (983235)
|
|
286
|
+
46844, #MS10-037: Vulnerability in the OpenType Compact Font Format (CFF) Driver Could Allow Elevation of Privilege (980218)
|
|
287
|
+
46845, #MS10-038: Vulnerabilities in Microsoft Office Excel Could Allow Remote Code Execution (2027452)
|
|
288
|
+
46847, #MS10-040: Vulnerability in Internet Information Services Could Allow Remote Code Execution (982666)
|
|
289
|
+
46848, #MS10-041: Vulnerability in Microsoft .NET Framework Could Allow Tampering (981343)
|
|
290
|
+
47045, #MS KB2219475: Windows Help Center hcp:// Protocol Handler Arbitrary Code Execution
|
|
291
|
+
47556, #MS10-012: Vulnerabilities in SMB Could Allow Remote Code Execution (971468) (uncredentialed check)
|
|
292
|
+
47710, #MS10-042: Vulnerability in Help and Support Center Could Allow Remote Code Execution (2229593)
|
|
293
|
+
47711, #MS10-043: Vulnerability in Canonical Display Driver Could Allow Remote Code Execution (2032276)
|
|
294
|
+
47712, #MS10-044: Vulnerabilities in Microsoft Office Access ActiveX Controls Could Allow Remote Code Execution (982335)
|
|
295
|
+
47713, #MS10-045: Vulnerability in Microsoft Office Outlook Could Allow Remote Code Execution (978212)
|
|
296
|
+
47750, #MS KB2286198: Windows Shell Shortcut Icon Parsing Arbitrary Code Execution (EASYHOOKUP)
|
|
297
|
+
48216, #MS10-046: Vulnerability in Windows Shell Could Allow Remote Code Execution (2286198) (EASYHOOKUP)
|
|
298
|
+
48284, #MS10-047: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (981852)
|
|
299
|
+
48285, #MS10-048: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2160329)
|
|
300
|
+
48286, #MS10-049: Vulnerabilities in SChannel could allow Remote Code Execution (980436)
|
|
301
|
+
48287, #MS10-050: Vulnerability in Windows Movie Maker Could Allow Remote Code Execution (981997)
|
|
302
|
+
48288, #MS10-051: Vulnerability in Microsoft XML Core Services Could Allow Remote Code Execution (2079403)
|
|
303
|
+
48289, #MS10-052: Vulnerability in Microsoft MPEG Layer-3 Codecs Could Allow Remote Code Execution (2115168)
|
|
304
|
+
48290, #MS10-053: Cumulative Security Update for Internet Explorer (2183461)
|
|
305
|
+
48291, #MS10-054: Vulnerabilities in SMB Server Could Allow Remote Code Execution (982214)
|
|
306
|
+
48292, #MS10-055: Vulnerability in Cinepak Codec Could Allow Remote Code Execution (982665)
|
|
307
|
+
48293, #MS10-056: Vulnerability in Microsoft Office Word Could Allow Remote Code Execution (2269638)
|
|
308
|
+
48294, #MS10-057: Vulnerability in Microsoft Office Excel Could Allow Remote Code Execution (2269707)
|
|
309
|
+
48295, #MS10-058: Vulnerabilities in TCP/IP Could Allow Elevation of Privilege (978886)
|
|
310
|
+
48296, #MS10-059: Vulnerabilities in the Tracing Feature for Services Could Allow Elevation of Privilege (982799)
|
|
311
|
+
48297, #MS10-060: Vulnerabilities in the Microsoft .NET Common Language Runtime and in Microsoft Silverlight Could Allow Remote Code Execution (2265906)
|
|
312
|
+
48405, #MS10-054: Vulnerabilities in SMB Server Could Allow Remote Code Execution (982214) (remote check)
|
|
313
|
+
48761, #MS KB982316: Elevation of Privilege Using Windows Service Isolation Bypass
|
|
314
|
+
48762, #MS KB2269637: Insecure Library Loading Could Allow Remote Code Execution
|
|
315
|
+
49219, #MS10-061: Vulnerability in Print Spooler Service Could Allow Remote Code Execution (2347290) (EMERALDTHREAD)
|
|
316
|
+
49220, #MS10-062: Vulnerability in MPEG-4 Codec Could Allow Remote Code Execution (975558)
|
|
317
|
+
49221, #MS10-063: Vulnerability in Unicode Scripts Processor Could Allow Remote Code Execution (2320113)
|
|
318
|
+
49222, #MS10-064: Vulnerability in Microsoft Office Outlook Could Allow Remote Code Execution (978212)
|
|
319
|
+
49223, #MS10-065: Vulnerabilities in Microsoft Internet Information Services (IIS) Could Allow Remote Code Execution (2267960)
|
|
320
|
+
49224, #MS10-066: Vulnerability in Remote Procedure Call Could Allow Remote Code Execution (982802)
|
|
321
|
+
49225, #MS10-067: Vulnerability in WordPad Text Converters Could Allow Remote Code Execution (2259922)
|
|
322
|
+
49227, #MS10-069: Vulnerability in Windows Client/Server Runtime Subsystem Could Allow Elevation of Privilege (2121546)
|
|
323
|
+
49274, #MS KB2401593: Microsoft Outlook Web Access (OWA) CSRF
|
|
324
|
+
49695, #MS10-070: Vulnerability in ASP.NET Could Allow Information Disclosure (2418042)
|
|
325
|
+
49948, #MS10-071: Cumulative Security Update for Internet Explorer (2360131)
|
|
326
|
+
49950, #MS10-073: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (981957)
|
|
327
|
+
49951, #MS10-074: Vulnerability in Microsoft Foundation Classes Could Allow Remote Code Execution (2387149)
|
|
328
|
+
49953, #MS10-076: Vulnerability in the Embedded OpenType Font Engine Could Allow Remote Code Execution (982132)
|
|
329
|
+
49954, #MS10-077: Vulnerability in .NET Framework Could Allow Remote Code Execution (2160841)
|
|
330
|
+
49955, #MS10-078: Vulnerabilities in the OpenType Font (OTF) Format Driver Could Allow Elevation of Privilege (2279986)
|
|
331
|
+
49956, #MS10-079: Vulnerabilities in Microsoft Word Could Allow Remote Code Execution (2293194)
|
|
332
|
+
49957, #MS10-080: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2293211)
|
|
333
|
+
49958, #MS10-081: Vulnerability in Windows Common Control Library Could Allow Remote Code Execution (2296011)
|
|
334
|
+
49959, #MS10-082: Vulnerability in Windows Media Player Could Allow Remote Code Execution (2378111)
|
|
335
|
+
49960, #MS10-083: Vulnerability in COM Validation in Windows Shell and WordPad Could Allow Remote Code Execution (2405882)
|
|
336
|
+
49961, #MS10-084: Vulnerability in Windows Local Procedure Call Could Cause Elevation of Privilege (2360937)
|
|
337
|
+
49962, #MS10-085: Vulnerability in SChannel Could Allow Denial of Service (2207566)
|
|
338
|
+
50528, #MS10-087: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (2423930)
|
|
339
|
+
50529, #MS10-088: Vulnerabilities in Microsoft PowerPoint Could Allow Remote Code Execution (2293386)
|
|
340
|
+
51162, #MS10-090: Cumulative Security Update for Internet Explorer (2416400)
|
|
341
|
+
51163, #MS10-091: Vulnerabilities in the OpenType Font (OTF) Driver Could Allow Remote Code Execution (2296199)
|
|
342
|
+
51164, #MS10-092: Vulnerability in Task Scheduler Could Allow Elevation of Privilege (2305420)
|
|
343
|
+
51166, #MS10-094: Vulnerability in Windows Media Encoder Could Allow Remote Code Execution (2447961)
|
|
344
|
+
51167, #MS10-095: Vulnerability in Microsoft Windows Could Allow Remote Code Execution (2385678)
|
|
345
|
+
51168, #MS10-096: Vulnerability in Windows Address Book Could Allow Remote Code Execution (2423089)
|
|
346
|
+
51169, #MS10-097: Insecure Library Loading in Internet Connection Signup Wizard Could Allow Remote Code Execution (2443105)
|
|
347
|
+
51170, #MS10-098: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2436673)
|
|
348
|
+
51171, #MS10-099: Vulnerability in Routing and Remote Access Could Allow Elevation of Privilege (2440591)
|
|
349
|
+
51172, #MS10-100: Vulnerability in Consent User Interface Could Allow Elevation of Privilege (2442962)
|
|
350
|
+
51175, #MS10-103: Vulnerabilities in Microsoft Publisher Could Allow Remote Code Execution (2292970)
|
|
351
|
+
51177, #MS10-105: Vulnerabilities in Microsoft Office Graphics Filters Could Allow for Remote Code Execution (968095)
|
|
352
|
+
51455, #MS11-002: Vulnerabilities in Microsoft Data Access Components Could Allow Remote Code Execution (2451910)
|
|
353
|
+
51587, #MS KB2488013: Internet Explorer CSS Import Rule Processing Arbitrary Code Execution
|
|
354
|
+
51903, #MS11-003: Cumulative Security Update for Internet Explorer (2482017)
|
|
355
|
+
51904, #MS11-004: Vulnerability in Internet Information Services (IIS) FTP Service Could Allow Remote Code Execution (2489256)
|
|
356
|
+
51906, #MS11-006: Vulnerability in Windows Shell Graphics Processing Could Allow Remote Code Execution (2483185)
|
|
357
|
+
51907, #MS11-007: Vulnerability in the OpenType Compact Font Format (CFF) Driver Could Allow Remote Code Execution (2485376)
|
|
358
|
+
51909, #MS11-009: Vulnerability in JScript and VBScript Scripting Engine Could Allow Information Disclosure (2475792)
|
|
359
|
+
51910, #MS11-010: Vulnerability in Windows Client/Server Run-time Subsystem Could Allow Elevation of Privilege (2476687)
|
|
360
|
+
51911, #MS11-011: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (2393802)
|
|
361
|
+
51912, #MS11-012: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2479628)
|
|
362
|
+
51913, #MS11-013: Vulnerabilities in Kerberos Could Allow Elevation of Privilege (2496930)
|
|
363
|
+
51914, #MS11-014: Vulnerability in Local Security Authority Subsystem Service Could Allow Local Elevation of Privilege (2478960)
|
|
364
|
+
51956, #MS11-004: Vulnerability in Internet Information Services (IIS) FTP Service Could Allow Remote Code Execution (2489256) (uncredentialed check)
|
|
365
|
+
52456, #MS KB2491888: Microsoft Malware Protection Engine (MMPE) Privilege Escalation
|
|
366
|
+
52583, #MS11-015: Vulnerabilities in Windows Media Could Allow Remote Code Execution (2510030)
|
|
367
|
+
52585, #MS11-017: Vulnerabilities in Remote Desktop Connection Could Allow Remote Code Execution (2508062)
|
|
368
|
+
53375, #MS11-018: Cumulative Security Update for Internet Explorer (2497640)
|
|
369
|
+
53376, #MS11-019: Vulnerabilities in SMB Client Could Allow Remote Code Execution (2511455)
|
|
370
|
+
53377, #MS11-020: Vulnerability in SMB Server Could Allow Remote Code Execution (2508429)
|
|
371
|
+
53378, #MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)
|
|
372
|
+
53379, #MS11-022: Vulnerabilities in Microsoft PowerPoint Could Allow Remote Code Execution (2489283)
|
|
373
|
+
53381, #MS11-024: Vulnerability in Windows Fax Cover Page Editor Could Allow Remote Code Execution (2527308)
|
|
374
|
+
53382, #MS11-025: Vulnerability in Microsoft Foundation Class (MFC) Library Could Allow Remote Code Execution (2500212)
|
|
375
|
+
53383, #MS11-026: Vulnerability in MHTML Could Allow Information Disclosure (2503658)
|
|
376
|
+
53384, #MS11-027: Cumulative Security Update of ActiveX Kill Bits (2508272)
|
|
377
|
+
53385, #MS11-028: Vulnerability in .NET Framework Could Allow Remote Code Execution (2484015)
|
|
378
|
+
53386, #MS11-029: Vulnerability in GDI+ Could Allow Remote Code Execution (2489979)
|
|
379
|
+
53387, #MS11-030: Vulnerability in DNS Resolution Could Allow Remote Code Execution (2509553)
|
|
380
|
+
53388, #MS11-031: Vulnerability in JScript and VBScript Scripting Engines Could Allow Remote Code Execution (2514666)
|
|
381
|
+
53389, #MS11-032: Vulnerability in the OpenType Compact Font Format (CFF) Driver Could Allow Remote Code Execution (2507618)
|
|
382
|
+
53390, #MS11-033: Vulnerability in WordPad Text Converters Could Allow Remote Code Execution (2485663)
|
|
383
|
+
53391, #MS11-034: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2506223)
|
|
384
|
+
53503, #MS11-020: Vulnerability in SMB Server Could Allow Remote Code Execution (2508429) (remote check)
|
|
385
|
+
53514, #MS11-030: Vulnerability in DNS Resolution Could Allow Remote Code Execution (2509553) (remote check)
|
|
386
|
+
53830, #MS KB2526954: Microsoft Silverlight 4.0 < 4.0.60310 Multiple Vulnerabilities
|
|
387
|
+
53859, #MS11-036: Vulnerabilities in Microsoft PowerPoint Could Allow Remote Code Execution (2545814)
|
|
388
|
+
55116, #Symantec Backup Exec Server Unauthorized Access (SYM11-006)
|
|
389
|
+
55117, #MS11-037: Vulnerability in MHTML Could Allow Information Disclosure (2544893)
|
|
390
|
+
55118, #MS11-038: Vulnerability in OLE Automation Could Allow Remote Code Execution (2476490)
|
|
391
|
+
55119, #MS11-039: Vulnerability in .NET Framework and Microsoft Silverlight Could Allow Remote Code Execution (2514842)
|
|
392
|
+
55121, #MS11-041: Vulnerability in Windows Kernel-Mode Drivers Could Allow Remote Code Execution (2525694)
|
|
393
|
+
55122, #MS11-042: Vulnerabilities in Distributed File System Could Allow Remote Code Execution (2535512)
|
|
394
|
+
55123, #MS11-043: Vulnerability in SMB Client Could Allow Remote Code Execution (2536276)
|
|
395
|
+
55124, #MS11-044: Vulnerability in .NET Framework Could Allow Remote Code Execution (2538814)
|
|
396
|
+
55125, #MS11-045: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2537146)
|
|
397
|
+
55126, #MS11-046: Vulnerability in Ancillary Function Driver Could Allow Elevation of Privilege (2503665)
|
|
398
|
+
55128, #MS11-048: Vulnerability in SMB Server Could Allow Denial of Service (2536275)
|
|
399
|
+
55129, #MS11-049: Vulnerability in the Microsoft XML Editor Could Allow Information Disclosure (2543893)
|
|
400
|
+
55130, #MS11-050: Cumulative Security Update for Internet Explorer (2530548)
|
|
401
|
+
55132, #MS11-052: Vulnerability in Vector Markup Language Could Allow Remote Code Execution (2544521)
|
|
402
|
+
55569, #MS11-053: Vulnerability in Bluetooth Stack Could Allow Remote Code Execution (2566220)
|
|
403
|
+
55570, #MS11-054: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2555917)
|
|
404
|
+
55572, #MS11-056: Vulnerabilities in Windows Client/Server Run-time Subsystem Could Allow Elevation of Privilege (2507938)
|
|
405
|
+
55787, #MS11-057: Critical Cumulative Security Update for Internet Explorer (2559049)
|
|
406
|
+
55792, #MS11-062: Vulnerability in Remote Access Service NDISTAPI Driver Could Allow Elevation of Privilege (2566454)
|
|
407
|
+
55793, #MS11-063: Vulnerability in Windows Client/Server Run-time Subsystem Could Allow Elevation of Privilege (2567680)
|
|
408
|
+
55794, #MS11-064: Vulnerabilities in TCP/IP Stack Could Allow Denial of Service (2563894)
|
|
409
|
+
55795, #MS11-065: Vulnerability in Remote Desktop Protocol Could Allow Denial of Service (2570222)
|
|
410
|
+
55796, #MS11-066: Vulnerability in Microsoft Chart Control Could Allow Information Disclosure (2567943)
|
|
411
|
+
55797, #MS11-067: Vulnerability in Microsoft Report Viewer Could Allow Information Disclosure (2578230)
|
|
412
|
+
55798, #MS11-068: Vulnerability in Windows Kernel Could Allow Denial of Service (2556532)
|
|
413
|
+
55799, #MS11-069: Vulnerability in .NET Framework Could Allow Information Disclosure (2567951)
|
|
414
|
+
55802, #MS 2562937: Update Rollup for ActiveX Kill Bits (2562937)
|
|
415
|
+
56174, #MS11-071: Vulnerability in Windows Components Could Allow Remote Code Execution (2570947)
|
|
416
|
+
56175, #MS11-072: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2587505)
|
|
417
|
+
56177, #MS11-074: Vulnerabilities in Microsoft SharePoint Could Allow Elevation of Privilege (2451858)
|
|
418
|
+
56449, #MS11-075: Vulnerability in Microsoft Active Accessibility Could Allow Remote Code Execution (2623699)
|
|
419
|
+
56450, #MS11-076: Vulnerability in Windows Media Center Could Allow Remote Code Execution (2604926)
|
|
420
|
+
56451, #MS11-077: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Remote Code Execution (2567053)
|
|
421
|
+
56452, #MS11-078: Vulnerability in .NET Framework and Microsoft Silverlight Could Allow Remote Code Execution (2604930)
|
|
422
|
+
56454, #MS11-080: Vulnerability in Ancillary Function Driver Could Allow Elevation of Privilege (2592799)
|
|
423
|
+
56455, #MS11-081: Critical Cumulative Security Update for Internet Explorer (2586448)
|
|
424
|
+
56736, #MS11-083: Vulnerability in TCP/IP Could Allow Remote Code Execution (2588516)
|
|
425
|
+
56737, #MS11-084: Vulnerability in Windows Kernel-Mode Drivers Could Allow Denial of Service (2617657)
|
|
426
|
+
56738, #MS11-085: Vulnerability in Windows Mail and Windows Meeting Space Could Allow Remote Code Execution (2620704)
|
|
427
|
+
56824, #MS KB2506014: Update for the Windows Operating System Loader
|
|
428
|
+
57273, #MS11-087: Vulnerability in Windows Kernel-Mode Drivers Could Allow Remote Code Execution (2639417)
|
|
429
|
+
57275, #MS11-089: Vulnerability in Microsoft Office Could Allow Remote Code Execution (2590602)
|
|
430
|
+
57276, #MS11-090: Cumulative Security Update of ActiveX Kill Bits (2618451)
|
|
431
|
+
57277, #MS11-091: Vulnerabilities in Microsoft Publisher Could Allow Remote Code Execution (2607702)
|
|
432
|
+
57278, #MS11-092: Vulnerability in Windows Media Could Allow Remote Code Execution (2648048)
|
|
433
|
+
57279, #MS11-093: Vulnerability in OLE Could Allow Remote Code Execution (2624667)
|
|
434
|
+
57280, #MS11-094: Vulnerabilities in Microsoft PowerPoint Could Allow Remote Code Execution (2639142)
|
|
435
|
+
57282, #MS11-096: Vulnerability in Microsoft Excel Could Allow Remote Code Execution (2640241)
|
|
436
|
+
57283, #MS11-097: Vulnerability in Windows Client/Server Run-time Subsystem Could Allow Elevation of Privilege (2620712)
|
|
437
|
+
57284, #MS11-098: Vulnerability in Windows Kernel Could Allow Elevation of Privilege (2633171)
|
|
438
|
+
57285, #MS11-099: Cumulative Security Update for Internet Explorer (2618444)
|
|
439
|
+
57414, #MS11-100: Vulnerabilities in .NET Framework Could Allow Elevation of Privilege (2638420)
|
|
440
|
+
57469, #MS12-001: Vulnerability in Windows Kernel Could Allow Security Feature Bypass (2644615)
|
|
441
|
+
57470, #MS12-002: Vulnerability in Windows Object Packager Could Allow Remote Code Execution (2603381)
|
|
442
|
+
57471, #MS12-003: Vulnerability in Windows Client/Server Run-time Subsystem Could Allow Elevation of Privilege (2646524)
|
|
443
|
+
57472, #MS12-004: Vulnerabilities in Windows Media Could Allow Remote Code Execution (2636391)
|
|
444
|
+
57473, #MS12-005: Vulnerability in Microsoft Windows Could Allow Remote Code Execution (2584146)
|
|
445
|
+
57474, #MS12-006: Vulnerability in SSL/TLS Could Allow Information Disclosure (2643584)
|
|
446
|
+
57942, #MS12-008: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Remote Code Execution (2660465)
|
|
447
|
+
57943, #MS12-009: Vulnerabilities in Ancillary Function Driver Could Allow Elevation of Privilege (2645640)
|
|
448
|
+
57944, #MS12-010: Cumulative Security Update for Internet Explorer (2647516)
|
|
449
|
+
57946, #MS12-012: Vulnerability in Color Control Panel Could Allow Remote Code Execution (2643719)
|
|
450
|
+
57947, #MS12-013: Vulnerability in C Run-Time Library Could Allow Remote Code Execution (2654428)
|
|
451
|
+
57948, #MS12-014: Vulnerability in Indeo Codec Could Allow Remote Code Execution (2661637)
|
|
452
|
+
57949, #MS12-015: Vulnerabilities in Microsoft Visio Viewer 2010 Could Allow Remote Code Execution (2663510)
|
|
453
|
+
57950, #MS12-016: Vulnerabilities in .NET Framework and Microsoft Silverlight Could Allow Remote Code Execution (2651026)
|
|
454
|
+
58330, #MS12-018: Vulnerability in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2641653)
|
|
455
|
+
58331, #MS12-019: Vulnerability in DirectWrite Could Allow Denial of Service (2665364)
|
|
456
|
+
58332, #MS12-020: Vulnerabilities in Remote Desktop Could Allow Remote Code Execution (2671387)
|
|
457
|
+
58333, #MS12-021: Vulnerability in Visual Studio Could Allow Elevation of Privilege (2651019)
|
|
458
|
+
58335, #MS 2647518: Update Rollup for ActiveX Kill Bits (2647518)
|
|
459
|
+
58655, #MS12-023: Cumulative Security Update for Internet Explorer (2675157)
|
|
460
|
+
58656, #MS12-024: Vulnerability in Windows Could Allow Remote Code Execution (2653956)
|
|
461
|
+
58657, #MS12-025: Vulnerability in .NET Framework Could Allow Remote Code Execution (2671605)
|
|
462
|
+
58659, #MS12-027: Vulnerability in Windows Common Controls Could Allow Remote Code Execution (2664258)
|
|
463
|
+
59037, #MS12-029: Vulnerability in Microsoft Word Could Allow Remote Code Execution (2680352)
|
|
464
|
+
59038, #MS12-030: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (2663830)
|
|
465
|
+
59039, #MS12-031: Vulnerability in Microsoft Visio Viewer 2010 Could Allow Remote Code Execution (2597981)
|
|
466
|
+
59040, #MS12-032: Vulnerability in TCP/IP Could Allow Elevation of Privilege (2688338)
|
|
467
|
+
59041, #MS12-033: Vulnerability in Windows Partition Manager Could Allow Elevation of Privilege (2690533)
|
|
468
|
+
59042, #MS12-034: Combined Security Update for Microsoft Office, Windows, .NET Framework, and Silverlight (2681578)
|
|
469
|
+
59043, #MS12-035: Vulnerabilities in .NET Framework Could Allow Remote Code Execution (2693777)
|
|
470
|
+
59044, #MS 2695962: Update Rollup for ActiveX Kill Bits (2695962)
|
|
471
|
+
59454, #MS12-036: Vulnerability in Remote Desktop Could Allow Remote Code Execution (2685939)
|
|
472
|
+
59455, #MS12-037: Cumulative Security Update for Internet Explorer (2699988)
|
|
473
|
+
59456, #MS12-038: Vulnerability in .NET Framework Could Allow Remote Code Execution (2706726)
|
|
474
|
+
59459, #MS12-041: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2709162)
|
|
475
|
+
59460, #MS12-042: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (2711167)
|
|
476
|
+
59906, #MS12-043: Vulnerability in Microsoft XML Core Services Could Allow Remote Code Execution (2722479)
|
|
477
|
+
59907, #MS12-044: Cumulative Security Update for Internet Explorer (2719177)
|
|
478
|
+
59908, #MS12-045: Vulnerability in Microsoft Data Access Components Could Allow Remote Code Execution (2698365)
|
|
479
|
+
59909, #MS12-046: Vulnerability in Visual Basic for Applications Could Allow Remote Code Execution (2707960)
|
|
480
|
+
59910, #MS12-047: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2718523)
|
|
481
|
+
59911, #MS12-048: Vulnerability in Windows Shell Could Allow Remote Code Execution (2691442)
|
|
482
|
+
59912, #MS12-049: Vulnerability in TLS Could Allow Information Disclosure (2655992)
|
|
483
|
+
59915, #MS KB2719662: Vulnerabilities in Gadgets Could Allow Remote Code Execution
|
|
484
|
+
61527, #MS12-052: Cumulative Security Update for Internet Explorer (2722913)
|
|
485
|
+
61528, #MS12-053: Vulnerability in Remote Desktop Could Allow Remote Code Execution (2723135)
|
|
486
|
+
61529, #MS12-054: Vulnerabilities in Windows Networking Components Could Allow Remote Code Execution (2733594)
|
|
487
|
+
61530, #MS12-055: Vulnerability in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2731847)
|
|
488
|
+
61531, #MS12-056: Vulnerability in JScript and VBScript Scripting Engines Could Allow Remote Code Execution (2706045)
|
|
489
|
+
61532, #MS12-057: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (2731879)
|
|
490
|
+
61534, #MS12-059: Buffer Overflow in Microsoft Visio and Visio Viewer Could Allow Remote Code Execution (2733918)
|
|
491
|
+
61535, #MS12-060: Vulnerability in Windows Common Controls Could Allow Remote Code Execution (2720573)
|
|
492
|
+
62045, #MS 2736233: Update Rollup for ActiveX Kill Bits (2736233)
|
|
493
|
+
62223, #MS12-063: Cumulative Security Update for Internet Explorer (2744842)
|
|
494
|
+
62459, #MS12-064: Vulnerabilities in Microsoft Word Could Allow Remote Code Execution (2742319)
|
|
495
|
+
62461, #MS12-066: Vulnerability in HTML Sanitization Component Could Allow Elevation of Privilege (2741517)
|
|
496
|
+
62463, #MS12-068: Vulnerability in Windows Kernel Could Allow Elevation of Privilege (2724197)
|
|
497
|
+
62464, #MS12-069: Vulnerability in Kerberos Could Allow Denial of Service (2743555)
|
|
498
|
+
62465, #MS12-070: Vulnerability in SQL Server Could Allow Elevation of Privilege (2754849)
|
|
499
|
+
62466, #MS KB2661254: Update For Minimum Certificate Key Length
|
|
500
|
+
62903, #MS12-071: Cumulative Security Update for Internet Explorer (2761451)
|
|
501
|
+
62904, #MS12-072: Vulnerabilities in Windows Shell Could Allow Remote Code Execution (2727528)
|
|
502
|
+
62905, #MS12-073: Vulnerabilities in Microsoft Internet Information Services (IIS) Could Allow Information Disclosure (2733829)
|
|
503
|
+
62906, #MS12-074: Vulnerabilities in .NET Framework Could Allow Remote Code Execution (2745030)
|
|
504
|
+
62907, #MS12-075: Vulnerability in Windows Kernel-Mode Drivers Could Allow Remote Code Execution (2761226)
|
|
505
|
+
62908, #MS12-076: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (2720184)
|
|
506
|
+
62940, #MS12-073: Vulnerabilities in Microsoft IIS Could Allow Information Disclosure (2733829) (uncredentialed check)
|
|
507
|
+
63224, #MS12-077: Cumulative Security Update for Internet Explorer (2761465)
|
|
508
|
+
63225, #MS12-078: Vulnerability in Windows Kernel-Mode Drivers Could Allow Remote Code Execution (2783534)
|
|
509
|
+
63226, #MS12-079: Vulnerability in Microsoft Word Could Allow Remote Code Execution (2780642)
|
|
510
|
+
63228, #MS12-081: Vulnerability in Windows File Handling Component Could Allow Remote Code Execution (2758857)
|
|
511
|
+
63229, #MS12-082: Vulnerability in DirectPlay Could Allow Remote Code Execution (2770660)
|
|
512
|
+
63230, #MS12-083: Vulnerability in IP-HTTPS Component Could Allow Security Feature Bypass (2765809)
|
|
513
|
+
63419, #MS13-001: Vulnerabilities in Windows Print Spooler Components Could Allow Remote Code Execution (2769369)
|
|
514
|
+
63420, #MS13-002: Vulnerabilities in Microsoft XML Core Services Could Allow Remote Code Execution (2756145)
|
|
515
|
+
63422, #MS13-004: Vulnerabilities in .NET Framework Could Allow Elevation of Privilege (2769324)
|
|
516
|
+
63423, #MS13-005: Vulnerability in Windows Kernel-Mode Driver Could Allow Elevation of Privilege (2778930)
|
|
517
|
+
63424, #MS13-006: Vulnerability in Microsoft Windows Could Allow Security Feature Bypass (2785220)
|
|
518
|
+
63425, #MS13-007: Vulnerability in Open Data Protocol Could Allow Denial of Service (2769327)
|
|
519
|
+
63522, #MS13-008: Security Update for Internet Explorer (2799329)
|
|
520
|
+
64570, #MS13-009: Security Update for Internet Explorer (2792100)
|
|
521
|
+
64571, #MS13-010: Vulnerability in Vector Markup Language Could Allow Remote Code Execution (2797052)
|
|
522
|
+
64572, #MS13-011: Vulnerability in Media Decompression Could Allow Remote Code Execution (2780091)
|
|
523
|
+
64576, #MS13-015: Vulnerability in .NET Framework Could Allow Elevation of Privilege (2800277)
|
|
524
|
+
64577, #MS13-016: Vulnerabilities in Windows Kernel-Mode Driver Could Allow Elevation of Privilege (2778344)
|
|
525
|
+
64578, #MS13-017: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (2799494)
|
|
526
|
+
64579, #MS13-018: Vulnerability in TCP/IP Could Allow Denial of Service (2790655)
|
|
527
|
+
64580, #MS13-019: Vulnerability in Windows Client/Server Run-time Subsystem (CSRSS) Could Allow Elevation of Privilege (2790113)
|
|
528
|
+
64581, #MS13-020: Vulnerability in OLE Automation Could Allow Remote Code Execution (2802968)
|
|
529
|
+
65210, #MS13-021: Security Update for Internet Explorer (2809289)
|
|
530
|
+
65212, #MS13-023: Vulnerability in Microsoft Visio Viewer 2010 Could Allow Remote Code Execution (2801261)
|
|
531
|
+
65214, #MS13-025: Vulnerability in Microsoft OneNote Could Allow Information Disclosure (2816264)
|
|
532
|
+
65215, #MS13-027: Vulnerabilities in Kernel-Mode Drivers Could Allow Elevation Of Privilege (2807986)
|
|
533
|
+
65875, #MS13-028: Security Update for Internet Explorer (2817183)
|
|
534
|
+
65876, #MS13-029: Vulnerability in Remote Desktop Client Could Allow Remote Code Execution (2828223)
|
|
535
|
+
65878, #MS13-031: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (2813170)
|
|
536
|
+
65879, #MS13-032: Vulnerability in Active Directory Could Lead to Denial of Service (2830914)
|
|
537
|
+
65880, #MS13-033: Vulnerability in Windows Client/Server Run-time Subsystem Could Allow Elevation of Privilege (2820917)
|
|
538
|
+
65883, #MS13-036: Vulnerabilities in Windows Kernel-Mode Driver Could Allow Elevation of Privilege (2829996)
|
|
539
|
+
66412, #MS13-037: Cumulative Security Update for Internet Explorer (2829530)
|
|
540
|
+
66413, #MS13-038: Security Update for Internet Explorer (2847204)
|
|
541
|
+
66415, #MS13-040: Vulnerabilities in .NET Framework Could Allow Spoofing (2836440)
|
|
542
|
+
66417, #MS13-042: Vulnerabilities in Microsoft Publisher Could Allow Remote Code Execution (2830397)
|
|
543
|
+
66418, #MS13-043: Vulnerability in Microsoft Word Could Allow Remote Code Execution (2830399)
|
|
544
|
+
66421, #MS13-045: Vulnerability in Windows Essentials Could Allow Information Disclosure (2813707)
|
|
545
|
+
66422, #MS13-046: Vulnerabilities in Windows Kernel-Mode Driver Could Allow Elevation of Privilege (2840221)
|
|
546
|
+
66423, #MS KB2820197: Update Rollup for ActiveX Kill Bits
|
|
547
|
+
66425, #MS Security Advisory 2846338: Vulnerability in Microsoft Malware Protection Engine Could Allow Remote Code Execution
|
|
548
|
+
66863, #MS13-047: Cumulative Security Update for Internet Explorer (2838727)
|
|
549
|
+
66864, #MS13-048: Vulnerability in Windows Kernel Could Allow Information Disclosure (2839229)
|
|
550
|
+
66865, #MS13-049: Vulnerability in Kernel-Mode Driver Could Allow Denial of Service (2845690)
|
|
551
|
+
66866, #MS13-050: Vulnerability in Windows Print Spooler Components Could Allow Elevation of Privilege (2839894)
|
|
552
|
+
67209, #MS13-052: Vulnerabilities in .NET Framework and Silverlight Could Allow Remote Code Execution (2861561)
|
|
553
|
+
67210, #MS13-053: Vulnerabilities in Windows Kernel-Mode Driver Could Allow Remote Code Execution (2850851)
|
|
554
|
+
67211, #MS13-054: Vulnerability in GDI+ Could Allow Remote Code Execution (2848295)
|
|
555
|
+
67212, #MS13-055: Cumulative Security Update for Internet Explorer (2846071)
|
|
556
|
+
67213, #MS13-056: Vulnerability in Microsoft DirectShow Could Allow Remote Code Execution (2845187)
|
|
557
|
+
67214, #MS13-057: Vulnerability in Windows Media Format Runtime Could Allow Remote Code Execution (2847883)
|
|
558
|
+
67215, #MS13-058: Vulnerability in Windows Defender Could Allow Elevation of Privilege (2847927)
|
|
559
|
+
69324, #MS13-059: Cumulative Security Update for Internet Explorer (2862772)
|
|
560
|
+
69325, #MS13-060: Vulnerability in Unicode Scripts Processor Could Allow Remote Code Execution (2850869)
|
|
561
|
+
69327, #MS13-062: Vulnerability in Remote Procedure Call Could Allow Elevation of Privilege (2849470)
|
|
562
|
+
69328, #MS13-063: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (2859537)
|
|
563
|
+
69330, #MS13-065: Vulnerability in ICMPv6 Could Allow Denial of Service (2868623)
|
|
564
|
+
69334, #MS KB2862973: Update for Deprecation of MD5 Hashing Algorithm for Microsoft Root Certificate Program
|
|
565
|
+
69828, #MS13-068: Vulnerability in Microsoft Outlook Could Allow Remote Code Execution (2756473)
|
|
566
|
+
69829, #MS13-069: Cumulative Security Update for Internet Explorer (2870699)
|
|
567
|
+
69830, #MS13-070: Vulnerability in OLE Could Allow Remote Code Execution (2876217)
|
|
568
|
+
69831, #MS13-071: Vulnerability in Windows Theme File Could Allow Remote Code Execution (2864063)
|
|
569
|
+
69832, #MS13-072: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (2845537)
|
|
570
|
+
69833, #MS13-073: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2858300))
|
|
571
|
+
69834, #MS13-074: Vulnerabilities in Microsoft Access Could Allow Remote Code Execution (2848637)
|
|
572
|
+
69835, #MS13-076: Vulnerabilities in Kernel-Mode Drivers Could Allow Elevation of Privilege (2876315)
|
|
573
|
+
69836, #MS13-077: Vulnerability in Windows Service Control Manager Could Allow Elevation of Privilege (2872339)
|
|
574
|
+
69838, #MS13-079: Vulnerability in Active Directory Could Allow Denial of Service (2853587)
|
|
575
|
+
70332, #MS13-080: Cumulative Security Update for Internet Explorer (2879017)
|
|
576
|
+
70333, #MS13-081: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Remote Code Execution (2870008)
|
|
577
|
+
70334, #MS13-082: Vulnerabilities in .NET Framework Could Allow Remote Code Execution (2878890)
|
|
578
|
+
70335, #MS13-083: Vulnerability in Windows Common Control Library Could Allow Remote Code Execution (2864058)
|
|
579
|
+
70337, #MS13-085: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2885080)
|
|
580
|
+
70338, #MS13-086: Vulnerabilities in Microsoft Word Could Allow Remote Code Execution (2885084)
|
|
581
|
+
70339, #MS13-087: Vulnerability in Silverlight Could Allow Information Disclosure (2890788)
|
|
582
|
+
70395, #MS KB2532445: AppLocker Rules Bypass
|
|
583
|
+
70846, #MS13-088: Cumulative Security Update for Internet Explorer (2888505)
|
|
584
|
+
70847, #MS13-089: Critical Vulnerability in Windows Graphics Device Interface Could Allow Remote Code Execution (2876331)
|
|
585
|
+
70848, #MS13-090: Cumulative Security Update of ActiveX Kill Bits (2900986)
|
|
586
|
+
70849, #MS13-091: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (2885093)
|
|
587
|
+
70851, #MS13-093: Vulnerability in Windows Ancillary Function Driver Could Allow Information Disclosure (2875783)
|
|
588
|
+
70852, #MS13-094: Vulnerability in Microsoft Outlook Could Allow Information Disclosure (2894514)
|
|
589
|
+
70853, #MS13-095: Vulnerability in Digital Signatures Could Allow Denial of Service (2868626)
|
|
590
|
+
70854, #MS KB2868725: Update for Disabling RC4
|
|
591
|
+
71311, #MS13-096: Vulnerability in Microsoft Graphics Component Could Allow Remote Code Execution (2908005)
|
|
592
|
+
71312, #MS13-097: Cumulative Security Update for Internet Explorer (2898785)
|
|
593
|
+
71313, #MS13-098: Vulnerability in Windows Could Allow Remote Code Execution (2893294)
|
|
594
|
+
71314, #MS13-099: Vulnerability in Microsoft Scripting Runtime Object Library Could Allow Remote Code Execution (2909158)
|
|
595
|
+
71316, #MS13-101: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (2880430)
|
|
596
|
+
71317, #MS13-102: Vulnerability in LRPC Client Could Allow Elevation of Privilege (2898715)
|
|
597
|
+
71321, #MS13-106: Vulnerability in a Microsoft Office Shared Component Could Allow Security Feature Bypass (2905238)
|
|
598
|
+
71323, #MS KB2905247: Insecure ASP.NET Site Configuration Could Allow Elevation of Privilege
|
|
599
|
+
71941, #MS14-001: Vulnerabilities in Microsoft Word and Office Web Apps Could Allow Remote Code Execution (2916605)
|
|
600
|
+
71942, #MS14-002: Vulnerability in Windows Kernel Could Allow Elevation of Privilege (2914368)
|
|
601
|
+
71943, #MS14-003: Vulnerability in Windows Kernel-Mode Driver Could Allow Elevation of Privilege (2913602)
|
|
602
|
+
72428, #MS14-005: Vulnerability in Microsoft XML Core Services Could Allow Information Disclosure (2916036)
|
|
603
|
+
72430, #MS14-007: Vulnerability in Direct2D Could Allow Remote Code Execution (2912390)
|
|
604
|
+
72432, #MS14-009: Vulnerabilities in .NET Framework Could Allow Privilege Escalation (2916607)
|
|
605
|
+
72433, #MS14-010: Cumulative Security Update for Internet Explorer (2909921)
|
|
606
|
+
72434, #MS14-011: Vulnerability in VBScript Scripting Engine Could Allow Remote Code Execution (2928390)
|
|
607
|
+
72930, #MS14-012: Cumulative Security Update for Internet Explorer (2925418)
|
|
608
|
+
72931, #MS14-013: Vulnerability in Microsoft DirectShow Could Allow Remote Code Execution (2929961)
|
|
609
|
+
72932, #MS14-014: Vulnerability in Silverlight Could Allow Security Feature Bypass (2932677)
|
|
610
|
+
72934, #MS14-015: Vulnerabilities in Windows Kernel-Mode Driver Could Allow Elevation of Privilege (2930275)
|
|
611
|
+
72935, #MS14-016: Vulnerability in Security Account Manager Remote (SAMR) Protocol Could Allow Security Feature Bypass (2934418)
|
|
612
|
+
73413, #MS14-017: Vulnerabilities in Microsoft Word and Office Web Apps Could Allow Remote Code Execution (2949660)
|
|
613
|
+
73415, #MS14-018: Cumulative Security Update for Internet Explorer (2950467)
|
|
614
|
+
73416, #MS14-019: Vulnerability in Windows File Handling Component Could Allow Remote Code Execution (2922229)
|
|
615
|
+
73417, #MS14-020: Vulnerability in Microsoft Publisher Could Allow Remote Code Execution (2950145)
|
|
616
|
+
73805, #MS14-021: Security Update for Internet Explorer (2965111)
|
|
617
|
+
73982, #MS14-023: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (2961037)
|
|
618
|
+
73983, #MS14-024: Vulnerability in a Microsoft Common Control Could Allow Security Feature Bypass (2961033)
|
|
619
|
+
73984, #MS14-025: Vulnerability in Group Policy Preferences Could Allow Elevation of Privilege (2962486)
|
|
620
|
+
73985, #MS14-026: Vulnerability in .NET Framework Could Allow Elevation of Privilege (2958732)
|
|
621
|
+
73986, #MS14-027: Vulnerability in Windows Shell Handler Could Allow Elevation of Privilege (2962488)
|
|
622
|
+
73987, #MS14-028: Vulnerabilities in iSCSI Could Allow Denial of Service (2962485)
|
|
623
|
+
73988, #MS14-029: Security Update for Internet Explorer (2962482)
|
|
624
|
+
73990, #MS KB2871997: Update to Improve Credentials Protection and Management
|
|
625
|
+
73992, #MS KB2960358: Update for Disabling RC4 in .NET TLS
|
|
626
|
+
74422, #MS14-030: Vulnerability in Remote Desktop Could Allow Tampering (2969259)
|
|
627
|
+
74423, #MS14-031: Vulnerability in TCP Protocol Could Allow Denial of Service (2962478)
|
|
628
|
+
74425, #MS14-033: Vulnerability in Microsoft XML Core Services Could Allow Information Disclosure (2966061)
|
|
629
|
+
74426, #MS14-034: Vulnerability in Microsoft Word Could Allow Remote Code Execution (2969261)
|
|
630
|
+
74427, #MS14-035: Cumulative Security Update for Internet Explorer (2969262)
|
|
631
|
+
74428, #MS14-036: Vulnerabilities in Microsoft Graphics Component Could Allow Remote Code Execution (2967487)
|
|
632
|
+
76123, #MS Security Advisory 2974294: Vulnerability in Microsoft Malware Protection Engine Could Allow Denial of Service
|
|
633
|
+
76406, #MS14-037: Cumulative Security Update for Internet Explorer (2975687)
|
|
634
|
+
76407, #MS14-038: Vulnerability in Windows Journal Could Allow Remote Code Execution (2975689)
|
|
635
|
+
76408, #MS14-039: Vulnerability in On-Screen Keyboard Could Allow Elevation of Privilege (2975685)
|
|
636
|
+
76409, #MS14-040: Vulnerability in Ancillary Function Driver (AFD) Could Allow Elevation of Privilege (2975684)
|
|
637
|
+
76410, #MS14-041: Vulnerability in Microsoft DirectShow Could Allow Elevation of Privilege (2975681)
|
|
638
|
+
77160, #MS14-043: Vulnerability in Windows Media Center Could Allow Remote Code Execution (2978742)
|
|
639
|
+
77162, #MS14-044: Vulnerability in SQL Server Could Allow Elevation of Privilege (2984340)
|
|
640
|
+
77163, #MS14-045: Vulnerabilities in Kernel-Mode Drivers Could Allow Elevation of Privilege (2984615)
|
|
641
|
+
77164, #MS14-046: Vulnerability in .NET Framework Could Allow Security Feature Bypass (2984625)
|
|
642
|
+
77165, #MS14-047: Vulnerability in LRPC Could Allow Security Feature Bypass (2978668)
|
|
643
|
+
77166, #MS14-048: Vulnerability in OneNote Could Allow Remote Code Execution (2977201)
|
|
644
|
+
77167, #MS14-049: Vulnerability in Windows Installer Service Could Allow Elevation of Privilege (2962490)
|
|
645
|
+
77169, #MS14-051: Cumulative Security Update for Internet Explorer (2976627)
|
|
646
|
+
77572, #MS14-052: Cumulative Security Update for Internet Explorer (2977629)
|
|
647
|
+
77573, #MS14-053: Vulnerability in .NET Framework Could Allow Denial of Service (2990931)
|
|
648
|
+
77574, #MS14-054: Vulnerability in Windows Task Scheduler Could Allow Elevation of Privilege (2988948)
|
|
649
|
+
78431, #MS14-056: Cumulative Security Update for Internet Explorer (2987107)
|
|
650
|
+
78432, #MS14-057: Vulnerabilities in .NET Framework Could Allow Remote Code Execution (3000414)
|
|
651
|
+
78433, #MS14-058: Vulnerabilities in Kernel-Mode Driver Could Allow Remote Code Execution (3000061)
|
|
652
|
+
78435, #MS14-060: Vulnerability in Windows OLE Could Allow Remote Code Execution (3000869)
|
|
653
|
+
78437, #MS14-061: Vulnerability in Microsoft Word and Office Web Apps Could Allow Remote Code Execution (3000434)
|
|
654
|
+
78438, #MS14-062: Vulnerability in Message Queuing Service Could Allow Elevation of Privilege (2993254)
|
|
655
|
+
78439, #MS14-063: Vulnerability in FAT32 Disk Partition Driver Could Allow Elevation of Privilege (2998579)
|
|
656
|
+
78446, #MS KB2977292: Update for Microsoft EAP Implementation that Enables the Use of TLS
|
|
657
|
+
78447, #MS KB3009008: Vulnerability in SSL 3.0 Could Allow Information Disclosure (POODLE)
|
|
658
|
+
79125, #MS14-064: Vulnerabilities in Windows OLE Could Allow Remote Code Execution (3011443)
|
|
659
|
+
79126, #MS14-065: Cumulative Security Update for Internet Explorer (3003057)
|
|
660
|
+
79127, #MS14-066: Vulnerability in Schannel Could Allow Remote Code Execution (2992611)
|
|
661
|
+
79128, #MS14-067: Vulnerability in XML Core Services Could Allow Remote Code Execution (2993958)
|
|
662
|
+
79129, #MS14-069: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (3009710)
|
|
663
|
+
79130, #MS14-070: Vulnerability in TCP/IP Could Allow Elevation of Privilege (2989935)
|
|
664
|
+
79131, #MS14-071: Vulnerability in Windows Audio Service Could Allow Elevation of Privilege (3005607)
|
|
665
|
+
79132, #MS14-072: Vulnerability in .NET Framework Could Allow Elevation of Privilege (3005210)
|
|
666
|
+
79134, #MS14-074: Vulnerability in Remote Desktop Protocol Could Allow Security Feature Bypass (3003743)
|
|
667
|
+
79137, #MS14-078: Vulnerability in IME (Japanese) Could Allow Elevation of Privilege (2992719)
|
|
668
|
+
79138, #MS14-079: Vulnerability in Kernel-Mode Driver Could Allow Denial of Service (3002885)
|
|
669
|
+
79311, #MS14-068: Vulnerability in Kerberos Could Allow Elevation of Privilege (3011780) (ESKIMOROLL)
|
|
670
|
+
79828, #MS14-080: Cumulative Security Update for Internet Explorer (3008923)
|
|
671
|
+
79830, #MS14-081: Vulnerabilities in Microsoft Word and Office Web Apps Could Allow Remote Code Execution (3017301)
|
|
672
|
+
79831, #MS14-082: Vulnerability in Microsoft Office Could Allow Remote Code Execution (3017349)
|
|
673
|
+
79832, #MS14-083: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (3017347)
|
|
674
|
+
79833, #MS14-084: Vulnerability in VBScript Scripting Engine Could Allow Remote Code Execution (3016711)
|
|
675
|
+
79834, #MS14-085: Vulnerability in Microsoft Graphics Component Could Allow Information Disclosure (3013126)
|
|
676
|
+
80490, #MS15-001: Vulnerability in Windows Application Compatibility Cache Could Allow Elevation of Privilege (3023266)
|
|
677
|
+
80491, #MS15-002: Vulnerability in Windows Telnet Service Could Allow Remote Code Execution (3020393)
|
|
678
|
+
80492, #MS15-003: Vulnerability in Windows User Profile Service Could Allow Elevation of Privilege (3021674)
|
|
679
|
+
80493, #MS15-004: Vulnerability in Windows Components Could Allow Elevation of Privilege (3025421)
|
|
680
|
+
80494, #MS15-005: Vulnerability in Network Location Awareness Service Could Allow Security Feature Bypass (3022777)
|
|
681
|
+
80496, #MS15-007: Vulnerability in Network Policy Server RADIUS Implementation Could Cause Denial of Service (3014029)
|
|
682
|
+
80497, #MS15-008: Vulnerability in Windows Kernel-Mode Driver Could Allow Elevation of Privilege (3019215)
|
|
683
|
+
81262, #MS15-009: Security Update for Internet Explorer (3034682)
|
|
684
|
+
81263, #MS15-010: Vulnerabilities in Windows Kernel-Mode Driver Could Allow Remote Code Execution (3036220)
|
|
685
|
+
81264, #MS15-011: Vulnerability in Group Policy Could Allow Remote Code Execution (3000483)
|
|
686
|
+
81265, #MS15-012: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (3032328)
|
|
687
|
+
81266, #MS15-013: Vulnerability in Microsoft Office Could Allow Security Feature Bypass (3033857)
|
|
688
|
+
81267, #MS15-014: Vulnerability in Group Policy Could Allow Security Feature Bypass (3004361)
|
|
689
|
+
81268, #MS15-015: Vulnerability in Microsoft Windows Could Allow Elevation of Privilege (3031432)
|
|
690
|
+
81269, #MS15-016: Vulnerability in Microsoft Graphics Component Could Allow Information Disclosure (3029944)
|
|
691
|
+
81731, #MS KB3033929: Availability of SHA-2 Code Signing Support for Windows 7 and Windows Server 2008 R2
|
|
692
|
+
81733, #MS15-018: Cumulative Security Update for Internet Explorer (3032359)
|
|
693
|
+
81734, #MS15-019: Vulnerability in VBScript Scripting Engine Could Allow Remote Code Execution (3040297)
|
|
694
|
+
81735, #MS15-020: Vulnerabilities in Microsoft Windows Could Allow Remote Code Execution (3041836) (EASYHOOKUP)
|
|
695
|
+
81736, #MS15-021: Vulnerabilities in Adobe Font Driver Could Allow Remote Code Execution (3032323)
|
|
696
|
+
81737, #MS15-023: Vulnerabilities in Kernel-Mode Driver Could Allow Elevation of Privilege (3034344)
|
|
697
|
+
81738, #MS15-024: Vulnerability in PNG Processing Could Allow Information Disclosure (3035132)
|
|
698
|
+
81739, #MS15-025: Vulnerabilities in Windows Kernel Could Allow Elevation of Privilege (3038680)
|
|
699
|
+
81741, #MS15-027: Vulnerability in NETLOGON Could Allow Spoofing (3002657)
|
|
700
|
+
81742, #MS15-028: Vulnerability in Windows Task Scheduler Could Allow Security Feature Bypass (3030377)
|
|
701
|
+
81743, #MS15-029: Vulnerability in Windows Photo Decoder Component Could Allow Information Disclosure (3035126)
|
|
702
|
+
81744, #MS15-030: Vulnerability in Remote Desktop Protocol Could Allow Denial of Service (3039976)
|
|
703
|
+
81745, #MS15-031: Vulnerability in Schannel Could Allow Security Feature Bypass (3046049) (FREAK)
|
|
704
|
+
81757, #MS15-022: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (3038999)
|
|
705
|
+
82075, #MS KB3050995: Improperly Issued Digital Certificates Could Allow Spoofing (deprecated)
|
|
706
|
+
82769, #MS15-033: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (3048019)
|
|
707
|
+
82770, #MS15-032: Cumulative Security Update for Internet Explorer (3038314)
|
|
708
|
+
82771, #MS15-034: Vulnerability in HTTP.sys Could Allow Remote Code Execution (3042553)
|
|
709
|
+
82772, #MS15-035: Vulnerabilities in Microsoft Graphics Component Could Allow Remote Code Execution (3046306)
|
|
710
|
+
82774, #MS15-038: Vulnerabilities in Microsoft Windows Could Allow Elevation of Privilege (3049576)
|
|
711
|
+
82775, #MS15-039: Vulnerability in XML Core Services Could Allow Security Feature Bypass (3046482)
|
|
712
|
+
82777, #MS15-041: Vulnerability in .NET Framework Could Allow Information Disclosure (3048010)
|
|
713
|
+
82793, #MS15-037: Vulnerability in Windows Task Scheduler Could Allow Elevation of Privilege (3046269)
|
|
714
|
+
82828, #MS15-034: Vulnerability in HTTP.sys Could Allow Remote Code Execution (3042553) (uncredentialed check)
|
|
715
|
+
83354, #MS15-049: Vulnerability in Silverlight Could Allow Elevation of Privilege (3058985)
|
|
716
|
+
83355, #MS15-050: Vulnerability in Service Control Manager Could Allow Elevation of Privilege (3055642)
|
|
717
|
+
83356, #MS15-048: Vulnerabilities in .NET Framework Could Allow Elevation of Privilege (3057134)
|
|
718
|
+
83358, #MS15-043: Cumulative Security Update for Internet Explorer (3049563)
|
|
719
|
+
83360, #MS15-055: Vulnerability in Schannel Could Allow Information Disclosure (3061518)
|
|
720
|
+
83361, #MS15-052: Vulnerability in Windows Kernel Could Allow Security Feature Bypass (3050514)
|
|
721
|
+
83362, #MS15-045: Vulnerability in Windows Journal Could Allow Remote Code Execution (3046002)
|
|
722
|
+
83363, #MS15-054: Vulnerability in Microsoft Management Console File Format Could Allow Denial of Service (3051768)
|
|
723
|
+
83364, #MS15-053: Vulnerabilities in JScript and VBScript Scripting Engines Could Allow Security Feature Bypass (3057263)
|
|
724
|
+
83370, #MS15-051: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (3057191)
|
|
725
|
+
83416, #MS15-046: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (3057181)
|
|
726
|
+
83440, #MS15-044: Vulnerabilities in Microsoft Font Drivers Could Allow Remote Code Execution (3057110)
|
|
727
|
+
84053, #MS15-056: Cumulative Security Update for Internet Explorer (3058515)
|
|
728
|
+
84054, #MS15-057: Vulnerability in Windows Media Player Could Allow Remote Code Execution (3033890)
|
|
729
|
+
84055, #MS15-059: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (3064949)
|
|
730
|
+
84056, #MS15-060: Vulnerability in Microsoft Common Controls Could Allow Remote Code Execution (3059317)
|
|
731
|
+
84057, #MS15-063: Vulnerability in Windows Kernel Could Allow Elevation of Privilege (3063858)
|
|
732
|
+
84059, #MS15-061: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (3057839)
|
|
733
|
+
84734, #MS15-069: Vulnerabilities in Windows Could Allow Remote Code Execution (3072631)
|
|
734
|
+
84735, #MS15-071: Vulnerability in NETLOGON Could Allow Elevation of Privilege (3068457)
|
|
735
|
+
84736, #MS15-066: Vulnerability in VBScript Scripting Engine Could Allow Remote Code Execution (3072604)
|
|
736
|
+
84738, #MS15-058: Vulnerabilities in SQL Server Could Allow Remote Code Execution (3065718)
|
|
737
|
+
84739, #MS15-070: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (3072620)
|
|
738
|
+
84741, #MS15-075: Vulnerabilities in OLE Could Allow Elevation of Privilege (3072633)
|
|
739
|
+
84742, #MS KB3074162: Vulnerability in Microsoft Malicious Software Removal Tool Could Allow Elevation of Privilege
|
|
740
|
+
84743, #MS15-067: Vulnerability in RDP Could Allow Remote Code Execution (3073094)
|
|
741
|
+
84744, #MS15-072: Vulnerability in Windows Graphics Component Could Allow Elevation of Privilege (3069392)
|
|
742
|
+
84745, #MS15-074: Vulnerability in Windows Installer Service Could Allow Elevation of Privilege (3072630)
|
|
743
|
+
84746, #MS15-077: Vulnerability in ATM Font Driver Could Allow Elevation of Privilege (3077657)
|
|
744
|
+
84747, #MS15-073: Vulnerabilities in Windows Kernel-Mode Driver Could Allow Elevation of Privilege (3070102)
|
|
745
|
+
84748, #MS15-076: Vulnerability in Windows Remote Procedure Call Could Allow Elevation of Privilege (3067505)
|
|
746
|
+
84761, #MS15-065: Cumulative Security Update for Internet Explorer (3076321)
|
|
747
|
+
84763, #MS KB3057154: Update to harden use of DES encryption (3057154)
|
|
748
|
+
84882, #MS15-078: Vulnerability in Microsoft Font Driver Could Allow Remote Code Execution (3079904)
|
|
749
|
+
85321, #MS15-083: Vulnerability in Server Message Block Could Allow Remote Code Execution (3073921)
|
|
750
|
+
85322, #MS15-090: Vulnerabilities in Microsoft Windows Could Allow Elevation of Privilege (3060716)
|
|
751
|
+
85323, #MS15-089: Vulnerability in WebDAV Could Allow Information Disclosure (3076949)
|
|
752
|
+
85329, #MS KB3087916: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer
|
|
753
|
+
85330, #MS15-085: Vulnerability in Mount Manager Could Allow Elevation of Privilege (3082487)
|
|
754
|
+
85332, #MS15-082: Vulnerability in RDP Could Allow Remote Code Execution (3080348)
|
|
755
|
+
85333, #MS15-079: Cumulative Security Update for Internet Explorer (3082442)
|
|
756
|
+
85334, #MS15-088: Unsafe Command Line Parameter Passing Could Allow Information Disclosure (3082458)
|
|
757
|
+
85335, #MS15-084: Vulnerabilities in XML Core Services Could Allow Information Disclosure (3080129)
|
|
758
|
+
85348, #MS15-080 : Vulnerabilities in Microsoft Graphics Component Could Allow Remote Code Execution (3078662)
|
|
759
|
+
85350, #MS15-081: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (3080790)
|
|
760
|
+
85540, #MS15-093: Security Update for Internet Explorer (3088903)
|
|
761
|
+
85844, #MS15-102: Vulnerabilities in Windows Task Management Could Allow Elevation of Privilege (3089657)
|
|
762
|
+
85845, #MS15-094: Cumulative Security Update for Internet Explorer (3089548)
|
|
763
|
+
85846, #MS15-096: Vulnerability in Active Directory Service Could Allow Denial of Service (3072595)
|
|
764
|
+
85847, #MS15-101: Vulnerabilities in .NET Framework Could Allow Elevation of Privilege (3089662)
|
|
765
|
+
85876, #MS15-098: Vulnerabilities in Windows Journal Could Allow Remote Code Execution (3089669)
|
|
766
|
+
85877, #MS15-097: Vulnerabilities in Microsoft Graphics Component Could Allow Remote Code Execution (3089656)
|
|
767
|
+
85879, #MS15-099: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (3089664)
|
|
768
|
+
85884, #MS15-100: Vulnerability in Windows Media Center Could Allow Remote Code Execution (3087918)
|
|
769
|
+
86065, #MS KB3087040: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer and Microsoft Edge
|
|
770
|
+
86149, #MS KB3097966: Inadvertently Disclosed Digital Certificates Could Allow Spoofing
|
|
771
|
+
86366, #MS15-109: Security Update for Windows Shell to Address Remote Code Execution (3096443)
|
|
772
|
+
86367, #MS15-106: Cumulative Security Update for Internet Explorer (3096441)
|
|
773
|
+
86371, #MS KB3099406: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer and Microsoft Edge
|
|
774
|
+
86373, #MS15-111: Security Update for Windows Kernel to Address Elevation of Privilege (3096447)
|
|
775
|
+
86374, #MS15-110: Security Updates for Microsoft Office to Address Remote Code Execution (3089440)
|
|
776
|
+
86469, #MS KB3105216: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer and Microsoft Edge
|
|
777
|
+
86819, #MS15-112: Cumulative Security Update for Internet Explorer (3104517)
|
|
778
|
+
86820, #MS15-113: Cumulative Security Update for Microsoft Edge (3104519)
|
|
779
|
+
86821, #MS15-114: Security Update for Windows Journal to Address Remote Code Execution (3100213)
|
|
780
|
+
86822, #MS15-115: Security Update for Microsoft Windows to Address Remote Code Execution (3105864)
|
|
781
|
+
86823, #MS15-116: Security Update for Microsoft Office to Address Remote Code Execution (3104540)
|
|
782
|
+
86824, #MS15-117: Security Update for NDIS to Address Elevation of Privilege (3101722)
|
|
783
|
+
86825, #MS15-118: Security Update for .NET Framework to Address Elevation of Privilege (3104507)
|
|
784
|
+
86826, #MS15-119: Security Update for Winsock to Address Elevation of Privilege (3104521)
|
|
785
|
+
86827, #MS15-121: Security Update for Schannel to Address Spoofing (3081320)
|
|
786
|
+
86828, #MS15-122: Security Update for Kerberos to Address Security Feature Bypass (3105256)
|
|
787
|
+
86856, #MS KB3103688: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer and Microsoft Edge
|
|
788
|
+
87249, #MS KB3119147: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer and Microsoft Edge
|
|
789
|
+
87252, #MS KB3123040: Improperly Issued Digital Certificates Could Allow Spoofing
|
|
790
|
+
87253, #MS15-124: Cumulative Security Update for Internet Explorer (3116180)
|
|
791
|
+
87254, #MS15-125: Cumulative Security Update for Microsoft Edge (3116184)
|
|
792
|
+
87256, #MS15-127: Security Update for Microsoft Windows DNS to Address Remote Code Execution (3100465)
|
|
793
|
+
87257, #MS15-128: Security Update for Microsoft Graphics Component to Address Remote Code Execution (3104503)
|
|
794
|
+
87258, #MS15-129: Security Update for Silverlight to Address Remote Code Execution (3106614)
|
|
795
|
+
87259, #MS15-130: Security Update for Microsoft Uniscribe to Address Remote Code Execution (3108670)
|
|
796
|
+
87260, #MS15-131: Security Update for Microsoft Office to Address Remote Code Execution (3116111)
|
|
797
|
+
87261, #MS15-132: Security Update for Microsoft Windows to Address Remote Code Execution (3116162)
|
|
798
|
+
87262, #MS15-133: Security Update for Windows PGM to Address Elevation of Privilege (3116130)
|
|
799
|
+
87263, #MS15-134: Security Update for Windows Media Center to Address Remote Code Execution (3108669)
|
|
800
|
+
87264, #MS15-135: Security Update for Windows Kernel-Mode Drivers to Address Elevation of Privilege (3119075)
|
|
801
|
+
87313, #MS KB3119884: Improperly Issued Digital Certificates Could Allow Spoofing
|
|
802
|
+
87671, #MS KB3132372: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer and Microsoft Edge
|
|
803
|
+
87875, #MS KB3123479: Deprecation of SHA-1 Hashing Algorithm for Microsoft Root Certificate Program
|
|
804
|
+
87877, #MS16-001: Cumulative Security Update for Internet Explorer (3124903)
|
|
805
|
+
87878, #MS16-002: Cumulative Security Update for Microsoft Edge (3124904)
|
|
806
|
+
87880, #MS16-006: Security Update for Silverlight to Address Remote Code Execution (3126036)
|
|
807
|
+
87881, #MS16-008: Security Update for Windows Kernel to Address Elevation of Privilege (3124605)
|
|
808
|
+
87882, #MS16-004: Security Update for Microsoft Office to Address Remote Code Execution (3124585)
|
|
809
|
+
87890, #MS16-007: Security Update for Microsoft Windows to Address Remote Code Execution (3124901)
|
|
810
|
+
87892, #MS16-005: Security Update for Windows Kernel-Mode Drivers to Address Remote Code Execution (3124584)
|
|
811
|
+
87893, #MS KB3118753: Update for ActiveX Kill Bits
|
|
812
|
+
88642, #MS16-009: Cumulative Security Update for Internet Explorer (3134220)
|
|
813
|
+
88643, #MS16-011: Cumulative Security Update for Microsoft Edge (3134225)
|
|
814
|
+
88644, #MS16-012: Security Update for Microsoft Windows PDF Library to Address Remote Code Execution (3138938)
|
|
815
|
+
88645, #MS16-013: Security Update for Windows Journal to Address Remote Code Execution (3134811)
|
|
816
|
+
88646, #MS16-014: Security Update for Microsoft Windows to Address Remote Code Execution (3134228)
|
|
817
|
+
88647, #MS16-015: Security Update for Microsoft Office to Address Remote Code Execution (3134226)
|
|
818
|
+
88648, #MS16-016: Security Update for WebDAV to Address Elevation of Privilege (3136041)
|
|
819
|
+
88649, #MS16-017: Security Update for Remote Desktop Display Driver to Address Elevation of Privilege (3134700)
|
|
820
|
+
88650, #MS16-018: Security Update for Windows Kernel-Mode Drivers to Address Elevation of Privilege (3136082)
|
|
821
|
+
88651, #MS16-019: Security Update for .NET Framework to Address Denial of Service (3137893)
|
|
822
|
+
88653, #MS16-021: Security Update for NPS RADIUS Server to Address Denial of Service (3133043)
|
|
823
|
+
88654, #MS16-022: Security Update for Adobe Flash Player (3135782)
|
|
824
|
+
89746, #MS16-023: Cumulative Security Update for Internet Explorer (3142015)
|
|
825
|
+
89747, #MS16-024: Cumulative Security Update for Microsoft Edge (3142019)
|
|
826
|
+
89748, #MS16-025: Security Update for Windows Library Loading to Address Remote Code Execution (3140709)
|
|
827
|
+
89749, #MS16-026: Security Update for Graphic Fonts to Address Remote Code Execution (3143148)
|
|
828
|
+
89750, #MS16-027: Security Update for Windows Media to Address Remote Code Execution (3143146)
|
|
829
|
+
89751, #MS16-028: Security Update for Microsoft Windows PDF Library to Address Remote Code Execution (3143081)
|
|
830
|
+
89752, #MS16-029: Security Update for Microsoft Office to Address Remote Code Execution (3141806)
|
|
831
|
+
89753, #MS16-030: Security Update for Windows OLE to Address Remote Code Execution (3143136)
|
|
832
|
+
89754, #MS16-031: Security Update for Microsoft Windows to Address Elevation of Privilege (3140410)
|
|
833
|
+
89755, #MS16-032: Security Update for Secondary Logon to Address Elevation of Privilege (3143141)
|
|
834
|
+
89756, #MS16-034: Security Update for Windows Kernel-Mode Drivers to Address Elevation of Privilege (3143145)
|
|
835
|
+
89757, #MS16-035: Security Update for .NET Framework to Address Security Feature Bypass (3141780)
|
|
836
|
+
89779, #MS16-033: Security Update for Windows USB Mass Storage Class Driver to Address Elevation of Privilege (3143142)
|
|
837
|
+
89835, #MS16-036: Security Update for Adobe Flash Player (3144756)
|
|
838
|
+
90431, #MS16-037: Cumulative Security Update for Internet Explorer (3148531)
|
|
839
|
+
90432, #MS16-038: Cumulative Security Update for Microsoft Edge (3148532)
|
|
840
|
+
90433, #MS16-039: Security Update for Microsoft Graphics Component (3148522)
|
|
841
|
+
90434, #MS16-040: Security Update for Microsoft XML Core Services (3148541)
|
|
842
|
+
90436, #MS16-042: Security Update for Microsoft Office (3148775)
|
|
843
|
+
90437, #MS16-044: Security Update for Windows OLE (3146706)
|
|
844
|
+
90438, #MS16-045: Security Update for Windows Hyper-V (3143118)
|
|
845
|
+
90439, #MS16-046: Security Update for Secondary Logon (3148538)
|
|
846
|
+
90440, #MS16-047: Security Update for SAM and LSAD Remote Protocols (3148527) (Badlock)
|
|
847
|
+
90441, #MS16-048: Security Update for CSRSS (3148528)
|
|
848
|
+
90442, #MS16-049: Security Update for HTTP.sys (3148795)
|
|
849
|
+
90443, #MS16-050: Security Update for Adobe Flash Player (3154132)
|
|
850
|
+
90510, #MS16-047: Security Update for SAM and LSAD Remote Protocols (3148527) (Badlock) (uncredentialed check)
|
|
851
|
+
91001, #MS16-051: Cumulative Security Update for Internet Explorer (3155533)
|
|
852
|
+
91002, #MS16-052: Cumulative Security Update for Microsoft Edge (3155538)
|
|
853
|
+
91004, #MS16-054: Security Update for Microsoft Office (3155544)
|
|
854
|
+
91005, #MS16-055: Security Update for Microsoft Graphics Component (3156754)
|
|
855
|
+
91006, #MS16-056: Security Update for Windows Journal (3156761)
|
|
856
|
+
91007, #MS16-057: Security Update for Windows Shell (3156987)
|
|
857
|
+
91009, #MS16-059: Security Update for Windows Media Center (3150220)
|
|
858
|
+
91010, #MS16-060: Security Update for Windows Kernel (3154846)
|
|
859
|
+
91011, #MS16-061: Security Update for Microsoft RPC (3155520)
|
|
860
|
+
91012, #MS16-062: Security Update for Windows Kernel-Mode Drivers (3158222)
|
|
861
|
+
91013, #MS16-064: Security Update for Adobe Flash Player (3163207)
|
|
862
|
+
91014, #MS16-065: Security Update for .NET Framework (3156757)
|
|
863
|
+
91015, #MS16-066: Security Update for Virtual Secure Mode (3155451)
|
|
864
|
+
91596, #MS16-063: Cumulative Security Update for Internet Explorer (3163649)
|
|
865
|
+
91600, #MS16-072: Security Update for Group Policy (3163622)
|
|
866
|
+
91601, #MS16-073: Security Update for Windows Kernel-Mode Drivers (3164028)
|
|
867
|
+
91602, #MS16-074: Security Update for Microsoft Graphics Component (3164036)
|
|
868
|
+
91603, #MS16-075: Security Update for Windows SMB Server (3164038)
|
|
869
|
+
91609, #MS16-082: Security Update for Microsoft Windows Search Component (3165270)
|
|
870
|
+
92018, #MS16-087: Security Update for Windows Print Spooler (3170005)
|
|
871
|
+
92021, #MS16-090: Security Update for Windows Kernel-Mode Drivers (3171481)
|
|
872
|
+
92022, #MS16-091: Security Update for .NET Framework (3170048)
|
|
873
|
+
92821, #MS16-098: Security Update for Windows Kernel-Mode Drivers (3178466)
|
|
874
|
+
92823, #MS16-101: Security Update for Windows Authentication Methods (3178465)
|
|
875
|
+
92843, #MS16-097: Security Update for Microsoft Graphics Component (3177393)
|
|
876
|
+
91599, #MS16-071: Security Update for Microsoft Windows DNS Server (3164065)
|
|
877
|
+
93466, #MS16-106: Security Update for Microsoft Graphics Component (3185848)
|
|
878
|
+
93470, #MS16-111: Security Update for Windows Kernel (3186973)
|
|
879
|
+
93473, #MS16-114: Security Update for Windows SMBv1 Server (3185879)
|
|
880
|
+
93651, #MS16-116: Security Update in OLE Automation for VBScript Scripting Engine (3188724)
|
|
881
|
+
93464, #MS16-104: Cumulative Security Update for Internet Explorer (3183038)
|
|
882
|
+
93468, #MS16-109: Security Update for Silverlight (3182373)
|
|
883
|
+
92015, #MS16-084: Cumulative Security Update for Internet Explorer (3169991)
|
|
884
|
+
92819, #MS16-095: Cumulative Security Update for Internet Explorer (3177356)
|
|
885
|
+
91604, #MS16-076: Security Update for Netlogon (3167691)
|
|
886
|
+
90435, #MS16-041: Security Update for .NET Framework (3148789)
|
|
887
|
+
91607, #MS16-080: Security Update for Microsoft Windows PDF (3164302)
|
|
888
|
+
|
|
889
|
+
92023, #MS16-092: Security Update for Windows Kernel (3171910)
|
|
890
|
+
92025, #MS16-094: Security Update for Secure Boot (3177404)
|
|
891
|
+
92822, #MS16-100: Security Update for Secure Boot (3179577)
|
|
892
|
+
92824, #MS16-102: Security Update for Microsoft Windows PDF Library (3182248)
|
|
893
|
+
|
|
894
|
+
93469, #MS16-110: Security Update for Microsoft Windows (3178467)
|
|
895
|
+
93481, #MS16-107: Security Update for Microsoft Office (3185852)
|
|
896
|
+
91605, #MS16-077: Security Update for WPAD (3165191)
|
|
897
|
+
91672, #MS16-083: Security Update for Adobe Flash Player (3167685)
|
|
898
|
+
92024, #MS16-093: Security Update for Adobe Flash Player (3174060)
|
|
899
|
+
93475, #MS16-117: Security Update for Adobe Flash Player (3188128)
|
|
900
|
+
93471, #MS16-112: Security Update for Windows Lock Screen (3178469)
|
|
901
|
+
84762, #MS15-068: Vulnerabilities in Windows Hyper-V Could Allow Remote Code Execution (3072000)
|
|
902
|
+
85331, #MS15-092: Vulnerabilities in .NET Framework Could Allow Elevation of Privilege (3086251)
|
|
903
|
+
81732, #MS KB3044132: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer
|
|
904
|
+
82823, #MS KB3049508: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer
|
|
905
|
+
83369, #MS KB3061904: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer
|
|
906
|
+
84052, #MS KB3065820: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer
|
|
907
|
+
84367, #MS KB3074219: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer
|
|
908
|
+
84645, #MS KB3065823: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer
|
|
909
|
+
84809, #MS KB3079777: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer
|
|
910
|
+
94012, #MS16-123: Security Update for Windows Kernel-Mode Drivers (3192892)
|
|
911
|
+
94017, #MS16-120: Security Update for Microsoft Graphics Component (3192884)
|
|
912
|
+
94011, #MS16-118: Cumulative Security Update for Internet Explorer (3192887)
|
|
913
|
+
94014, #MS16-122: Security Update for Microsoft Video Control (3195360)
|
|
914
|
+
94016, #MS16-121: Security Update for Microsoft Office (3194063)
|
|
915
|
+
49952, #MS10-075: Vulnerability in Media Player Network Sharing Service Could Allow Remote Code Execution (2281679)
|
|
916
|
+
94634, #MS16-133: Security Update for Microsoft Office (3199168)
|
|
917
|
+
55883, #MS11-058: Vulnerabilities in DNS Server Could Allow Remote Code Execution (2562485) (remote check)
|
|
918
|
+
72836, #MS11-058: Vulnerabilities in DNS Server Could Allow Remote Code Execution (2562485) (uncredentialed check)
|
|
919
|
+
95764, #MS16-144: Cumulative Security Update for Internet Explorer (3204059)
|
|
920
|
+
95765, #MS16-146: Security Update for Microsoft Graphics Component (3204066)
|
|
921
|
+
95766, #MS16-147: Security Update for Microsoft Uniscribe (3204063)
|
|
922
|
+
95768, #MS16-151: Security Update for Windows Kernel-Mode Drivers (3205651)
|
|
923
|
+
95811, #MS16-148: Security Update for Microsoft Office (3204068)
|
|
924
|
+
95813, #MS16-149: Security Update for Microsoft Windows (3205655)
|
|
925
|
+
96393, #MS17-004: Security Update for Local Security Authority Subsystem Service (3216771)
|
|
926
|
+
97833, #MS17-010: Security Update for Microsoft Windows SMB Server (4013389) (ETERNALBLUE) (ETERNALCHAMPION) (ETERNALROMANCE) (ETERNALSYNERGY) (WannaCry) (EternalRocks) (Petya) (uncredentialed check)
|
|
927
|
+
97737, #MS17-010: Security Update for Microsoft Windows SMB Server (4013389) (ETERNALBLUE) (ETERNALCHAMPION) (ETERNALROMANCE) (ETERNALSYNERGY) (WannaCry) (EternalRocks) (Petya)
|
|
928
|
+
97743, #MS17-012: Security Update for Microsoft Windows (4013078)
|
|
929
|
+
100051, #MS Security Advisory 4022344: Security Update for Microsoft Malware Protection Engine
|
|
930
|
+
100057, #KB4019215: Windows 8.1 and Windows Server 2012 R2 May 2017 Cumulative Update
|
|
931
|
+
94631, #MS16-130: Security Update for Microsoft Windows (3199172)
|
|
932
|
+
94633, #MS16-132: Security Update for Microsoft Graphics Component (3199120)
|
|
933
|
+
94635, #MS16-134: Security Update for Common Log File System Driver (3193706)
|
|
934
|
+
94636, #MS16-135: Security Update for Windows Kernel-Mode Drivers (3199135)
|
|
935
|
+
94637, #MS16-136: Security Update for SQL Server (3199641)
|
|
936
|
+
94638, #MS16-137: Security Update for Windows Authentication Methods (3199173)
|
|
937
|
+
94639, #MS16-138: Security Update for Microsoft Virtual Hard Disk Driver (3199647)
|
|
938
|
+
94641, #MS16-140: Security Update for Boot Manager (3193479)
|
|
939
|
+
94643, #MS16-142: Cumulative Security Update for Internet Explorer (3198467)
|
|
940
|
+
97729, #MS17-006: Cumulative Security Update for Internet Explorer (4013073)
|
|
941
|
+
97731, #MS17-009: Security Update for Microsoft Windows PDF Library (4010319)
|
|
942
|
+
97732, #MS17-011: Security Update for Microsoft Uniscribe (4013076)
|
|
943
|
+
97733, #MS17-017: Security Update for Windows Kernel (4013081)
|
|
944
|
+
97738, #MS17-018: Security Update for Windows Kernel-Mode Drivers (4013083)
|
|
945
|
+
97794, #MS17-013: Security Update for Microsoft Graphics Component (4013075)
|
|
946
|
+
99312, #KB4015550: Windows 8.1 and Windows Server 2012 R2 April 2017 Cumulative Update
|
|
947
|
+
97740, #MS17-014: Security Update for Microsoft Office (4013241)
|
|
948
|
+
99314, #Security Update for Microsoft Office Products (April 2017) (Petya)
|
|
949
|
+
100103, #Security Update for Microsoft Office Products (May 2017)
|
|
950
|
+
100058, #KB4019264: Windows 7 and Windows 2008 R2 May 2017 Cumulative Update
|
|
951
|
+
97833, #MS17-010: Security Update for Microsoft Windows SMB Server (4013389) (ETERNALBLUE) (ETERNALCHAMPION) (ETERNALROMANCE) (ETERNALSYNERGY) (WannaCry) (EternalRocks) (Petya) (uncredentialed check)
|
|
952
|
+
100761, #KB4022722: Windows 7 and Windows 2008 R2 June 2017 Cumulative Update
|
|
953
|
+
101367, #KB4025341: Windows 7 and Windows 2008 R2 July 2017 Cumulative Update
|
|
954
|
+
100767, #KB4023307: Security Update for the Windows Uniscribe Remote Code Execution Vulnerability for Microsoft Silverlight 5 (June 2017)
|
|
955
|
+
101371, #Security Update for Microsoft Office Products (July 2017)
|
|
956
|
+
102267, #KB4034664: Windows 7 and Windows Server 2008 R2 August 2017 Cumulative Update
|
|
957
|
+
94632, #MS16-131: Security Update for Microsoft Video Control (3199151)
|
|
958
|
+
102035, #Security Updates for Outlook (July 2017)
|
|
959
|
+
99304, #KB4015549: Windows 7 and Windows 2008 R2 April 2017 Cumulative Update (Petya)
|
|
960
|
+
99365, #Security and Quality Rollup for .NET Framework (April 2017)
|
|
961
|
+
100551, #Microsoft Malware Protection Engine < 1.1.13804 Multiple Vulnerabilities
|
|
962
|
+
102270, #KB4034681: Windows 8.1 and Windows Server 2012 R2 August 2017 Cumulative Update
|
|
963
|
+
97734,
|
|
964
|
+
97736,
|
|
965
|
+
97741,
|
|
966
|
+
97742,
|
|
967
|
+
55286, #MS11-048: Vulnerability in SMB Server Could Allow Denial of Service (2536275) - 55286
|
|
968
|
+
58435, #MS12-020: Vulnerabilities in Remote Desktop Could Allow Remote Code Execution (2671387) - 58435
|
|
969
|
+
79638, #MS14-066: Vulnerability in Schannel Could Allow Remote Code Execution (2992611) -
|
|
970
|
+
99286, #KB4015217: Windows 10 1607 April 2017 Cumulative Update -
|
|
971
|
+
100059, #KB4019472: Windows 10 Version 1607 and Windows Server 2016 May 2017 Cumulative Update -
|
|
972
|
+
100760, #KB4022715: Windows 10 Version 1607 and Windows Server 2016 June 2017 Cumulative Update -
|
|
973
|
+
101366, #KB4025339: Windows 10 Version 1607 and Windows Server 2016 July 2017 Cumulative Update -
|
|
974
|
+
97730, #MS17-007: Cumulative Security Update for Microsoft Edge (4013071) - 97730
|
|
975
|
+
94340, #MS16-128: Security Update for Adobe Flash Player (3201860) - 94340
|
|
976
|
+
94630,#MS16-129: Cumulative Security Update for Microsoft Edge (3199057) - 94630
|
|
977
|
+
94642, #MS16-141: Security Update for Adobe Flash Player (3202790) - 94642
|
|
978
|
+
95767,#MS16-150: Security Update for Secure Kernel Mode (3205642) - 95767
|
|
979
|
+
95771, #MS16-154: Security Update for Adobe Flash Player (3209498) - 95771
|
|
980
|
+
95809,#MS16-145: Cumulative Security Update for Microsoft Edge (3204062) - 95809
|
|
981
|
+
96392,#MS17-003: Security Update for Adobe Flash Player (3214628) - 96392
|
|
982
|
+
97325,#MS17-005: Security Update for Adobe Flash Player (4010250) - 97325
|
|
983
|
+
97735,#MS17-023: Security Update for Adobe Flash Player (4014329) - 97735
|
|
984
|
+
99290,#KB4018483: Security update for Adobe Flash Player (April 2017) - 99290
|
|
985
|
+
100062, #KB4020821: Security update for Adobe Flash Player (May 2017) - 100062
|
|
986
|
+
100766, #KB4022730: Security update for Adobe Flash Player (June 2017) - 100766
|
|
987
|
+
101370, #KB4025376: Security update for Adobe Flash Player (July 2017) - 101370
|
|
988
|
+
102266, #KB4034662: Security update for Adobe Flash Player (August 2017) - 102266
|
|
989
|
+
102683, #Microsoft Windows Search Remote Code Execution Vulnerability (CVE-2017-8543) -
|
|
990
|
+
100054, #KB4019214: Windows Server 2012 Standard May 2017 Cumulative Update - 100054
|
|
991
|
+
100762, #KB4022724: Windows Server 2012 Standard June 2017 Cumulative Update - 100762
|
|
992
|
+
100764, #KB4022726: Windows 8.1 and Windows Server 2012 R2 June 2017 Cumulative Update - 100764
|
|
993
|
+
101365, #KB4025336: Windows 8.1 and Windows Server 2012 R2 July 2017 Cumulative Update - 101365
|
|
994
|
+
101375,#KB4025331: Windows Server 2012 July 2017 Cumulative Update - 101375
|
|
995
|
+
102264, #KB4034658: Windows 10 Version 1607 and Windows Server 2016 August 2017 Cumulative Update - 102264
|
|
996
|
+
97745, #MS17-008: Security Update for Windows Hyper-V (4013082) -
|
|
997
|
+
102268, #KB4034665: Windows Server 2012 August 2017 Cumulative Update - 102268
|
|
998
|
+
101027, #Microsoft Malware Protection Engine < 1.1.13903 RCE
|
|
999
|
+
95772, #MS16-155: Security Update for .NET Framework (3205640)
|
|
1000
|
+
96390, #MS17-001: Security Update for Microsoft Edge (3214288)
|
|
1001
|
+
79638, #MS14-066: Vulnerability in Schannel Could Allow Remote Code Execution (2992611) - 79638
|
|
1002
|
+
35362, #MS09-001: Microsoft Windows SMB Vulnerabilities Remote Code Execution (958687) -
|
|
1003
|
+
100763, #KB4022725: Windows 10 Version 1703 June 2017 Cumulative Update
|
|
1004
|
+
103123, #Security Updates for Microsoft Skype for Business and Microsoft Lync and Microsoft Live Meeting (September 2017)
|
|
1005
|
+
103138, #Security Update for Microsoft Office Excel Products (September 2017)
|
|
1006
|
+
103131, #KB4038792: Windows 8.1 and Windows Server 2012 R2 September 2017 Cumulative Update
|
|
1007
|
+
103127, #KB4038777: Windows 7 and Windows Server 2008 R2 September 2017 Cumulative Update
|
|
1008
|
+
103746, #KB4041681: Windows 7 and Windows Server 2008 R2 October 2017 Cumulative Update (KRACK)
|
|
1009
|
+
103220, #KB4038806: Security update for Adobe Flash Player (September 2017)
|
|
1010
|
+
103750, #KB4041693: Windows 8.1 and Windows Server 2012 R2 October 2017 Cumulative Update (KRACK)
|
|
1011
|
+
103924, #KB4049179: Security update for Adobe Flash Player (October 2017)
|
|
1012
|
+
100768, #Security Update for Live Meeting 2007 / Lync 2010 and 2013 / Skype for Business 2016 (June 2017)
|
|
1013
|
+
100782, #Security Update for Microsoft Office Products (June 2017)
|
|
1014
|
+
103122, #Security Updates for Microsoft Publisher Products (September 2017)
|
|
1015
|
+
103133, #Security Updates for Microsoft Office Products (September 2017)
|
|
1016
|
+
103136, #Security Updates for Microsoft Powerpoint Products (September 2017)
|
|
1017
|
+
103456, #Security Updates for Outlook (September 2017)
|
|
1018
|
+
103745, #KB4041676: Windows 10 Version 1703 October 2017 Cumulative Update (KRACK)
|
|
1019
|
+
103752, #Security Updates for Outlook (October 2017)
|
|
1020
|
+
103784, #Security Updates for Microsoft Office Products (October 2017)
|
|
1021
|
+
103876, #Microsoft Windows SMB Server (2017-10) Multiple Vulnerabilities
|
|
1022
|
+
103137, #Security and Quality Rollup for .NET Framework (Sep 2017)
|
|
1023
|
+
100464, #Microsoft Windows SMBv1 Multiple Vulnerabilities
|
|
1024
|
+
40887, #MS09-050: Microsoft Windows SMB2 _Smb2ValidateProviderCallback() Vulnerability (975497) (EDUCATEDSCHOLAR)
|
|
1025
|
+
100791, #Microsoft Security Advisory 4025685: Guidance for older platforms (XP / 2003)
|
|
1026
|
+
104892, #Security Updates for Internet Explorer (June 2017)
|
|
1027
|
+
105552, #KB4056897: Windows 7 and Windows Server 2008 R2 January 2018 Security Update (Meltdown)(Spectre)
|
|
1028
|
+
105546, #Security Updates for Internet Explorer (January 2018)
|
|
1029
|
+
105731, #Security and Quality Rollup for .NET Framework (January 2018)
|
|
1030
|
+
104893, #Security Updates for Internet Explorer (May 2017)
|
|
1031
|
+
99523, #Microsoft Windows Server 2003 IIS 6.0 WebDAV PROPFIND Request Handling RCE
|
|
1032
|
+
105553, #KB4056898: Windows 8.1 and Windows Server 2012 R2 January 2018 Security Update (Meltdown)(Spectre)
|
|
1033
|
+
106800, #KB4074597: Windows 8.1 and Windows Server 2012 R2 February 2018 Security Update
|
|
1034
|
+
106804, #Security Updates for Internet Explorer (February 2018)
|
|
1035
|
+
108291, #KB4088879: Windows 8.1 and Windows Server 2012 R2 March 2018 Security Update
|
|
1036
|
+
104554, #Windows 8.1 and Windows Server 2012 R2 November 2017 Security Updates
|
|
1037
|
+
104890, #Security Updates for Internet Explorer (August 2017)
|
|
1038
|
+
104891, #Security Updates for Internet Explorer (July 2017)
|
|
1039
|
+
104894, #Security Updates for Internet Explorer (November 2017)
|
|
1040
|
+
104895, #Security Updates for Internet Explorer (October 2017)
|
|
1041
|
+
104896, #Security Updates for Internet Explorer (September 2017)
|
|
1042
|
+
105185, #Windows 8.1 and Windows Server 2012 R2 December 2017 Security Updates
|
|
1043
|
+
105188, #Security Updates for Internet Explorer (December 2017)
|
|
1044
|
+
105109, #Microsoft Malware Protection Engine < 1.1.14405.2 RCE
|
|
1045
|
+
104553, #Windows 7 and Windows Server 2008 R2 November 2017 Security Updates
|
|
1046
|
+
105184, #Windows 7 and Windows Server 2008 R2 December 2017 Security Updates
|
|
1047
|
+
106802, #KB4074587: Windows 7 and Windows Server 2008 R2 February 2018 Security Update
|
|
1048
|
+
106804, #Security Updates for Internet Explorer (February 2018)
|
|
1049
|
+
108290, #KB4088878: Windows 7 and Windows Server 2008 R2 March 2018 Security Update
|
|
1050
|
+
108295, #Security Updates for Internet Explorer (March 2018)
|
|
1051
|
+
108757, #KB4100480: Windows Kernel Elevation of Privilege Vulnerability
|
|
1052
|
+
108813, #Microsoft Malware Protection Engine < 1.1.14700.5 RCE
|
|
1053
|
+
108966, #KB4093108: Windows 7 and Windows Server 2008 R2 April 2018 Security Update
|
|
1054
|
+
108971, #Security Updates for Internet Explorer (April 2018)
|
|
1055
|
+
109652, #Security Updates for Microsoft .NET Framework (May 2018)
|
|
1056
|
+
109604, #KB4103712: Windows 7 and Windows Server 2008 R2 May 2018 Security Update
|
|
1057
|
+
109613, #Security Updates for Internet Explorer (May 2018)
|
|
1058
|
+
109605, #KB4103721: Windows 10 Version 1803 May 2018 Security Update
|
|
1059
|
+
110487, #KB4284835: Windows 10 Version 1803 June 2018 Security Update
|
|
1060
|
+
108964, #KB4093112: Windows 10 Version 1709 and Windows Server Version 1709 April 2018 Security Update (Meltdown)(Spectre)
|
|
1061
|
+
109608, #KB4103727: Windows 10 Version 1709 May 2018 Security Update
|
|
1062
|
+
108284, #KB4088776: Windows 10 Version 1709 March 2018 Security Update
|
|
1063
|
+
110485, #KB4284819: Windows 10 Version 1709 June 2018 Security Update
|
|
1064
|
+
104551, #KB4048955: Windows 10 Version 1709 November 2017 Cumulative Update
|
|
1065
|
+
105550, #KB4056892: Windows 10 Version 1709 January 2018 Security Update (Meltdown)(Spectre)
|
|
1066
|
+
106795, #KB4074588: Windows 10 Version 1709 February 2018 Security Update
|
|
1067
|
+
104889, #Security Updates for Internet Explorer (April 2017)
|
|
1068
|
+
110490, #KB4284874: Windows 10 Version 1703 June 2018 Security Update
|
|
1069
|
+
110494, #Security Updates for Internet Explorer (June 2018)
|
|
1070
|
+
105183, #KB4054517: Windows 10 Version 1709 December 2017 Security Update
|
|
1071
|
+
103128, #KB4038782: Windows 10 Version 1607 and Windows Server 2016 September 2017 Cumulative Update
|
|
1072
|
+
103134, #Security Updates for Microsoft Office Compatibility Pack SP3 (September 2017)
|
|
1073
|
+
103751, #Security Updates for Microsoft Office Compatibility Pack SP3 (October 2017)
|
|
1074
|
+
103754, #Security Update for Microsoft Office Word Viewer (October 2017)
|
|
1075
|
+
104558, #Security Updates for Microsoft Office Compatibility SP3 (November 2017)
|
|
1076
|
+
104559, #Security Updates for Microsoft Office Viewer Products (November 2017)
|
|
1077
|
+
110990, #Security Updates for Microsoft .NET Framework (July 2018)
|
|
1078
|
+
111689, #KB4343899: Windows 7 and Windows Server 2008 R2 August 2018 Security Update (Foreshadow)
|
|
1079
|
+
104556, #Security Updates for Microsoft Excel Products (November 2017)
|
|
1080
|
+
104562, #Security Updates for Microsoft Word Products (November 2017)
|
|
1081
|
+
52544, #Microsoft Forefront Endpoint Protection / System Center Endpoint Protection / Anti-malware Client Detection and Status
|
|
1082
|
+
109684, #Security Updates for Exchange (May 2018)
|
|
1083
|
+
111755, #Security Updates for Exchange (August 2018)
|
|
1084
|
+
110994, #Security Updates for Microsoft Word Products (July 2018)
|
|
1085
|
+
108969, #Security Updates for Microsoft Excel Products (April 2018)
|
|
1086
|
+
108972, #Security Updates for Microsoft Office Products (April 2018)
|
|
1087
|
+
109612, #Security Updates for Microsoft Excel Products (May 2018)
|
|
1088
|
+
109614, #Security Updates for Microsoft Office Products (May 2018)
|
|
1089
|
+
109617, #Security Updates for Microsoft Word Products (May 2018)
|
|
1090
|
+
110495, #Security Updates for Microsoft Office Products (June 2018)
|
|
1091
|
+
110499, #Security Updates for Outlook (June 2018)
|
|
1092
|
+
110500, #Security Updates for Microsoft Publisher Products (June 2018)
|
|
1093
|
+
104557, #Security Updates for Microsoft Office Products (November 2017)
|
|
1094
|
+
105189, #Security Updates for Microsoft Office Products (December 2017)
|
|
1095
|
+
105192, #Security Updates for Microsoft Word Products (December 2017)
|
|
1096
|
+
105694, #Security Updates for Microsoft Excel Products (January 2018)
|
|
1097
|
+
105699, #Security Updates for Outlook (January 2018)
|
|
1098
|
+
105700, #Security Updates for Microsoft Word Products (January 2018)
|
|
1099
|
+
105728, #Security Updates for Microsoft Office Products (January 2018)
|
|
1100
|
+
106805, #Security Updates for Microsoft Office Products (February 2018)
|
|
1101
|
+
106807, #Security Updates for Outlook (February 2018)
|
|
1102
|
+
108301, #Security Updates for Microsoft Word Products (March 2018)
|
|
1103
|
+
110982, #KB4338823: Windows 7 and Windows Server 2008 R2 July 2018 Security Update
|
|
1104
|
+
110991, #Security Updates for Internet Explorer (July 2018)
|
|
1105
|
+
111694, #Security Updates for Microsoft Excel Products (August 2018)
|
|
1106
|
+
111696, #Security Updates for Microsoft Office Products (August 2018)
|
|
1107
|
+
111787, #Security Updates for Microsoft Powerpoint Products (August 2018)
|
|
1108
|
+
111685, #KB4343887: Windows 10 Version 1607 and Windows Server 2016 August 2018 Security Update (Foreshadow)
|
|
1109
|
+
111690, #KB4343896: Windows Server 2012 August 2018 Security Update (Foreshadow)
|
|
1110
|
+
103135, #Security Updates for Microsoft Office Viewers (September 2017)
|
|
1111
|
+
103569, #Windows Defender Antimalware/Antivirus Signature Definition Check
|
|
1112
|
+
103749, #KB4041691: Windows 10 Version 1607 and Windows Server 2016 October 2017 Cumulative Update (KRACK)
|
|
1113
|
+
104549, #KB4048953: Windows 10 Version 1607 and Windows Server 2016 November 2017 Cumulative Update
|
|
1114
|
+
111695, #Security Updates for Internet Explorer (August 2018)
|
|
1115
|
+
110486, #KB4284867: Windows 7 and Windows Server 2008 R2 June 2018 Security Update
|
|
1116
|
+
111698, #Security Updates for Microsoft Office Viewer Products / Office Compatibility Products (August 2018)
|
|
1117
|
+
110491, #KB4284880: Windows 10 Version 1607 and Windows Server 2016 June 2018 Security Update
|
|
1118
|
+
110980, #KB4338814: Windows 10 Version 1607 and Windows Server 2016 July 2018 Security Update
|
|
1119
|
+
111008, #Security Updates for Microsoft Office Viewer Products / Office Compatibility Products (July 2018)
|
|
1120
|
+
108967, #KB4093119: Windows 10 Version 1607 and Windows Server 2016 April 2018 Security Update
|
|
1121
|
+
108970, #Security Updates for Microsoft Office Viewer Products (April 2018)
|
|
1122
|
+
108973, #Security Updates for Microsoft Office Compatibility Products (April 2018)
|
|
1123
|
+
109606, #KB4103723: Windows 10 Version 1607 and Windows Server 2016 May 2018 Security Update
|
|
1124
|
+
109615, #Security Updates for Microsoft Office Compatibility Products (May 2018)
|
|
1125
|
+
105695, #Security Updates for Microsoft Office Compatibility SP3 (January 2018)
|
|
1126
|
+
105697, #Security Updates for Microsoft Office Viewer Products (January 2018)
|
|
1127
|
+
106796, #KB4074590: Windows 10 Version 1607 and Windows Server 2016 February 2018 Security Update (Meltdown)(Spectre)
|
|
1128
|
+
106817, #Security Updates for Microsoft Word Viewer (Feburary 2018)
|
|
1129
|
+
108289, #KB4088787: Windows 10 Version 1607 and Windows Server 2016 March 2018 Security Update
|
|
1130
|
+
108292, #KB4088880: Windows Server 2012 March 2018 Security Update (Meltdown)(Spectre)
|
|
1131
|
+
108297, #Security Updates for Microsoft Office Compatibility Products (March 2018)
|
|
1132
|
+
105548, #KB4056890: Windows 10 Version 1607 and Windows Server 2016 January 2018 Security Update (Meltdown)(Spectre)
|
|
1133
|
+
105180, #KB4053579: Windows 10 Version 1607 and Windows Server 2016 December 2017 Security Update
|
|
1134
|
+
100760, #KB4022715: Windows 10 Version 1607 and Windows Server 2016 June 2017 Cumulative Update
|
|
1135
|
+
101366, #KB4025339: Windows 10 Version 1607 and Windows Server 2016 July 2017 Cumulative Update
|
|
1136
|
+
111685, #KB4343887: Windows 10 Version 1607 and Windows Server 2016 August 2018 Security Update (Foreshadow)
|
|
1137
|
+
103132, #Windows Server 2012 September 2017 Security Updates
|
|
1138
|
+
117421, #Security Updates for Microsoft Excel Products (September 2018)
|
|
1139
|
+
117423, #Security Updates for Internet Explorer (September 2018)
|
|
1140
|
+
117418, #KB4457145: Windows 7 and Windows Server 2008 R2 September 2018 Security Update
|
|
1141
|
+
117426, #Security Updates for Microsoft Word Products (September 2018)
|
|
1142
|
+
117411, #KB4457128: Windows 10 Version 1803 September 2018 Security Update
|
|
1143
|
+
111691, #KB4343902: Security update for Adobe Flash Player (August 2018)
|
|
1144
|
+
110984, #KB4338825: Windows 10 Version 1709 July 2018 Security Update
|
|
1145
|
+
111687, #KB4343897: Windows 10 Version 1709 August 2018 Security Update (Foreshadow)
|
|
1146
|
+
117417, #KB4457142: Windows 10 Version 1709 September 2018 Security Update
|
|
1147
|
+
111688, #KB4343888: Windows 8.1 and Windows Server 2012 R2 August 2018 Security Update (Foreshadow)
|
|
1148
|
+
117412, #KB4457143: Windows 8.1 and Windows Server 2012 R2 September 2018 Security Update
|
|
1149
|
+
103748, #Windows Server 2012 October 2017 Security Updates (KRACK)
|
|
1150
|
+
104555, #Windows Server 2012 November 2017 Security Updates
|
|
1151
|
+
105186, #Windows Server 2012 December 2017 Security Updates
|
|
1152
|
+
105554, #KB4056899: Windows Server 2012 January 2018 Security Update
|
|
1153
|
+
106799, #KB4074589: Windows Server 2012 February 2018 Security Update
|
|
1154
|
+
108968, #KB4093122: Windows Server 2012 April 2018 Security Update
|
|
1155
|
+
109610, #KB4103726: Windows Server 2012 May 2018 Security Update
|
|
1156
|
+
110488, #KB4284846: Windows Server 2012 June 2018 Security Update
|
|
1157
|
+
110987, #KB4338820: Windows Server 2012 July 2018 Security Update
|
|
1158
|
+
117424, #Security Updates for Microsoft Office Compatibility Products (September 2018)
|
|
1159
|
+
117415, #KB4457140: Windows Server 2012 September 2018 Security Update
|
|
1160
|
+
117422, #Security Updates for Microsoft Office Viewer Products (September 2018)
|
|
1161
|
+
118001, #KB4462915: Windows 7 and Windows Server 2008 R2 October 2018 Security Update
|
|
1162
|
+
118007, #Security Updates for Microsoft Excel Products (October 2018)
|
|
1163
|
+
118009, #Security Updates for Internet Explorer (October 2018)
|
|
1164
|
+
118010, #Security Updates for Microsoft Office Products (October 2018)
|
|
1165
|
+
118014, #Security Updates for Outlook (October 2018)
|
|
1166
|
+
118015, #Security Updates for Microsoft PowerPoint Products (October 2018)
|
|
1167
|
+
118016, #Security Updates for Microsoft Word Products (October 2018)
|
|
1168
|
+
108962, #KB4093110: Security update for Adobe Flash Player (April 2018)
|
|
1169
|
+
101374, #Windows 2008 July 2017 Multiple Security Updates
|
|
1170
|
+
109609, #KB4103729: Security update for Adobe Flash Player (May 2018)
|
|
1171
|
+
110414, #KB4287903: Security update for Adobe Flash Player (June 2018)
|
|
1172
|
+
110988, #KB4338832: Security update for Adobe Flash Player (July 2018)
|
|
1173
|
+
111700, #Security Updates for Windows Server 2008 (August 2018) (Foreshadow)
|
|
1174
|
+
117998, #KB4462918: Windows 10 Version 1709 and Windows Server Version 1709 October 2018 Security Update
|
|
1175
|
+
119589, #KB4471329: Windows 10 Version 1709 and Windows Server Version 1709 December 2018 Security Update
|
|
1176
|
+
119771, #KB4483232: Windows 10 Version 1709 and Windows Server Version 1709 December 2018 OOB Security Update
|
|
1177
|
+
118915, #KB4467686: Windows 10 Version 1709 and Windows Server Version 1709 November 2018 Security Update
|
|
1178
|
+
119612, #Security Updates for Microsoft .NET Framework (December 2018)
|
|
1179
|
+
121020, #KB4480978: Windows 10 Version 1709 and Windows Server Version 1709 January 2019 Security Update
|
|
1180
|
+
121024, #Security Updates for Microsoft Office Products (January 2019)
|
|
1181
|
+
121028, #Security Updates for Microsoft Word Products (January 2019)
|
|
1182
|
+
117431, #Security Updates for Microsoft .NET Framework (September 2018)
|
|
1183
|
+
121021, #Security Updates for Microsoft .NET Framework (January 2019)
|
|
1184
|
+
121027, #Security Updates for Outlook (January 2019)
|
|
1185
|
+
121035, #Security Updates for Windows 10 / Windows Server 2016 (January 2019) (Spectre)
|
|
1186
|
+
119609, #Security Updates for Microsoft Office Viewer Products (December 2018)
|
|
1187
|
+
119582, #KB4471328: Windows 7 and Windows Server 2008 R2 December 2018 Security Update
|
|
1188
|
+
122234, #Security Updates for Microsoft .NET Framework (February 2019)
|
|
1189
|
+
118913, #KB4467106: Windows 7 and Windows Server 2008 R2 November 2018 Security Update
|
|
1190
|
+
121017, #KB4480960: Windows 7 and Windows Server 2008 R2 January 2019 Security Update
|
|
1191
|
+
122118, #KB4486564: Windows 7 and Windows Server 2008 R2 February 2019 Security Update
|
|
1192
|
+
122782, #KB4489885: Windows 7 and Windows Server 2008 R2 March 2019 Security Update
|
|
1193
|
+
118922, #Security Updates for Internet Explorer (November 2018)
|
|
1194
|
+
119594, #Security Updates for Internet Explorer (December 2018)
|
|
1195
|
+
119774, #Security Updates for Internet Explorer (December 2018 OOB)
|
|
1196
|
+
121023, #Security Updates for Internet Explorer (January 2019)
|
|
1197
|
+
122131, #Security Updates for Internet Explorer (February 2019)
|
|
1198
|
+
122789, #Security Updates for Internet Explorer (March 2019)
|
|
1199
|
+
122317, #Security Updates for Microsoft Office Viewers And Compatibility Products (February 2019)
|
|
1200
|
+
111692, #KB4343909: Windows 10 Version 1803 and Windows Server Version 1803 August 2018 Security Update (Foreshadow)
|
|
1201
|
+
119463, #KB4471331: Security update for Adobe Flash Player (December 2018)
|
|
1202
|
+
119587, #KB4471319: Windows Server 2008 December 2018 Security Update
|
|
1203
|
+
119772, #KB4483234: Windows 10 Version 1803 and Windows Server Version 1803 December 2018 OOB Security Update
|
|
1204
|
+
119095, #KB4477029: Security update for Adobe Flash Player (November 2018)
|
|
1205
|
+
100785, #Microsoft Security Advisory 4025685: Windows Vista (June 2017)
|
|
1206
|
+
118920, #KB4467700: Windows Server 2008 November 2018 Security Update
|
|
1207
|
+
118921, #Security Updates for Microsoft Excel Products (November 2018)
|
|
1208
|
+
118923, #Security Updates for Microsoft Office Products (November 2018)
|
|
1209
|
+
118928, #Security Updates for Outlook (November 2018)
|
|
1210
|
+
118930, #Security Updates for Microsoft Word Products (November 2018)
|
|
1211
|
+
119592, #Security Updates for Microsoft Excel Products (December 2018)
|
|
1212
|
+
119595, #Security Updates for Microsoft Office Products (December 2018)
|
|
1213
|
+
119598, #Security Updates for Outlook (December 2018)
|
|
1214
|
+
119599, #Security Updates for Microsoft PowerPoint Products (December 2018)
|
|
1215
|
+
121015, #KB4480966: Windows 10 Version 1803 and Windows Server Version 1803 January 2019 Security Update
|
|
1216
|
+
121016, #KB4480957: Windows Server 2008 January 2019 Security Update
|
|
1217
|
+
122121, #KB4487017: Windows 10 Version 1803 and Windows Server Version 1803 February 2019 Security Update
|
|
1218
|
+
122123, #KB4487019: Windows Server 2008 February 2019 Security Update
|
|
1219
|
+
122132, #Security Updates for Microsoft Office Products (February 2019)
|
|
1220
|
+
122779, #KB4489868: Windows 10 Version 1803 and Windows Server Version 1803 March 2019 Security Update
|
|
1221
|
+
122783, #KB4489876: Windows Server 2008 March 2019 Security Update
|
|
1222
|
+
104045, #KB4020535: Security Update for the Scripting Engine Memory Corruption Vulnerability (May 2017)
|
|
1223
|
+
110989, #Security Updates for Microsoft Access Products (July 2018)
|
|
1224
|
+
117458, #Security Updates for Microsoft Office Products (September 2018)
|
|
1225
|
+
118005, #KB4463104: Windows Server 2008 October 2018 Security Update
|
|
1226
|
+
122974, #Security Updates for Windows 10 / Windows Server 2019 (February 2019) (Spectre) (Meltdown) (Foreshadow)
|
|
1227
|
+
122975, #Security Updates for Windows 10 / Windows Server 2016 / Windows Server 2019 (March 2019) (Spectre) (Meltdown) (Foreshadow)
|
|
1228
|
+
119583, #KB4471322: Windows 8.1 and Windows Server 2012 R2 December 2018 Security Update
|
|
1229
|
+
110484, #KB4284878: Windows 8.1 and Windows Server 2012 R2 June 2018 Security Update
|
|
1230
|
+
110981, #KB4338824: Windows 8.1 and Windows Server 2012 R2 July 2018 Security Update
|
|
1231
|
+
118002, #KB4462941: Windows 8.1 and Windows Server 2012 R2 October 2018 Security Update
|
|
1232
|
+
118918, #KB4467703: Windows 8.1 and Windows Server 2012 R2 November 2018 Security Update
|
|
1233
|
+
121014, #KB4480964: Windows 8.1 and Windows Server 2012 R2 January 2019 Security Update
|
|
1234
|
+
122120, #KB4487028: Windows 8.1 and Windows Server 2012 R2 February 2019 Security Update
|
|
1235
|
+
122784, #KB4489883: Windows 8.1 and Windows Server 2012 R2 March 2019 Security Update
|
|
1236
|
+
123942, #KB4493464: Windows 10 Version 1803 and Windows Server Version 1803 April 2019 Security Update
|
|
1237
|
+
123945, #KB4493448: Windows 7 and Windows Server 2008 R2 April 2019 Security Update
|
|
1238
|
+
123949, #Security Updates for Microsoft Excel Products (April 2019)
|
|
1239
|
+
123952, #Security Updates for Microsoft Office Products (April 2019)
|
|
1240
|
+
118012, #Security Updates for Microsoft Office Viewer Products / Office Compatibility Products (October 2018)
|
|
1241
|
+
121025, #Security Updates for Microsoft Office Viewer Products (January 2019)
|
|
1242
|
+
123940, #KB4493467: Windows 8.1 and Windows Server 2012 R2 April 2019 Security Update
|
|
1243
|
+
123950, #KB4493478: Security update for Adobe Flash Player (April 2019)
|
|
1244
|
+
123951, #Security Updates for Internet Explorer (April 2019)
|
|
1245
|
+
125313, #Microsoft RDP RCE (CVE-2019-0708)
|
|
1246
|
+
119586, #KB4471324: Windows 10 Version 1803 and Windows Server Version 1803 December 2018 Security Update
|
|
1247
|
+
122819, #KB4467702: Windows 10 Version 1803 and Windows Server Version 1803 November 2018 Security Update
|
|
1248
|
+
124117, #Microsoft Windows 10 Version 1709 Unsupported Version Detection
|
|
1249
|
+
125073, #Microsoft Security Advisory 4500331: Guidance for older platforms (XP / 2003) (BlueKeep)
|
|
1250
|
+
125822, #KB4503286: Windows 10 Version 1803 June 2019 Security Update
|
|
1251
|
+
125064, #KB4499167: Windows 10 Version 1803 and Windows Server Version 1803 May 2019 Security Update (MDSUM/RIDL) (MFBDS/RIDL/ZombieLoad) (MLPDS/RIDL) (MSBDS/Fallout)
|
|
1252
|
+
125820, #KB4503284: Windows 10 Version 1709 June 2019 Security Update
|
|
1253
|
+
117999, #KB4462919: Windows 10 Version 1803 and Windows Server Version 1803 October 2018 Security Update
|
|
1254
|
+
125818, #KB4503290: Windows 8.1 and Windows Server 2012 R2 June 2019 Security Update
|
|
1255
|
+
110983, #KB4338819: Windows 10 Version 1803 and Windows Server Version 1803 July 2018 Security Update
|
|
1256
|
+
122119, #KB4486996: Windows 10 Version 1709 and Windows Server Version 1709 February 2019 Security Update
|
|
1257
|
+
122786, #KB4489886: Windows 10 Version 1709 and Windows Server Version 1709 March 2019 Security Update
|
|
1258
|
+
123939, #KB4493441: Windows 10 Version 1709 and Windows Server Version 1709 April 2019 Security Update
|
|
1259
|
+
125828, #Security Updates for Internet Explorer (June 2019)
|
|
1260
|
+
125066, #KB4499179: Windows 10 Version 1709 and Windows Server Version 1709 May 2019 Security Update (MDSUM/RIDL) (MFBDS/RIDL/ZombieLoad) (MLPDS/RIDL) (MSBDS/Fallout)
|
|
1261
|
+
125069, #Security Updates for Internet Explorer (May 2019)
|
|
1262
|
+
125824, #KB4503269: Windows 7 and Windows Server 2008 R2 June 2019 Security Update
|
|
1263
|
+
125061, #KB4499165: Windows 8.1 and Windows Server 2012 R2 May 2019 Security Update (MDSUM/RIDL) (MFBDS/RIDL/ZombieLoad) (MLPDS/RIDL) (MSBDS/Fallout)
|
|
1264
|
+
109607, #KB4103715: Windows 8.1 and Windows Server 2012 R2 May 2018 Security Update
|
|
1265
|
+
125063, #KB4499175: Windows 7 and Windows Server 2008 R2 May 2019 Security Update (MDSUM/RIDL) (MFBDS/RIDL/ZombieLoad) (MLPDS/RIDL) (MSBDS/Fallout) (BlueKeep)
|
|
1266
|
+
125817, #KB4503287: Windows Server 2008 June 2019 Security Update
|
|
1267
|
+
125816, #KB4503267: Windows 10 Version 1607 and Windows Server 2016 June 2019 Security Update
|
|
1268
|
+
125058, #KB4494440: Windows 10 Version 1607 and Windows Server 2016 May 2019 Security Update (MDSUM/RIDL) (MFBDS/RIDL/ZombieLoad) (MLPDS/RIDL) (MSBDS/Fallout)
|
|
1269
|
+
112116, #Security Updates for Windows 10 / Windows Server 2016 (August 2018) (Spectre) (Meltdown)
|
|
1270
|
+
127843, #KB4512489: Windows 8.1 and Windows Server 2012 R2 August 2019 Security Update
|
|
1271
|
+
127846, #KB4512486: Windows 7 and Windows Server 2008 R2 August 2019 Security Update
|
|
1272
|
+
127850, #KB4512517: Windows 10 Version 1607 and Windows Server 2016 August 2019 Security Update
|
|
1273
|
+
126600, #Security Updates for Microsoft .NET Framework (July 2019)
|
|
1274
|
+
126570, #KB4507457: Windows 8.1 and Windows Server 2012 R2 July 2019 Security Update (SWAPGS)
|
|
1275
|
+
126571, #KB4507456: Windows 7 and Windows Server 2008 R2 July 2019 Security Update (SWAPGS)
|
|
1276
|
+
126582, #Security Updates for Internet Explorer (July 2019)
|
|
1277
|
+
108965, #KB4093115: Windows 8.1 and Windows Server 2012 R2 April 2018 Security Update
|
|
1278
|
+
122785, #KB4489882: Windows 10 Version 1607 and Windows Server 2016 March 2019 Security Update
|
|
1279
|
+
123943, #KB4493470: Windows 10 Version 1607 and Windows Server 2016 April 2019 Security Update
|
|
1280
|
+
126577, #KB4507460: Windows 10 Version 1607 and Windows Server 2016 July 2019 Security Update (SWAPGS)
|
|
1281
|
+
125074, #Security Updates for Microsoft .NET Framework (May 2019)
|
|
1282
|
+
86818, #MS KB3108638: Update for Windows Hyper-V to Address CPU Weakness
|
|
1283
|
+
86830, #MS15-120: Security Update for IPSec to Address Denial of Service (3102939)
|
|
1284
|
+
88652, #MS16-020: Security Update for Active Directory Federation Services to Address Denial of Service (3134222)
|
|
1285
|
+
91016, #MS16-067: Security Update for Volume Manager Driver (3155784)
|
|
1286
|
+
91045, #MS KB3155527: Update to Cipher Suites for FalseStart
|
|
1287
|
+
93474, #MS16-115: Security Update for Microsoft Windows PDF Library (3188733)
|
|
1288
|
+
63643, #MS13-006: Vulnerability in Microsoft Windows Could Allow Security Feature Bypass (2785220)
|
|
1289
|
+
99289, #KB4017094: Security Update for the libjpeg Information Disclosure Vulnerability for Microsoft Silverlight 5 (April 2017)
|
|
1290
|
+
127852, #Security Updates for Internet Explorer (August 2019)
|
|
1291
|
+
111693, #Security Updates for Microsoft .NET Framework (August 2018)
|
|
1292
|
+
80495, #MS15-006: Vulnerability in Windows Error Reporting Could Allow Security Feature Bypass (3004365)
|
|
1293
|
+
82778, #MS15-042: Vulnerability in Windows Hyper-V Could Allow Denial of Service (3047234)
|
|
1294
|
+
85848, #MS15-105: Vulnerability in Windows Hyper-V Could Allow Security Feature Bypass (3091287)
|
|
1295
|
+
94013, #MS16-124: Security Update for Windows Registry (3193227)
|
|
1296
|
+
95770, #MS16-153: Security Update for Common Log File System Driver (3207328)
|
|
1297
|
+
128647, #Security Updates for Internet Explorer (September 2019)
|
|
1298
|
+
127910, #Microsoft Defender Elevation of Privilege Vulnerability (CVE-2019-1161)
|
|
1299
|
+
128637, #KB4516044: Windows 10 Version 1607 and Windows Server 2016 September 2019 Security Update
|
|
1300
|
+
128640, #KB4516033: Windows 7 and Windows Server 2008 R2 September 2019 Security Update
|
|
1301
|
+
130909, #KB4525250: Windows 8.1 and Windows Server 2012 R2 November 2019 Security Update
|
|
1302
|
+
130912, #Security Updates for Internet Explorer (November 2019)
|
|
1303
|
+
130906, #KB4525236: Windows 10 Version 1607 and Windows Server 2016 November 2019 Security Update
|
|
1304
|
+
|
|
1305
|
+
]
|
|
1306
|
+
}
|
|
1307
|
+
end
|
|
1308
|
+
end
|
|
1309
|
+
end
|
|
1310
|
+
end
|
|
1311
|
+
end
|
|
1312
|
+
end
|