-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path03-export-tables-vulnerable-by-rating.ps1
46 lines (38 loc) · 1.22 KB
/
03-export-tables-vulnerable-by-rating.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# vulnerability kinds
# vulnerability kinds
$cacheFile = "report.json"
$report = (Get-Content -raw -Path $cacheFile) | ConvertFrom-Json -AsHashtable
$vulnerableByRating = @()
$byRating = @()
foreach ($extension in $report.extensions)
{
if ( -not (
($extension.executionHandlers -contains "Node") -or
($extension.executionHandlers -contains "Node10") -or
($extension.executionHandlers -contains "Node16")
))
{
continue;
}
$vulnerable = $false
foreach ($task in $extension.tasks)
{
foreach ($version in $task.versions) {
if (($version.vulnerableDependencies) -or
($version.codescanResults))
{
$vulnerable = $true
}
}
}
if ($vulnerable)
{
$vulnerableByRating += [Math]::Round($extension.rating, [System.MidpointRounding]::AwayFromZero)
}
$byRating += [Math]::Round($extension.rating, [System.MidpointRounding]::AwayFromZero)
}
write-host "by rating"
$byRating | Group-Object | Sort-Object -Property Name -Descending
write-host "vulnerable-by-rating"
$vulnerableByRating | Group-Object | Sort-Object -Property Name -Descending
write-host "of $($report.extensions.count)"