This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Description
Hi! Its currently possible to exempt a CVE ID from the console, but those CVEs are still accounted for in the scoring of this script. Is it possible to modify it so we pull the CVE IDs that are exempted in the report and then add this block to get_alerts_vuln():
if cve in exemptedCVEs: critical_score = 0 high_score = 0 medium_score = 0 low_score = 0
This would let us manage whitelisted vulnerabilities or those that we accept risk for from the console while not impacting CI/CD workflows. The score for any whitelisted CVE would be set to 0 and not be a cause for deployment failure.