-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
03-export-tables-vulnerable-by-age.ps1
46 lines (38 loc) · 1.19 KB
/
03-export-tables-vulnerable-by-age.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
$vulnerableByAge = @()
$byAge = @()
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)
{
$vulnerableByAge += ([int](((Get-Date) - $extension.lastUpdated).TotalDays / 30)).ToString("000")
}
$byAge += ([int](((Get-Date) - $extension.lastUpdated).TotalDays / 30)).ToString("000")
}
write-host "by months old"
$byAge | Group-Object | Sort-Object -Property Name
write-host "vulnerable months old"
$vulnerableByAge | Group-Object | Sort-Object -Property Name
write-host "of $($report.extensions.count)"