{"uuid": "62124af3-a033-4200-881c-4f6249e29e8d", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-0000-0000", "type": "seen", "source": "https://gist.github.com/tu-trinh-scale/d7f43279e0916c2dae67dd88be0af0cb", "content": "diff --git a/README.md b/README.md\nindex 57102d1..6b1b437 100644\n--- a/README.md\n+++ b/README.md\n@@ -90,8 +90,14 @@ Vuls is a tool created to solve the problems listed above. It has the following\n   - [US-CERT](https://www.us-cert.gov/ncas/alerts)\n   - [JPCERT](http://www.jpcert.or.jp/at/2019.html)\n \n-- CISA(Cybersecurity &amp; Infrastructure Security Agency)\n-  - [Known Exploited Vulnerabilities Catalog](https://www.cisa.gov/known-exploited-vulnerabilities-catalog)\n+- Known Exploited Vulnerabilities\n+  - [CISA Known Exploited Vulnerabilities Catalog](https://www.cisa.gov/known-exploited-vulnerabilities-catalog)\n+  - VulnCheck KEV data via go-kev\n+\n+Example configuration and output:\n+\n+- `config.toml.example` shows a synthetic, ready-to-use KEV-enabled setup using placeholder values.\n+- `docs/sample-kev-scan-result.json` shows the `kevs` field populated with synthetic CISA and VulnCheck entries.\n \n - Cyber Threat Intelligence(MITRE ATT&amp;CK and CAPEC)\n   - [mitre/cti](https://github.com/mitre/cti)\ndiff --git a/config.toml.example b/config.toml.example\nnew file mode 100644\nindex 0000000..9abfc3d\n--- /dev/null\n+++ b/config.toml.example\n@@ -0,0 +1,42 @@\n+# Synthetic example configuration for enabling KEV reporting.\n+# Do not paste production credentials into this file.\n+\n+[cveDict]\n+type = \"sqlite3\"\n+sqlite3Path = \"/var/lib/vuls/cve.sqlite3\"\n+\n+[ovalDict]\n+type = \"sqlite3\"\n+sqlite3Path = \"/var/lib/vuls/oval.sqlite3\"\n+\n+[gost]\n+type = \"sqlite3\"\n+sqlite3Path = \"/var/lib/vuls/gost.sqlite3\"\n+\n+[exploit]\n+type = \"sqlite3\"\n+sqlite3Path = \"/var/lib/vuls/go-exploitdb.sqlite3\"\n+\n+[metasploit]\n+type = \"sqlite3\"\n+sqlite3Path = \"/var/lib/vuls/go-msfdb.sqlite3\"\n+\n+[kevuln]\n+type = \"sqlite3\"\n+sqlite3Path = \"/var/lib/vuls/go-kev.sqlite3\"\n+\n+[cti]\n+type = \"sqlite3\"\n+sqlite3Path = \"/var/lib/vuls/go-cti.sqlite3\"\n+\n+[default]\n+port = \"22\"\n+user = \"vuls\"\n+scanMode = [\"fast-root\"]\n+scanModules = [\"ospkg\", \"port\"]\n+\n+[servers]\n+\n+[servers.example-host]\n+host = \"192.0.2.10\"\n+memo = \"Synthetic example target\"\ndiff --git a/detector/kevuln.go b/detector/kevuln.go\nindex 41afdfe..f2f2f6b 100644\n--- a/detector/kevuln.go\n+++ b/detector/kevuln.go\n@@ -6,6 +6,7 @@ package detector\n import (\n \t\"encoding/json\"\n \t\"net/http\"\n+\t\"strings\"\n \t\"time\"\n \n \t\"github.com/cenkalti/backoff\"\n@@ -79,18 +80,14 @@ func FillWithKEVuln(r *models.ScanResult, cnf config.KEVulnConf, logOpts logging\n \t\t\t\treturn err\n \t\t\t}\n \n-\t\t\talerts := []models.Alert{}\n-\t\t\tif len(kevulns) &gt; 0 {\n-\t\t\t\talerts = append(alerts, models.Alert{\n-\t\t\t\t\tTitle: \"Known Exploited Vulnerabilities Catalog\",\n-\t\t\t\t\tURL:   \"https://www.cisa.gov/known-exploited-vulnerabilities-catalog\",\n-\t\t\t\t\tTeam:  \"cisa\",\n-\t\t\t\t})\n+\t\t\tkevs, err := convertKEVulns(kevulns)\n+\t\t\tif err != nil {\n+\t\t\t\treturn err\n \t\t\t}\n \n \t\t\tv, ok := r.ScannedCves[res.request.cveID]\n-\t\t\tif ok {\n-\t\t\t\tv.AlertDict.CISA = alerts\n+\t\t\tif ok &amp;&amp; len(kevs) &gt; 0 {\n+\t\t\t\tv.KEVs = kevs\n \t\t\t\tnKEV++\n \t\t\t}\n \t\t\tr.ScannedCves[res.request.cveID] = v\n@@ -108,17 +105,15 @@ func FillWithKEVuln(r *models.ScanResult, cnf config.KEVulnConf, logOpts logging\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\talerts := []models.Alert{}\n-\t\t\tif len(kevulns) &gt; 0 {\n-\t\t\t\talerts = append(alerts, models.Alert{\n-\t\t\t\t\tTitle: \"Known Exploited Vulnerabilities Catalog\",\n-\t\t\t\t\tURL:   \"https://www.cisa.gov/known-exploited-vulnerabilities-catalog\",\n-\t\t\t\t\tTeam:  \"cisa\",\n-\t\t\t\t})\n+\t\t\tkevs, err := convertKEVulns(kevulns)\n+\t\t\tif err != nil {\n+\t\t\t\treturn err\n \t\t\t}\n \n-\t\t\tvuln.AlertDict.CISA = alerts\n-\t\t\tnKEV++\n+\t\t\tif len(kevs) &gt; 0 {\n+\t\t\t\tvuln.KEVs = kevs\n+\t\t\t\tnKEV++\n+\t\t\t}\n \t\t\tr.ScannedCves[cveID] = vuln\n \t\t}\n \t}\n@@ -127,6 +122,222 @@ func FillWithKEVuln(r *models.ScanResult, cnf config.KEVulnConf, logOpts logging\n \treturn nil\n }\n \n+func convertKEVulns(kevulns []kevulnmodels.KEVuln) ([]models.KEV, error) {\n+\tkevs := []models.KEV{}\n+\tfor _, kevuln := range kevulns {\n+\t\tb, err := json.Marshal(kevuln)\n+\t\tif err != nil {\n+\t\t\treturn nil, xerrors.Errorf(\"Failed to marshal KEVuln. err: %w\", err)\n+\t\t}\n+\n+\t\tvar m map[string]json.RawMessage\n+\t\tif err := json.Unmarshal(b, &amp;m); err != nil {\n+\t\t\treturn nil, xerrors.Errorf(\"Failed to unmarshal KEVuln. err: %w\", err)\n+\t\t}\n+\n+\t\tif cisa, ok, err := parseCISAKEV(rawFor(m, \"cisa\", \"CISA\", \"cisaKEV\", \"CISAKEV\")); err != nil {\n+\t\t\treturn nil, err\n+\t\t} else if ok {\n+\t\t\tkevs = append(kevs, cisa)\n+\t\t}\n+\n+\t\tif vulncheck, ok, err := parseVulnCheckKEV(rawFor(m, \"vulncheck\", \"vulnCheck\", \"VulnCheck\", \"vulnCheckKEV\", \"VulnCheckKEV\")); err != nil {\n+\t\t\treturn nil, err\n+\t\t} else if ok {\n+\t\t\tkevs = append(kevs, vulncheck)\n+\t\t}\n+\t}\n+\treturn kevs, nil\n+}\n+\n+func parseCISAKEV(raw json.RawMessage) (models.KEV, bool, error) {\n+\tif len(raw) == 0 || string(raw) == \"null\" {\n+\t\treturn models.KEV{}, false, nil\n+\t}\n+\tvar m map[string]json.RawMessage\n+\tif err := json.Unmarshal(raw, &amp;m); err != nil {\n+\t\treturn models.KEV{}, false, xerrors.Errorf(\"Failed to unmarshal CISA KEV. err: %w\", err)\n+\t}\n+\tif isEmptyRawMap(m) {\n+\t\treturn models.KEV{}, false, nil\n+\t}\n+\n+\tdueDate, err := rawTimePtr(rawFor(m, \"dueDate\", \"DueDate\", \"due_date\"))\n+\tif err != nil {\n+\t\treturn models.KEV{}, false, err\n+\t}\n+\tdateAdded, err := rawTime(rawFor(m, \"dateAdded\", \"DateAdded\", \"date_added\"))\n+\tif err != nil {\n+\t\treturn models.KEV{}, false, err\n+\t}\n+\n+\treturn models.KEV{\n+\t\tType:                       models.CISAKEVType,\n+\t\tVendorProject:              rawString(rawFor(m, \"vendorProject\", \"VendorProject\", \"vendor_project\")),\n+\t\tProduct:                    rawString(rawFor(m, \"product\", \"Product\")),\n+\t\tVulnerabilityName:          rawString(rawFor(m, \"vulnerabilityName\", \"VulnerabilityName\", \"vulnerability_name\")),\n+\t\tShortDescription:           rawString(rawFor(m, \"shortDescription\", \"ShortDescription\", \"short_description\")),\n+\t\tRequiredAction:             rawString(rawFor(m, \"requiredAction\", \"RequiredAction\", \"required_action\")),\n+\t\tKnownRansomwareCampaignUse: rawString(rawFor(m, \"knownRansomwareCampaignUse\", \"KnownRansomwareCampaignUse\", \"known_ransomware_campaign_use\")),\n+\t\tDateAdded:                  dateAdded,\n+\t\tDueDate:                    dueDate,\n+\t\tCISA: &amp;models.CISAKEV{\n+\t\t\tNote: rawString(rawFor(m, \"note\", \"Note\", \"notes\")),\n+\t\t},\n+\t}, true, nil\n+}\n+\n+func parseVulnCheckKEV(raw json.RawMessage) (models.KEV, bool, error) {\n+\tif len(raw) == 0 || string(raw) == \"null\" {\n+\t\treturn models.KEV{}, false, nil\n+\t}\n+\tvar m map[string]json.RawMessage\n+\tif err := json.Unmarshal(raw, &amp;m); err != nil {\n+\t\treturn models.KEV{}, false, xerrors.Errorf(\"Failed to unmarshal VulnCheck KEV. err: %w\", err)\n+\t}\n+\tif isEmptyRawMap(m) {\n+\t\treturn models.KEV{}, false, nil\n+\t}\n+\n+\tdueDate, err := rawTimePtr(rawFor(m, \"dueDate\", \"DueDate\", \"due_date\"))\n+\tif err != nil {\n+\t\treturn models.KEV{}, false, err\n+\t}\n+\tdateAdded, err := rawTime(rawFor(m, \"dateAdded\", \"DateAdded\", \"date_added\"))\n+\tif err != nil {\n+\t\treturn models.KEV{}, false, err\n+\t}\n+\txdb, err := parseVulnCheckXDB(rawFor(m, \"xdb\", \"XDB\"))\n+\tif err != nil {\n+\t\treturn models.KEV{}, false, err\n+\t}\n+\treportedExploitation, err := parseVulnCheckReportedExploitation(rawFor(m, \"reportedExploitation\", \"ReportedExploitation\", \"reported_exploitation\"))\n+\tif err != nil {\n+\t\treturn models.KEV{}, false, err\n+\t}\n+\n+\treturn models.KEV{\n+\t\tType:                       models.VulnCheckKEVType,\n+\t\tVendorProject:              rawString(rawFor(m, \"vendorProject\", \"VendorProject\", \"vendor_project\")),\n+\t\tProduct:                    rawString(rawFor(m, \"product\", \"Product\")),\n+\t\tVulnerabilityName:          rawString(rawFor(m, \"vulnerabilityName\", \"VulnerabilityName\", \"vulnerability_name\")),\n+\t\tShortDescription:           rawString(rawFor(m, \"shortDescription\", \"ShortDescription\", \"short_description\")),\n+\t\tRequiredAction:             rawString(rawFor(m, \"requiredAction\", \"RequiredAction\", \"required_action\")),\n+\t\tKnownRansomwareCampaignUse: rawString(rawFor(m, \"knownRansomwareCampaignUse\", \"KnownRansomwareCampaignUse\", \"known_ransomware_campaign_use\")),\n+\t\tDateAdded:                  dateAdded,\n+\t\tDueDate:                    dueDate,\n+\t\tVulnCheck: &amp;models.VulnCheckKEV{\n+\t\t\tXDB:                  xdb,\n+\t\t\tReportedExploitation: reportedExploitation,\n+\t\t},\n+\t}, true, nil\n+}\n+\n+func parseVulnCheckXDB(raw json.RawMessage) ([]models.VulnCheckXDB, error) {\n+\tif len(raw) == 0 || string(raw) == \"null\" {\n+\t\treturn nil, nil\n+\t}\n+\tvar xs []map[string]json.RawMessage\n+\tif err := json.Unmarshal(raw, &amp;xs); err != nil {\n+\t\treturn nil, xerrors.Errorf(\"Failed to unmarshal VulnCheck XDB. err: %w\", err)\n+\t}\n+\n+\txdbs := []models.VulnCheckXDB{}\n+\tfor _, x := range xs {\n+\t\tdateAdded, err := rawTime(rawFor(x, \"dateAdded\", \"DateAdded\", \"date_added\"))\n+\t\tif err != nil {\n+\t\t\treturn nil, err\n+\t\t}\n+\t\txdbs = append(xdbs, models.VulnCheckXDB{\n+\t\t\tXDBID:       rawString(rawFor(x, \"xdbID\", \"XDBID\", \"xdb_id\")),\n+\t\t\tXDBURL:      rawString(rawFor(x, \"xdbURL\", \"XDBURL\", \"xdb_url\")),\n+\t\t\tDateAdded:   dateAdded,\n+\t\t\tExploitType: rawString(rawFor(x, \"exploitType\", \"ExploitType\", \"exploit_type\")),\n+\t\t\tCloneSSHURL: rawString(rawFor(x, \"cloneSSHURL\", \"CloneSSHURL\", \"clone_ssh_url\")),\n+\t\t})\n+\t}\n+\treturn xdbs, nil\n+}\n+\n+func parseVulnCheckReportedExploitation(raw json.RawMessage) ([]models.VulnCheckReportedExploitation, error) {\n+\tif len(raw) == 0 || string(raw) == \"null\" {\n+\t\treturn nil, nil\n+\t}\n+\tvar rs []map[string]json.RawMessage\n+\tif err := json.Unmarshal(raw, &amp;rs); err != nil {\n+\t\treturn nil, xerrors.Errorf(\"Failed to unmarshal VulnCheck reported exploitation. err: %w\", err)\n+\t}\n+\n+\treports := []models.VulnCheckReportedExploitation{}\n+\tfor _, r := range rs {\n+\t\tdateAdded, err := rawTime(rawFor(r, \"dateAdded\", \"DateAdded\", \"date_added\"))\n+\t\tif err != nil {\n+\t\t\treturn nil, err\n+\t\t}\n+\t\treports = append(reports, models.VulnCheckReportedExploitation{\n+\t\t\tURL:       rawString(rawFor(r, \"url\", \"URL\")),\n+\t\t\tDateAdded: dateAdded,\n+\t\t})\n+\t}\n+\treturn reports, nil\n+}\n+\n+func rawFor(m map[string]json.RawMessage, keys ...string) json.RawMessage {\n+\tfor _, key := range keys {\n+\t\tif raw, ok := m[key]; ok {\n+\t\t\treturn raw\n+\t\t}\n+\t}\n+\treturn nil\n+}\n+\n+func rawString(raw json.RawMessage) string {\n+\tif len(raw) == 0 || string(raw) == \"null\" {\n+\t\treturn \"\"\n+\t}\n+\tvar s string\n+\tif err := json.Unmarshal(raw, &amp;s); err == nil {\n+\t\treturn s\n+\t}\n+\treturn strings.Trim(string(raw), `\"`)\n+}\n+\n+func rawTime(raw json.RawMessage) (time.Time, error) {\n+\tif len(raw) == 0 || string(raw) == \"null\" {\n+\t\treturn time.Time{}, nil\n+\t}\n+\ts := rawString(raw)\n+\tif s == \"\" || s == \"0001-01-01T00:00:00Z\" {\n+\t\treturn time.Time{}, nil\n+\t}\n+\tfor _, layout := range []string{time.RFC3339Nano, time.RFC3339, \"2006-01-02\"} {\n+\t\tif t, err := time.Parse(layout, s); err == nil {\n+\t\t\treturn t, nil\n+\t\t}\n+\t}\n+\treturn time.Time{}, xerrors.Errorf(\"Failed to parse KEV date: %s\", s)\n+}\n+\n+func rawTimePtr(raw json.RawMessage) (*time.Time, error) {\n+\tt, err := rawTime(raw)\n+\tif err != nil || t.IsZero() {\n+\t\treturn nil, err\n+\t}\n+\treturn &amp;t, nil\n+}\n+\n+func isEmptyRawMap(m map[string]json.RawMessage) bool {\n+\tif len(m) == 0 {\n+\t\treturn true\n+\t}\n+\tfor _, raw := range m {\n+\t\tif len(raw) != 0 &amp;&amp; string(raw) != \"null\" &amp;&amp; string(raw) != `\"\"` &amp;&amp; string(raw) != \"[]\" &amp;&amp; string(raw) != \"{}\" {\n+\t\t\treturn false\n+\t\t}\n+\t}\n+\treturn true\n+}\n+\n type kevulnResponse struct {\n \trequest kevulnRequest\n \tjson    string\ndiff --git a/docs/sample-kev-scan-result.json b/docs/sample-kev-scan-result.json\nnew file mode 100644\nindex 0000000..83a0c71\n--- /dev/null\n+++ b/docs/sample-kev-scan-result.json\n@@ -0,0 +1,60 @@\n+{\n+  \"jsonVersion\": 4,\n+  \"serverName\": \"example-host\",\n+  \"family\": \"ubuntu\",\n+  \"release\": \"22.04\",\n+  \"scannedCves\": {\n+    \"CVE-0000-0000\": {\n+      \"cveID\": \"CVE-0000-0000\",\n+      \"kevs\": [\n+        {\n+          \"type\": \"cisa\",\n+          \"vendorProject\": \"Example Vendor\",\n+          \"product\": \"Example Product\",\n+          \"vulnerabilityName\": \"Example Product Placeholder Vulnerability\",\n+          \"shortDescription\": \"Synthetic CISA KEV example for documentation.\",\n+          \"requiredAction\": \"Apply vendor-provided updates or mitigations.\",\n+          \"knownRansomwareCampaignUse\": \"Unknown\",\n+          \"dateAdded\": \"2026-01-02T00:00:00Z\",\n+          \"dueDate\": \"2026-02-01T00:00:00Z\",\n+          \"cisa\": {\n+            \"note\": \"Synthetic sample; not real vulnerability intelligence.\"\n+          }\n+        },\n+        {\n+          \"type\": \"vulncheck\",\n+          \"vendorProject\": \"Example Vendor\",\n+          \"product\": \"Example Product\",\n+          \"vulnerabilityName\": \"Example Product Placeholder Vulnerability\",\n+          \"shortDescription\": \"Synthetic VulnCheck KEV example for documentation.\",\n+          \"requiredAction\": \"Review exploitation evidence and remediate affected assets.\",\n+          \"knownRansomwareCampaignUse\": \"Unknown\",\n+          \"dateAdded\": \"2026-01-03T00:00:00Z\",\n+          \"vulncheck\": {\n+            \"xdb\": [\n+              {\n+                \"xdbID\": \"XDB-000000\",\n+                \"xdbURL\": \"https://example.com/xdb/XDB-000000\",\n+                \"dateAdded\": \"2026-01-03T00:00:00Z\",\n+                \"exploitType\": \"remote\",\n+                \"cloneSSHURL\": \"git@example.com:example/xdb-000000.git\"\n+              }\n+            ],\n+            \"reportedExploitation\": [\n+              {\n+                \"url\": \"https://example.com/reports/CVE-0000-0000\",\n+                \"dateAdded\": \"2026-01-04T00:00:00Z\"\n+              }\n+            ]\n+          }\n+        }\n+      ],\n+      \"affectedPackages\": [\n+        {\n+          \"name\": \"example-package\",\n+          \"fixedIn\": \"1.2.3\"\n+        }\n+      ]\n+    }\n+  }\n+}\ndiff --git a/models/scanresults.go b/models/scanresults.go\nindex 508b992..33c32c7 100644\n--- a/models/scanresults.go\n+++ b/models/scanresults.go\n@@ -197,13 +197,14 @@ func (r ScanResult) FormatTextReportHeader() string {\n \t\tpkgs = fmt.Sprintf(\"%s, %d libs\", pkgs, r.LibraryScanners.Total())\n \t}\n \n-\treturn fmt.Sprintf(\"%s\\n%s\\n%s\\n%s, %s, %s, %s\\n%s\\n\",\n+\treturn fmt.Sprintf(\"%s\\n%s\\n%s\\n%s, %s, %s, %s, %s\\n%s\\n\",\n \t\tr.ServerInfo(),\n \t\tbuf.String(),\n \t\tr.ScannedCves.FormatCveSummary(),\n \t\tr.ScannedCves.FormatFixedStatus(r.Packages),\n \t\tr.FormatExploitCveSummary(),\n \t\tr.FormatMetasploitCveSummary(),\n+\t\tr.FormatKEVCveSummary(),\n \t\tr.FormatAlertSummary(),\n \t\tpkgs)\n }\n@@ -251,15 +252,22 @@ func (r ScanResult) FormatMetasploitCveSummary() string {\n \treturn fmt.Sprintf(\"%d exploits\", nMetasploitCve)\n }\n \n+// FormatKEVCveSummary returns a summary of CVEs with KEV entries.\n+func (r ScanResult) FormatKEVCveSummary() string {\n+\tnKEVCve := 0\n+\tfor _, vuln := range r.ScannedCves {\n+\t\tif 0 &lt; len(vuln.KEVs) {\n+\t\t\tnKEVCve++\n+\t\t}\n+\t}\n+\treturn fmt.Sprintf(\"%d kevs\", nKEVCve)\n+}\n+\n // FormatAlertSummary returns a summary of CERT alerts\n func (r ScanResult) FormatAlertSummary() string {\n-\tcisaCnt := 0\n \tuscertCnt := 0\n \tjpcertCnt := 0\n \tfor _, vuln := range r.ScannedCves {\n-\t\tif len(vuln.AlertDict.CISA) &gt; 0 {\n-\t\t\tcisaCnt += len(vuln.AlertDict.CISA)\n-\t\t}\n \t\tif len(vuln.AlertDict.USCERT) &gt; 0 {\n \t\t\tuscertCnt += len(vuln.AlertDict.USCERT)\n \t\t}\n@@ -267,7 +275,7 @@ func (r ScanResult) FormatAlertSummary() string {\n \t\t\tjpcertCnt += len(vuln.AlertDict.JPCERT)\n \t\t}\n \t}\n-\treturn fmt.Sprintf(\"cisa: %d, uscert: %d, jpcert: %d alerts\", cisaCnt, uscertCnt, jpcertCnt)\n+\treturn fmt.Sprintf(\"uscert: %d, jpcert: %d alerts\", uscertCnt, jpcertCnt)\n }\n \n func (r ScanResult) isDisplayUpdatableNum(mode config.ScanMode) bool {\n@@ -422,6 +430,12 @@ func (r *ScanResult) SortForJSONOutput() {\n \t\tsort.Slice(v.Metasploits, func(i, j int) bool {\n \t\t\treturn v.Metasploits[i].Name &lt; v.Metasploits[j].Name\n \t\t})\n+\t\tsort.Slice(v.KEVs, func(i, j int) bool {\n+\t\t\tif v.KEVs[i].Type != v.KEVs[j].Type {\n+\t\t\t\treturn v.KEVs[i].Type &lt; v.KEVs[j].Type\n+\t\t\t}\n+\t\t\treturn v.KEVs[i].VulnerabilityName &lt; v.KEVs[j].VulnerabilityName\n+\t\t})\n \t\tsort.Slice(v.Mitigations, func(i, j int) bool {\n \t\t\treturn v.Mitigations[i].URL &lt; v.Mitigations[j].URL\n \t\t})\n@@ -434,9 +448,6 @@ func (r *ScanResult) SortForJSONOutput() {\n \t\tsort.Slice(v.AlertDict.JPCERT, func(i, j int) bool {\n \t\t\treturn v.AlertDict.JPCERT[i].Title &lt; v.AlertDict.JPCERT[j].Title\n \t\t})\n-\t\tsort.Slice(v.AlertDict.CISA, func(i, j int) bool {\n-\t\t\treturn v.AlertDict.CISA[i].Title &lt; v.AlertDict.CISA[j].Title\n-\t\t})\n \t\tr.ScannedCves[k] = v\n \t}\n }\ndiff --git a/models/vulninfos.go b/models/vulninfos.go\nindex 3e85e81..8a6e0dc 100644\n--- a/models/vulninfos.go\n+++ b/models/vulninfos.go\n@@ -265,6 +265,7 @@ type VulnInfo struct {\n \tCveContents          CveContents          `json:\"cveContents,omitempty\"`\n \tExploits             []Exploit            `json:\"exploits,omitempty\"`\n \tMetasploits          []Metasploit         `json:\"metasploits,omitempty\"`\n+\tKEVs                 []KEV                `json:\"kevs,omitempty\"`\n \tMitigations          []Mitigation         `json:\"mitigations,omitempty\"`\n \tCtis                 []string             `json:\"ctis,omitempty\"`\n \tAlertDict            AlertDict            `json:\"alertDict,omitempty\"`\n@@ -284,6 +285,57 @@ type Alert struct {\n \tTeam  string `json:\"team,omitempty\"`\n }\n \n+// KEVType identifies the source of known exploited vulnerability data.\n+type KEVType string\n+\n+const (\n+\t// CISAKEVType represents CISA Known Exploited Vulnerabilities Catalog data.\n+\tCISAKEVType KEVType = \"cisa\"\n+\t// VulnCheckKEVType represents VulnCheck KEV data.\n+\tVulnCheckKEVType KEVType = \"vulncheck\"\n+)\n+\n+// KEV has known exploited vulnerability information.\n+type KEV struct {\n+\tType                       KEVType       `json:\"type,omitempty\"`\n+\tVendorProject              string        `json:\"vendorProject,omitempty\"`\n+\tProduct                    string        `json:\"product,omitempty\"`\n+\tVulnerabilityName          string        `json:\"vulnerabilityName,omitempty\"`\n+\tShortDescription           string        `json:\"shortDescription,omitempty\"`\n+\tRequiredAction             string        `json:\"requiredAction,omitempty\"`\n+\tKnownRansomwareCampaignUse string        `json:\"knownRansomwareCampaignUse,omitempty\"`\n+\tDateAdded                  time.Time     `json:\"dateAdded,omitempty\"`\n+\tDueDate                    *time.Time    `json:\"dueDate,omitempty\"`\n+\tCISA                       *CISAKEV      `json:\"cisa,omitempty\"`\n+\tVulnCheck                  *VulnCheckKEV `json:\"vulncheck,omitempty\"`\n+}\n+\n+// CISAKEV has CISA-specific KEV fields.\n+type CISAKEV struct {\n+\tNote string `json:\"note,omitempty\"`\n+}\n+\n+// VulnCheckKEV has VulnCheck-specific KEV fields.\n+type VulnCheckKEV struct {\n+\tXDB                  []VulnCheckXDB                  `json:\"xdb,omitempty\"`\n+\tReportedExploitation []VulnCheckReportedExploitation `json:\"reportedExploitation,omitempty\"`\n+}\n+\n+// VulnCheckXDB has VulnCheck exploit database metadata.\n+type VulnCheckXDB struct {\n+\tXDBID       string    `json:\"xdbID,omitempty\"`\n+\tXDBURL      string    `json:\"xdbURL,omitempty\"`\n+\tDateAdded   time.Time `json:\"dateAdded,omitempty\"`\n+\tExploitType string    `json:\"exploitType,omitempty\"`\n+\tCloneSSHURL string    `json:\"cloneSSHURL,omitempty\"`\n+}\n+\n+// VulnCheckReportedExploitation has VulnCheck reported exploitation metadata.\n+type VulnCheckReportedExploitation struct {\n+\tURL       string    `json:\"url,omitempty\"`\n+\tDateAdded time.Time `json:\"dateAdded,omitempty\"`\n+}\n+\n // GitHubSecurityAlerts is a list of GitHubSecurityAlert\n type GitHubSecurityAlerts []GitHubSecurityAlert\n \n@@ -910,24 +962,21 @@ type Mitigation struct {\n \tURL            string         `json:\"url,omitempty\"`\n }\n \n-// AlertDict has target cve JPCERT, USCERT and CISA alert data\n+// AlertDict has target cve JPCERT and USCERT alert data.\n type AlertDict struct {\n-\tCISA   []Alert `json:\"cisa\"`\n+\tCISA   []Alert `json:\"-\"`\n \tJPCERT []Alert `json:\"jpcert\"`\n \tUSCERT []Alert `json:\"uscert\"`\n }\n \n // IsEmpty checks if the content of AlertDict is empty\n func (a AlertDict) IsEmpty() bool {\n-\treturn len(a.CISA) == 0 &amp;&amp; len(a.JPCERT) == 0 &amp;&amp; len(a.USCERT) == 0\n+\treturn len(a.JPCERT) == 0 &amp;&amp; len(a.USCERT) == 0\n }\n \n // FormatSource returns which source has this alert\n func (a AlertDict) FormatSource() string {\n \tvar s []string\n-\tif len(a.CISA) != 0 {\n-\t\ts = append(s, \"CISA\")\n-\t}\n \tif len(a.USCERT) != 0 || len(a.JPCERT) != 0 {\n \t\ts = append(s, \"CERT\")\n \t}\ndiff --git a/reporter/util.go b/reporter/util.go\nindex d9cfdaa..a2dfbd0 100644\n--- a/reporter/util.go\n+++ b/reporter/util.go\n@@ -204,6 +204,7 @@ func formatOneLineSummary(rs ...models.ScanResult) string {\n \t\t\t\tr.FormatUpdatablePkgsSummary(),\n \t\t\t\tr.FormatExploitCveSummary(),\n \t\t\t\tr.FormatMetasploitCveSummary(),\n+\t\t\t\tr.FormatKEVCveSummary(),\n \t\t\t\tr.FormatAlertSummary(),\n \t\t\t}\n \t\t} else {\n@@ -565,10 +566,6 @@ No CVE-IDs are found in updatable packages.\n \t\t})\n \t\tdata = append(data, ds...)\n \n-\t\tfor _, alert := range vuln.AlertDict.CISA {\n-\t\t\tdata = append(data, []string{\"CISA Alert\", alert.URL})\n-\t\t}\n-\n \t\tfor _, alert := range vuln.AlertDict.JPCERT {\n \t\t\tdata = append(data, []string{\"JPCERT Alert\", alert.URL})\n \t\t}\ndiff --git a/tui/tui.go b/tui/tui.go\nindex 4407f56..80afe95 100644\n--- a/tui/tui.go\n+++ b/tui/tui.go\n@@ -812,16 +812,6 @@ func setChangelogLayout(g *gocui.Gui) error {\n \t\t\t}\n \t\t}\n \n-\t\tif len(vinfo.AlertDict.CISA) &gt; 0 {\n-\t\t\tlines = append(lines, \"\\n\",\n-\t\t\t\t\"CISA Alert\",\n-\t\t\t\t\"===========\",\n-\t\t\t)\n-\t\t\tfor _, alert := range vinfo.AlertDict.CISA {\n-\t\t\t\tlines = append(lines, fmt.Sprintf(\"* [%s](%s)\", alert.Title, alert.URL))\n-\t\t\t}\n-\t\t}\n-\n \t\tif len(vinfo.AlertDict.USCERT) &gt; 0 {\n \t\t\tlines = append(lines, \"\\n\",\n \t\t\t\t\"USCERT Alert\",\n", "creation_timestamp": "2026-07-04T00:01:07.916595Z"}