Skip to main content

DevOps & Security

Dependency CVE Auditor

Audits project dependencies against NVD and GitHub Advisory Database, producing a CVE report ranked by CVSS score with patch guidance. Useful for catching known vulnerabilities before they reach production. Backend and full-stack engineers responsible for their own dependency health, security engineers preparing for SOC 2 or enterprise vendor reviews, and indie builders who cannot staff a dedicated AppSec role. from npm supply-chain incidents to Python package typosquatting to the widespread Log4Shell fallout. New advisories land weekly. Manually auditing dependencies is tedious and inconsistent, and tools like `npm audit` or `pip-audit` produce raw output that is hard to triage without context. Teams miss upgrades because the prioritization story is flat: a medium CVE in a critical package often matters more than a critical CVE in a dev dependency, but raw audit output does not communicate that.

Nexus CertifiedClaude CodeCodexOpenClawGoogle Antigravity
securitycvedependenciesvulnerabilitiessupply-chain

One-Time Purchase

$19.99

Sample Output

Dependency CVE Audit — package.json (Node 20)

Manifest: package.json · Lockfile: package-lock.json v3 · Packages scanned: 214 (38 direct, 176 transitive)

Verdict

Three criticals — two on the CISA Known Exploited Vulnerabilities list. next and fastify (via transitive find-my-way) both have actively exploited advisories with patches available today. cross-spawn adds a third critical but is dev-only. Five production-affecting fixes can ship as one PR; two findings have no upstream patch and need application-side mitigation.

CVE severity breakdown

Critical (CVSS ≥ 9.0)3
High (7.0–8.9)7
Medium (4.0–6.9)11
Low (< 4.0)4
CISA KEV-listed2
No upstream patch available2

CVE Table

CVEPackageCVSSKEVInstalledFixed inDirect?Env
CVE-2025-29927next9.1Yes14.2.1014.2.25directprod
CVE-2024-45813find-my-way9.0Yes8.1.08.2.2 (via fastify 4.28.1)transitiveprod
CVE-2024-21538cross-spawn9.8No7.0.37.0.5 (override)transitivedev
CVE-2025-27789axios7.3No1.6.81.7.9directprod
CVE-2024-55565nanoid7.5No3.3.63.3.8 (override)transitivedev
CVE-2024-52798path-to-regexp5.3No0.1.10None for 0.1.xtransitiveprod
CVE-2025-30208vite4.3No5.4.26.2.4 (major bump)directdev

Upgrade Path

Patchable in one PR

`next@14.2.25` — direct `npm install`; review middleware subrequest paths1
`fastify@4.28.1` — pulls `find-my-way@8.2.2`; one deprecation on `reply.sent`2
`axios@1.7.9` — direct upgrade; `GET` with `data` payload now deprecation-warns3
`overrides.cross-spawn` ^7.0.5 — pin in `package.json`; verify with `npm ls cross-spawn`4
`overrides.nanoid` ^3.3.8 — pin in `package.json`; verify with `npm ls nanoid`5
// package.json — additions
"overrides": {
  "cross-spawn": "^7.0.5",
  "nanoid": "^3.3.8"
}

Blocking Deps — No Patch Available

path-to-regexp 0.1.x — no patch

CVE-2024-52798 / CVSS 5.3. ReDoS via backtracking on named-parameter patterns. The 0.1.x line is end-of-life; Express 4.x is pinned to it. Mitigation: validate and length-cap incoming route strings at the application boundary, rate-limit route-heavy endpoints, and watch for an Express 4.x patch release. Do not force-override to path-to-regexp@6.x — the API is incompatible with Express internals.

vite 5.x — patch only on 6.x

CVE-2025-30208 / CVSS 4.3. Arbitrary file read via /@fs/ URL. Only reachable when the dev server is exposed to untrusted networks. Mitigation: confirm server.host: false in vite.config.ts (binds to localhost), and do not forward the Vite dev port in CI or shared staging. A Vite 6 upgrade is a separate workstream — handle outside this security patch cycle.


