Skip to content

Tools

Reference guide to tools for dependency management, security scanning, and supply chain hygiene. This isn't exhaustive—it covers commonly used, well-maintained options.

Tools Change

I've used different versions of every tool category here. Names change, companies get acquired, projects get abandoned. The specific tools matter less than having a tool and using it consistently. Pick one that works for your ecosystem, learn it well, and don't chase every new shiny thing.


Dependency Analysis

Tools for understanding what's in your dependency tree.

By Ecosystem

Ecosystem Built-in Third-party
npm npm ls, npm explain
Python pip show, pip list pipdeptree, pip-tools
Go go mod graph, go mod why
Rust cargo tree
Ruby bundle list, bundle viz

Cross-Ecosystem

Syft — Generates SBOMs and dependency inventories for containers, filesystems, and archives. Supports many ecosystems. https://github.com/anchore/syft

dep-scan — Dependency analysis and audit tool. Supports multiple ecosystems. https://github.com/owasp-dep-scan/dep-scan


SBOM Generation

Tools for creating Software Bills of Materials.

Tool Formats Notes
Syft SPDX, CycloneDX Multi-ecosystem, container-aware
Trivy SPDX, CycloneDX Also does vulnerability scanning
CycloneDX CLI CycloneDX Official CycloneDX tooling
SPDX tools SPDX Official SPDX tooling
npm sbom SPDX, CycloneDX Built into npm 9+

SBOM Formats

SPDX (Software Package Data Exchange) — Linux Foundation standard, ISO/IEC 5962:2021. Strong license information support. https://spdx.dev/

CycloneDX — OWASP standard. Security-focused, supports vulnerabilities and services. https://cyclonedx.org/


Vulnerability Scanning

Tools for finding known vulnerabilities in dependencies.

Open Source

Tool Type Notes
Grype CLI scanner Fast, container-aware, pairs with Syft
Trivy CLI scanner Multi-purpose: vulns, secrets, misconfig
OSV-Scanner CLI scanner Uses OSV database, Google-maintained
npm audit Built-in npm ecosystem only
pip-audit CLI tool Python ecosystem only
cargo audit CLI tool Rust ecosystem only

Grypehttps://github.com/anchore/grype Trivyhttps://trivy.dev/ OSV-Scannerhttps://github.com/google/osv-scanner

Commercial (Free Tiers Available)

Tool Notes
Snyk SCA, container, IaC scanning. Free tier generous.
Dependabot GitHub-integrated, automatic PRs
Renovate Like Dependabot, more configurable
FOSSA License + vulnerability scanning
Mend (WhiteSource) Enterprise SCA

Container Security

Tools for securing container images.

Tool Purpose
Trivy Vulnerability scanning for images
Grype Vulnerability scanning for images
Docker Scout Docker's built-in scanning
Hadolint Dockerfile linting
Dockle Container image linting
cosign Container signing (Sigstore)

Hadolinthttps://github.com/hadolint/hadolint Docklehttps://github.com/goodwithtech/dockle cosignhttps://github.com/sigstore/cosign


Artifact Signing

Tools for signing and verifying software artifacts.

Tool Type Notes
Sigstore/cosign Keyless signing Modern, supports containers and blobs
GPG Traditional Widely supported, key management overhead
Notation OCI signing CNCF project, container-focused

Sigstorehttps://www.sigstore.dev/


Lock File Management

Tools for managing dependency lock files.

Python

Tool Lock File Notes
pip-tools requirements.txt pip-compile generates locked requirements
Poetry poetry.lock Full dependency management
uv uv.lock Fast, modern, Rust-based
PDM pdm.lock PEP 582 support

uvhttps://github.com/astral-sh/uv Poetryhttps://python-poetry.org/ pip-toolshttps://github.com/jazzband/pip-tools

Node.js

Tool Lock File Notes
npm package-lock.json Default
yarn yarn.lock Alternative package manager
pnpm pnpm-lock.yaml Efficient disk usage

Reproducibility

Tools for reproducible builds and environments.

Tool Purpose
mise (formerly rtx) Tool version management
asdf Tool version management
Nix Reproducible builds and environments
Docker Environment containerization
devcontainers VS Code development containers

misehttps://mise.jdx.dev/ asdfhttps://asdf-vm.com/ Nixhttps://nixos.org/


Vulnerability Databases

Where vulnerability information comes from.

Database Scope URL
CVE All https://www.cve.org/
NVD All (enriched) https://nvd.nist.gov/
GitHub Advisory All https://github.com/advisories
OSV All https://osv.dev/
npm Advisories npm https://www.npmjs.com/advisories
PyPI Advisory Python https://github.com/pypa/advisory-database
RustSec Rust https://rustsec.org/
Go Vuln DB Go https://vuln.go.dev/

Malicious Package Intelligence

A vulnerability database tells you that a package you trust has a flaw. These tell you a package was never trustworthy.

That's a different question with a different answer shape — no CVE, no patched version, no upgrade path, just remove it and rotate whatever it touched — and most teams only have the first one wired up. Every case study in Lessons Learned involving a hostile publish would have shown up here first.

Source Scope Notes
OpenSourceMalware npm, PyPI, Maven, NuGet, RubyGems, Packagist, crates.io, Go modules, VS Code Marketplace, Open VSX, AI skills registries Free. Aggregates GHSA, OSV, and vendor research, then enriches with threat-intel metadata and links packages sharing a publisher
OSSF malicious-packages Cross-ecosystem OpenSSF's report repository, published in OSV format — machine-consumable, diffable, and the upstream for many MAL- records
OSV Cross-ecosystem Already listed above, but note it carries MAL- prefixed malicious package records alongside conventional advisories

OpenSourceMalwarehttps://opensourcemalware.com/ (docs: https://docs.opensourcemalware.com/) OSSF malicious-packageshttps://github.com/ossf/malicious-packages

These feeds are retrospective

A package appears here after someone caught it. The keyv worm published 2,234 versions in a morning; the feeds were accurate by that afternoon and useless at 10:12 UTC. Treat malicious package intelligence as the thing that tells you whether you were hit, not the thing that stops you from being hit. Release cooldowns and ignore-scripts are what buy you the hours these feeds need.


Security Frameworks and Standards

Reference materials for security practices.

Resource Purpose
SLSA Supply chain integrity framework
OpenSSF Scorecard Project security health metrics
NIST SSDF Secure development framework
OWASP Application security resources

SLSAhttps://slsa.dev/ OpenSSF Scorecardhttps://securityscorecards.dev/ NIST SSDFhttps://csrc.nist.gov/projects/ssdf