Tamper Detection and Incident Response
On this page
Tamper Detection in the Delivery Chain
- Detect changes after build: artifact digest mismatch, missing signatures, altered SBOM.
- Verify at multiple points: registry, deploy gate, runtime checks.
Detection Signals
- Digest drift: tag points to a new digest without an approved promotion.
- Signature verification fails for prod digests.
- SBOM differs unexpectedly between envs for “same” version.
Incident Runbook
- Freeze promotions; block new deploys without verified evidence.
- Identify impacted digests and workloads (what is running?).
- Rotate CI/registry credentials and signing identities.
- Rebuild from trusted source and re-issue signed artifacts.
Quick Commands
# Identify running images quickly
kubectl get pods -A -o jsonpath='{$.items[*].spec.containers[*].image}' | tr ' ' '
' | sort -u | head