chore(deps): update dictionary (#1708)

This commit is contained in:
MaineK00n
2023-10-17 23:04:27 +09:00
committed by GitHub
parent 57264e1765
commit 1a55cafc91
7 changed files with 202 additions and 167 deletions

View File

@@ -302,8 +302,14 @@ func (ms Microsoft) DetectCVEs(r *models.ScanResult, _ bool) (nCVEs int, err err
// ConvertToModel converts gost model to vuls model
func (ms Microsoft) ConvertToModel(cve *gostmodels.MicrosoftCVE) (*models.CveContent, []models.Mitigation) {
slices.SortFunc(cve.Products, func(i, j gostmodels.MicrosoftProduct) bool {
return i.ScoreSet.Vector < j.ScoreSet.Vector
slices.SortFunc(cve.Products, func(i, j gostmodels.MicrosoftProduct) int {
if i.ScoreSet.Vector < j.ScoreSet.Vector {
return -1
}
if i.ScoreSet.Vector > j.ScoreSet.Vector {
return +1
}
return 0
})
v3score := 0.0