Demonstrates a script that will take a list of CVE and get the descriptions
mkdir -p ./out
# a list of critical vulnerabilties.
./cve-summaries.sh --file=cves-critical.txt --action=cve
# a list of high vulnerabilties.
./cve-summaries.sh --file=cves-high.txt --action=cve
# we can slurp all these back together
./cve-summaries.sh --file=cves-critical.txt --action=cve | jq -s .
./cve-summaries.sh --file=cves-critical.txt --action=cve | jq -s . > ./out/critical.json
- CVSS calculator here