Files
vuls/models/utils.go
2023-12-08 19:36:26 +09:00

181 lines
4.5 KiB
Go

//go:build !scanner
// +build !scanner
package models
import (
"fmt"
"strings"
cvedict "github.com/vulsio/go-cve-dictionary/models"
)
// ConvertJvnToModel convert JVN to CveContent
func ConvertJvnToModel(cveID string, jvns []cvedict.Jvn) []CveContent {
cves := []CveContent{}
for _, jvn := range jvns {
// cpes := []Cpe{}
// for _, c := range jvn.Cpes {
// cpes = append(cpes, Cpe{
// FormattedString: c.FormattedString,
// URI: c.URI,
// })
// }
refs := []Reference{}
for _, r := range jvn.References {
refs = append(refs, Reference{
Link: r.Link,
Source: r.Source,
})
}
cve := CveContent{
Type: Jvn,
CveID: cveID,
Title: jvn.Title,
Summary: jvn.Summary,
Cvss2Score: jvn.Cvss2.BaseScore,
Cvss2Vector: jvn.Cvss2.VectorString,
Cvss2Severity: jvn.Cvss2.Severity,
Cvss3Score: jvn.Cvss3.BaseScore,
Cvss3Vector: jvn.Cvss3.VectorString,
Cvss3Severity: jvn.Cvss3.BaseSeverity,
SourceLink: jvn.JvnLink,
// Cpes: cpes,
References: refs,
Published: jvn.PublishedDate,
LastModified: jvn.LastModifiedDate,
}
cves = append(cves, cve)
}
return cves
}
// ConvertNvdToModel convert NVD to CveContent
func ConvertNvdToModel(cveID string, nvds []cvedict.Nvd) ([]CveContent, []Exploit, []Mitigation) {
cves := []CveContent{}
refs := []Reference{}
exploits := []Exploit{}
mitigations := []Mitigation{}
for _, nvd := range nvds {
// cpes := []Cpe{}
// for _, c := range nvd.Cpes {
// cpes = append(cpes, Cpe{
// FormattedString: c.FormattedString,
// URI: c.URI,
// })
// }
for _, r := range nvd.References {
var tags []string
if 0 < len(r.Tags) {
tags = strings.Split(r.Tags, ",")
}
refs = append(refs, Reference{
Link: r.Link,
Source: r.Source,
Tags: tags,
})
if strings.Contains(r.Tags, "Exploit") {
exploits = append(exploits, Exploit{
//TODO Add const to here
// https://github.com/vulsio/go-exploitdb/blob/master/models/exploit.go#L13-L18
ExploitType: "nvd",
URL: r.Link,
})
}
if strings.Contains(r.Tags, "Mitigation") {
mitigations = append(mitigations, Mitigation{
CveContentType: Nvd,
URL: r.Link,
})
}
}
desc := []string{}
for _, d := range nvd.Descriptions {
desc = append(desc, d.Value)
}
m := map[string]CveContent{}
for _, cwe := range nvd.Cwes {
c := m[cwe.Source]
c.CweIDs = append(c.CweIDs, cwe.CweID)
m[cwe.Source] = c
}
for _, cvss2 := range nvd.Cvss2 {
c := m[cvss2.Source]
c.Cvss2Score = cvss2.BaseScore
c.Cvss2Vector = cvss2.VectorString
c.Cvss2Severity = cvss2.Severity
m[cvss2.Source] = c
}
for _, cvss3 := range nvd.Cvss3 {
c := m[cvss3.Source]
c.Cvss3Score = cvss3.BaseScore
c.Cvss3Vector = cvss3.VectorString
c.Cvss3Severity = cvss3.BaseSeverity
m[cvss3.Source] = c
}
for source, cont := range m {
cves = append(cves, CveContent{
Type: Nvd,
CveID: cveID,
Summary: strings.Join(desc, "\n"),
Cvss2Score: cont.Cvss2Score,
Cvss2Vector: cont.Cvss2Vector,
Cvss2Severity: cont.Cvss2Severity,
Cvss3Score: cont.Cvss3Score,
Cvss3Vector: cont.Cvss3Vector,
Cvss3Severity: cont.Cvss3Severity,
SourceLink: fmt.Sprintf("https://nvd.nist.gov/vuln/detail/%s", cveID),
// Cpes: cpes,
CweIDs: cont.CweIDs,
References: refs,
Published: nvd.PublishedDate,
LastModified: nvd.LastModifiedDate,
Optional: map[string]string{"source": source},
})
}
}
return cves, exploits, mitigations
}
// ConvertFortinetToModel convert Fortinet to CveContent
func ConvertFortinetToModel(cveID string, fortinets []cvedict.Fortinet) []CveContent {
cves := []CveContent{}
for _, fortinet := range fortinets {
refs := []Reference{}
for _, r := range fortinet.References {
refs = append(refs, Reference{
Link: r.Link,
Source: r.Source,
})
}
cweIDs := []string{}
for _, cid := range fortinet.Cwes {
cweIDs = append(cweIDs, cid.CweID)
}
cve := CveContent{
Type: Fortinet,
CveID: cveID,
Title: fortinet.Title,
Summary: fortinet.Summary,
Cvss3Score: fortinet.Cvss3.BaseScore,
Cvss3Vector: fortinet.Cvss3.VectorString,
SourceLink: fortinet.AdvisoryURL,
CweIDs: cweIDs,
References: refs,
Published: fortinet.PublishedDate,
LastModified: fortinet.LastModifiedDate,
}
cves = append(cves, cve)
}
return cves
}