Ready-to-Submit PR Body

## chore(deps): patch critical and high CVEs

### Changes
- next 14.2.10 -> 14.2.25 (CVE-2025-29927, CVSS 9.1, CISA KEV)
- fastify 4.27.0 -> 4.28.1 (CVE-2024-45813, CVSS 9.0, CISA KEV — via find-my-way)
- axios 1.6.8 -> 1.7.9 (CVE-2025-27789, CVSS 7.3)
- overrides.cross-spawn ^7.0.5 (CVE-2024-21538, CVSS 9.8 — dev-only)
- overrides.nanoid ^3.3.8 (CVE-2024-55565, CVSS 7.5 — dev-only)

### Verify
- [ ] npm ls find-my-way resolves 8.2.2
- [ ] npm ls cross-spawn resolves 7.0.5
- [ ] unit + e2e green
- [ ] no reply.sent deprecation regressions in fastify tests

Before / After Summary

AreaBeforeAfter
CISA KEV exposures2 in production0
Critical CVEs (prod)20
High CVEs (prod)1 (axios)0
No-patch CVEs22 (app-side mitigation)
Calendar effort~1 day incl. test pass

Audit reflects the manifest and lockfile snapshot only. Re-run after any npm install that changes the lockfile, and again the next time the advisory feeds refresh.

This sample illustrates the skill's output format. Names, metrics, and operational details are illustrative unless the artifact explicitly analyzes public information.

View full sample →

All sales final. No refunds on digital products.

Includes support for Claude Code, Codex, OpenClaw, and Google Antigravity in the same license.

Also in Security Scanning

Bundle price: $55. Compare this skill with the full workflow bundle or Pro access.

Best for

Engineers responsible for their own dependency health on Node, Python, Ruby, or Go projects with 50–500 direct dependencies, and security leads preparing CVE evidence for SOC 2 or enterprise vendor reviews. Most useful when the team will actually act on the prioritized findings — patch the critical CVE in the runtime dependency before the medium CVE in the dev tool.

Not ideal for

Compiled vendored binaries or proprietary internal libraries with no public advisory database to check against. Also a poor fit as a substitute for a proper supply-chain security program at scale (SBOMs, signed releases, build provenance) when the company is past 50 engineers.

Included in this purchase

  • Claude Code, Codex, OpenClaw, and Google Antigravity skill files.
  • Setup guidance for the right adapter in your workspace.
  • One-time license for the purchased skill version.

Setup

Plan for a short setup in the repository or workspace where the skill will run. Some coding familiarity helps for implementation-heavy outputs.

Claude CodeCodexOpenClawGoogle Antigravity

Related Skills

Incident Response
Outage Response Playbook
Generates structured, role-clear incident response playbooks for specific failure scenarios. Covers detection through resolution and post-mortem — ready to use when an incident actually happens.
Claude CodeCodexOpenClawGoogle Antigravity
outage-responsereliabilityrunbooks

$19.99

One-time license

View Skill
Incident Response
Incident Postmortem Writer
Generates a structured blameless postmortem from incident timelines, alerts, and deploy logs with root cause analysis, impact assessment, and owned action items. Useful for producing first-draft postmortems under operational pressure.
Claude CodeCodexOpenClawGoogle Antigravity
postmortemsincident-responseoperations

$19.99

One-time license

View Skill
Security Scanning
OWASP Top 10 Scanner
Scans code for OWASP Top 10 vulnerability patterns including injection, XSS, IDOR, and insecure deserialization with severity ratings and remediation snippets. Useful for pre-commit security checks and enterprise compliance.
Claude CodeCodexOpenClawGoogle Antigravity
securityowaspvulnerabilities

$19.99

One-time license

View Skill

Future Updates

This purchase includes the current version of the skill. If you want future adapter updates — meaning compatibility and packaging updates as supported platforms evolve — plus new catalog additions included automatically, upgrade to Pro.

Upgrade to Pro