offensive-tools/vuln-scanners/grype/SKILL.md
Auth/lab ref: fast vulnerability scanner for container images, filesystems, SBOMs, and directories.
npx skillsauth add aeondave/malskill grypeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fast vulnerability scanner with composite risk scoring — CVEs in images, code, SBOMs.
# Scan Docker image
grype nginx:latest
# Scan directory
grype dir /path/to/project
# Scan SBOM file
grype sbom:sbom.json
# Only show fixable HIGH+
grype nginx:latest --only-fixed -f high
grype <image> # Docker/OCI image (pulls from registry)
grype dir:<path> # Local filesystem/directory
grype sbom:<file> # SBOM file (SPDX or CycloneDX)
grype docker-archive:<file> # Saved Docker archive (.tar)
grype registry:<image> # Force registry source
| Flag | Purpose |
|------|---------|
| -o, --output <fmt> | Output format: table / json / sarif / cyclonedx / template |
| --file <path> | Write output to file |
| -f, --fail-on <sev> | Exit 2 if severity ≥ level: critical/high/medium/low/negligible |
| --only-fixed | Show only vulns with available fix |
| --only-notfixed | Show only unfixed vulns |
| --ignore-states <states> | Ignore fix states: wont-fix,unknown,fixed,not-affected |
| -s, --scope <scope> | Layer scope: squashed (default) / all-layers |
| --sort-by <key> | Sort: severity / epss / risk / kev / package |
| --add-cpes-if-none | Generate CPEs for packages missing them |
| --by-cve | Group by CVE instead of vulnerability ID |
| --platform <os/arch> | Platform for multi-arch images (linux/amd64) |
| --distro <dist:ver> | Override distro detection |
| --vex <file> | Apply VEX document for result filtering |
| --show-suppressed | Display suppressed findings |
| -q, --quiet | Suppress logs |
| -v / -vv | Verbose / debug |
| -c, --config <file> | Config file path |
grype db status # Show current DB metadata
grype db check # Check for updates
grype db update # Download latest DB
grype db list # Available databases
grype db search CVE-2021-44228 # Query DB for specific CVE
grype db search --package curl # Find vulns for package
grype provides composite risk score (0.0–10.0) combining:
# Sort by risk score (highest = most actionable)
grype nginx:latest --sort-by risk
# Sort by EPSS (exploitation likelihood)
grype nginx:latest --sort-by epss
# Sort by KEV status first
grype nginx:latest --sort-by kev
# CI gate: fail on HIGH+ unfixed
grype myapp:latest --only-fixed -f high
echo $? # 0 = clean, 2 = findings at threshold
# JSON report with all details
grype nginx:latest -o json --file vuln_report.json
# SARIF for GitHub Advanced Security
grype myapp:latest -o sarif --file grype.sarif
# Scan with ignore rules
grype myapp:latest -c .grype.yaml
# Scan all image layers (not just squashed)
grype myapp:latest --scope all-layers
# Scan SBOM from syft
syft nginx:latest -o json | grype sbom:- --output json
# Explain a specific CVE
grype explain --id CVE-2021-44228
# Check if image has any KEV-listed vulns
grype myapp:latest --sort-by kev -o table
grype nginx:latest -o json --file scan.json
# Extract findings
cat scan.json | jq '.matches[] | {cve: .vulnerability.id, pkg: .artifact.name, severity: .vulnerability.severity, fix: .vulnerability.fix.versions[0]}'
# Count by severity
cat scan.json | jq '[.matches[].vulnerability.severity] | group_by(.) | map({sev: .[0], count: length})'
# Only CRITICAL with fixes
cat scan.json | jq '.matches[] | select(.vulnerability.severity=="Critical" and (.vulnerability.fix.versions | length > 0)) | {cve: .vulnerability.id, pkg: .artifact.name, fix: .vulnerability.fix.versions[0]}'
| File | When to load |
|------|--------------|
| references/config-ignore.md | .grype.yaml ignore rules, registry auth, syft integration, VEX |
development
Auth/lab ref: Unicorn Engine CPU-only emulation for shellcode, decryptors, custom VM handlers, instruction tracing, memory hooks, and register-level experiments.
development
Auth/lab ref: Renode board and SoC simulation for MCU/RTOS firmware, UART/GPIO/peripheral modeling, GDB remote debugging, REPL platforms, and RESC scripts.
development
Auth/lab ref: Qiling OS-layer binary emulation for PE/ELF/Mach-O/UEFI/shellcode with rootfs, syscall/API hooks, filesystem mapping, and runtime patching.
databases
Auth/lab ref: QEMU user-mode and full-system emulation for cross-arch binaries, firmware, kernels, disks, serial consoles, networking, and GDB stubs.