AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Cve Scan

skill-opendatahub-io-ai-helpers-cve-scan · by opendatahub-io

>-

No reviews yet
0 installs
39 views
0.0% view→install

Install

$ agentstack add skill-opendatahub-io-ai-helpers-cve-scan

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-opendatahub-io-ai-helpers-cve-scan)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Cve Scan? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill: CVE Scan

Scan a cloned repository to determine whether a specific CVE is present as an unfixed vulnerability. Uses language-appropriate scanning tools with version-matched toolchains for accurate results.

Step 1: Run the scan script

Run scripts/scan.sh which handles language detection, version-matched toolchain selection, vulnerability scanning, package version checks, and base image detection:

bash scripts/scan.sh "${REPO_DIR}" "${CVE_ID}" "${PACKAGE}" "${BUILD_LOCATION:-.}"

The script:

  • Detects project language from manifest files (go.mod, package.json, requirements.txt)
  • For Go: extracts the target Go version from go.mod and runs govulncheck with

GOTOOLCHAIN set to that exact version, preventing false negatives from a newer local toolchain. Falls back to local toolchain if download fails.

  • For Node.js: runs npm audit --json
  • For Python: runs pip-audit -r requirements.txt
  • If the CVE is not found in the scan, checks package manifests directly
  • If the package is not in any manifest, checks Dockerfile base images
  • Writes structured result to autofix-output/cve-scan-result.json

Step 2: Interpret the scan result

Read autofix-output/cve-scan-result.json and evaluate the verdict field.

| Verdict | Meaning | |---------|---------| | present | CVE confirmed in scan — fix needed | | present_by_version | Package in manifest at vulnerable version — fix needed | | absent | Not in scan, not in manifests — VEX justification possible | | in_base_image | Package not in app code, found in Dockerfile base image | | informational | Go: module present but vulnerable symbol not called | | scan_failed | Scanner could not run — manual review needed |

Use judgment to validate the verdict:

  • If present_by_version: compare the manifest version against the CVE's

affected version range to confirm it is actually vulnerable

  • If in_base_image: determine whether a newer base image tag is available

using skopeo list-tags, or whether the base image team needs to act

  • If scan_failed: check the scan_output_summary for the root cause and

decide whether to retry or skip

Caller contract

The orchestrator (jira-autofix-cve-resolve) reads autofix-output/cve-scan-result.json and routes based on verdict:

  • present / present_by_version → invoke /cve-fix-apply
  • absent / informational → invoke /cve-vex-assess
  • in_base_image → check for newer base image tag, create PR or document
  • scan_failed → skip with documentation

Gotchas

  • govulncheck is not installed in all environments; the script falls back to version-based detection when it is unavailable
  • GOTOOLCHAIN requires a full patch version (e.g., go1.25.0, not go1.25); omitting the patch segment causes the download to fail silently
  • Exit code 3 from govulncheck means "vulnerabilities found" (a successful scan), not a failure — do not treat it as an error

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.