CVE Report

I want to understand which critical vulnerabilities (CVEs) have the biggest impact on our security posture. How do I use JupiterOne to find results for all high/critical severity CVEs from Snyk as a count?

Best Answer

  • Tony
    Tony mod
    Answer ✓
    This query will show Snyk CVE's with a high or critical numeric severity in a list, with a count of that CVE:
    Find snyk_finding with open=true and numericSeverity>="7" and numericSeverity<="10" as vuln 
    return vuln.cve as name, count(vuln) as value

This Month's Leaders