Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Detecting-the-patch-of-CVE-2018-1010 — C++ utility that checks Windows OS version and detects whether the patch for CVE-2018-1010 is installed using systeminfo and wmic commands. | Kitploit
Tools/GitHubGitHub/ymgh96/detecting-the-patch-of-cve-2018-1010
Vulnerability AnalysisConfiguration AuditingInformation Gathering
GitHubymgh96/detecting-the-patch-of-cve-2018-1010

Detecting-the-patch-of-CVE-2018-1010

C++ utility that checks Windows OS version and detects whether the patch for CVE-2018-1010 is installed using systeminfo and wmic commands.

View Repository
28 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Detecting-the-patch-of-CVE-2018-1010

This C++ code developed on Visual Studio 2017. This program works with cmd's commands.
In this program first, we check your operating system version and then according to Microsoft's notification checks whether you have installed the patch for CVE-2018-1010 vulnerability with your Windows or not.
you can test this code with the following commands in windows:

  1. checking OS version:
    systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
  2. checking the installation of patch:
    wmic qfe | find "the_number_of_desired_patch"
Download Tool