Skip to main content
Solved

Can I pull the entire CVE database

  • 16 August 2024
  • 3 replies
  • 47 views

Is there a way to export all CVEs that the platform is scanning for.  We know how to get the ones that are affecting devices, but we want a list of them all, regardless of impact.

Hi @gbaron -

h/t  🎩 to @Andreas for this NQE to get the CVEs:

foreach cve in network.cveDatabase.cves
select {
"Cve ID": cve.cveId,
Severity: cve.severity,
Description: cve.description,
Vendors: (foreach criterion in cve.criteria
select distinct criterion.vendor)
}

 


I was to busy looking in the Vulnerabilities section and didnt even consider the NQE.  My apolgies.  Thanks for information!


It’s a great question - thanks for asking!


Reply