feat(detector/cve): new support for fortinet data feed (#1736)

This commit is contained in:
MaineK00n
2023-09-25 16:19:10 +09:00
committed by GitHub
parent 048e204b33
commit 78b52d6a7f
9 changed files with 186 additions and 97 deletions

View File

@@ -365,6 +365,9 @@ const (
// Jvn is Jvn
Jvn CveContentType = "jvn"
// Fortinet is Fortinet
Fortinet CveContentType = "fortinet"
// RedHat is RedHat
RedHat CveContentType = "redhat"
@@ -418,6 +421,7 @@ type CveContentTypes []CveContentType
var AllCveContetTypes = CveContentTypes{
Nvd,
Jvn,
Fortinet,
RedHat,
RedHatAPI,
Debian,