diff --git a/updater/fetchers/debian/debian.go b/updater/fetchers/debian/debian.go index a8e6fb9e..b566c89c 100644 --- a/updater/fetchers/debian/debian.go +++ b/updater/fetchers/debian/debian.go @@ -143,8 +143,8 @@ func parseDebianJSON(data *jsonData) (vulnerabilities []database.Vulnerability, continue } - // Skip if the status is not determined. - if releaseNode.Status == "undetermined" { + // Skip if the status is not determined or the vulnerability is a temporary one. + if !strings.HasPrefix(vulnName, "CVE-") || releaseNode.Status == "undetermined" { continue }