Cvss report generation
How to generate security audit reports in CSV format. Use this skill whenever you need to produce a `/root/security_audit.csv` report.From its SKILL.md
npx -y skills add cxcscmu/SkillLearnBench --skill cvss-report-generationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
1.2 KB, 226 tokens by cl100k_base, as published. Nobody here has run it
CVSS Report Generation
This skill provides instructions for generating standardized security audit reports in CSV format from scan data.
CSV Structure
The generated CSV must follow this structure:
Package,Version,CVE_ID,Severity,CVSS_Score,Fixed_Version,Title,Url
Implementation Steps
- Prepare Data: Map the findings from your scan tool output into a consistent object structure.
- Handle Missing Values: For fields like
Fixed_Version, if not available, record as "N/A". - Format: Use Python's
csvlibrary for reliable CSV generation to handle escaping special characters. - Writing: Output the final content to
/root/security_audit.csv.
import csv
data = [...] # List of dictionaries
with open('/root/security_audit.csv', 'w', newline='') as f:
writer = csv.DictWriter(f, fieldnames=['Package', 'Version', 'CVE_ID', 'Severity', 'CVSS_Score', 'Fixed_Version', 'Title', 'Url'])
writer.writeheader()
writer.writerows(data)
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.