Skip to main content
Solved

Can I pull the entire CVE database

  • August 16, 2024
  • 3 replies
  • 83 views

Forum|alt.badge.img+2

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.

Best answer by davetee

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)
}

 

3 replies

davetee
Community Manager
Forum|alt.badge.img
  • Community Manager
  • Answer
  • August 16, 2024

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)
}

 


Forum|alt.badge.img+2
  • Author
  • Spotter
  • August 16, 2024

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


davetee
Community Manager
Forum|alt.badge.img
  • Community Manager
  • August 16, 2024

It’s a great question - thanks for asking!