Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Identifying Master KB Number #7

Closed
ir8d0g opened this issue Apr 19, 2017 · 1 comment
Closed

Identifying Master KB Number #7

ir8d0g opened this issue Apr 19, 2017 · 1 comment

Comments

@ir8d0g
Copy link

ir8d0g commented Apr 19, 2017

I welcome being mistaken, but it doesn't appear that the master KB is attainable unless I scrape it out of the URL field of the "Known Issue" property of a vulnerability remediation.

Is there an easier way to get the master KB?

@filiphhh
Copy link

The KB number is specified in a the Description field of the remediation.

The following will list all KB numbers contained within an update:

$Update = Get-MsrcSecurityUpdate -After (Get-Date).AddMonth(-1)
(Get-MsrcCvrfDocument -Id $Update).Vulnerability.Remediations.Description.Value |? {$_ -Match '^\d+$'} | Select -Unique | Sort-object |% {"KB$_"}

mdressman pushed a commit that referenced this issue Feb 10, 2021
Merge pull request #83 from p0w3rsh3ll/master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants