INFRA-DEVOPS Contents

Tamper Detection and Incident Response

Detect tampering using checksums, attestations, and runtime validation; respond with containment and re-issuance.

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

  1. Freeze promotions; block new deploys without verified evidence.
  2. Identify impacted digests and workloads (what is running?).
  3. Rotate CI/registry credentials and signing identities.
  4. 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