SupplyGoat

No Change
trial
First Added:June 15, 2026 Updated: July 2, 2026

SupplyGoat. We trial it under Tool in the garden.

Blurb

"Vulnerable by Design" supply chain is a learning and training project that demonstrates how common configuration errors can find their way into production cloud environments. - bridgecre…

Summary

SupplyGoat extends Bridgecrew’s Goat family beyond pure IaC templates (TerraGoat, KustomizeGoat, etc.) into software composition analysis (SCA). The repo mixes vulnerable lockfiles, a **Docker**file, Terraform, and Kubernetes manifests in one lab checkout.

When to use: teaching Checkov SCA and image scanning; demoing CVE findings in npm, Python, Ruby, Java, and PHP dependency trees under package-files/; pairing dependency drills with IaC goats in DevSecOps curriculum.

When to skip: you need a full interactive vulnerable web app (use Juice Shop); you only scan Terraform or K8s YAML (use IaC goats); the upstream repo stays too sparse for your exercise without custom additions.

Repo surfaces: package.json / lockfiles, requirements.txt, Dockerfile, main.tf, deployment-kind.yaml, eks.yaml, and multi-language samples under package-files/.

Details

Compared to IaC and Web Goats

LensSupplyGoatTerraGoatJuice Shop
FocusVulnerable dependencies and imagesCloud IaC misconfigsDeliberately vulnerable web app
Primary scannerCheckov SCA / image checksCheckov IaC policiesDAST, manual exploitation
Ecosystemsnpm, pip, Ruby, Java, PHP, Go modAWS/Azure/GCP templatesNode.js SPA
Best fitSupply chain and CVE gate calibrationPre-deploy cloud complianceApp-layer CTF labs

Deployment Guardrails

  • Treat the repo as scan-first lab material; deploy only in isolated sandboxes if required.
  • The **Docker**file uses outdated base images and vulnerable npm dependencies by design.
  • Do not push built images to shared registries without explicit lab labeling.
  • Tear down any Kubernetes or cloud resources when the exercise ends.

Scan-First Lab Sketch

1
2
3
4
5
git clone https://github.com/bridgecrewio/supplygoat.git
cd supplygoat
checkov -d . --framework sca_image,sca_package
# Also scan IaC surfaces alongside SCA:
checkov -d .