Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 604 Bytes

File metadata and controls

27 lines (17 loc) · 604 Bytes

README

Demonstrates a script that will take a list of CVE and get the descriptions

Execute

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 

Resources

  • CVSS calculator here