Run3 dependency vulnerability scanner
Analyze /root/package-lock.json to identify HIGH and CRITICAL vulnerabilities using automated security audit tools and database lookups.From its SKILL.md
npx -y skills add cxcscmu/SkillLearnBench --skill run3_dependency_vulnerability_scannerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
1.3 KB, 271 tokens by cl100k_base, as published. Nobody here has run it
- Execute
npm audit --jsonoraudit-cion/root/package-lock.jsonto generate a report of dependency vulnerabilities. - Filter the raw output to retain only vulnerabilities with
severityset tohighorcritical. - For each identified vulnerability, extract the following:
- Package: The name of the vulnerable package.
- Version: The installed version found in the dependency tree.
- CVE ID: The CVE identifier associated with the vulnerability.
- Severity: The level (High or Critical).
- CVSS Score: Retrieve the score by prioritizing sources in the order: NVD -> GHSA -> RedHat. Parse the nested
cvssobject specifically looking forcvssV3.baseScoreorcvssV3.score. If unavailable, search forcvssV2.score. - Fixed Version: The first version where the patch is applied; if no patch is available, record as "N/A".
- Title/Description: A summary of the vulnerability.
- Url: The reference link provided by the audit source.
- Format the extracted data into a CSV structure exactly matching:
Package,Version,CVE_ID,Severity,CVSS_Score,Fixed_Version,Title,Url.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.