bitsadmin / wesng

Windows Exploit Suggester - Next Generation
BSD 3-Clause "New" or "Revised" License
4.13k stars 554 forks source link

all impacts #57

Closed hamhicham closed 3 years ago

hamhicham commented 3 years ago

are there any other impact? i just know the execution of remote code

bitsadmin commented 3 years ago

The different impacts are obtained from the MSRC API. See below how to discover the different values using PowerShell.

PS C:\> Expand-Archive .\definitions.zip
PS C:\> $csv = Import-Csv CVEs_20210812.csv
PS C:\> $csv | group Impact | sort -Descending Count | ft Name,Count

Name                     Count
----                     -----
Remote Code Execution   123077
Elevation of Privilege   70113
Information Disclosure   36555
Denial of Service         9932
Security Feature Bypass   6116
Spoofing                  3118
Tampering                  696
Defense in Depth           331
                           165
System.Object[]              4

PS C:\> 

Hope that answers your question!