Files
nick-doc/Issues/ISSUE-116-frontend-backend-scanner-ci-images-not-pinned-to-digests.md
Siavash Sameni dceaf82934 audit: 2026-05-30 full-codebase audit — report, issues, docs, runbooks
Full-codebase-audit 2026-05-30 outputs:
- Audit report: 09 - Audits/Full Codebase Audit - 2026-05-30.md
- 81 issue files ISSUE-055..135 (decisions + 1 skipped no-brainer).
- Scanner docs from scratch (was zero): architecture, data model, API ref, payment
  flow, operations runbook + repo README.
- Doc-sync updates across API reference, data models, flows, design system.
- Secret Rotation Runbook (08 - Operations) for the exposed credentials.
- Reusable workflow guide (07 - Development) + .claude/workflows/full-codebase-audit.js.

Issues remain status:open intentionally — the code fixes are uncommitted-then-committed
working-tree changes per repo and aren't "resolved" until merged/deployed.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-05-30 18:48:04 +04:00

1.5 KiB

issue, title, severity, domain, labels, status, created, source
issue title severity domain labels status created source
116 Frontend/scanner/backend: CI pipeline images not pinned to digests — tag-hijack risk medium CI/CD
security
ci-cd
supply-chain
open 2026-05-30 Full Codebase Audit 2026-05-30

Frontend/scanner/backend: CI pipeline images not pinned to digests — tag-hijack risk

Severity: medium Domain: CI/CD Labels: security, ci-cd, supply-chain

Description

CI step images across all three repos use floating version tags or latest (node, buildx plugin, curl, alpine). A tag can be replaced with a malicious image that exfiltrates secrets or produces a compromised build artifact.

NB-40 and NB-41 pinned the scanner alpine:latest and buildx plugin. The broader policy of pinning all CI images across all repos remains a decision.

Options

  1. Pin all CI images (node, buildx plugin, curl, alpine) to immutable digests — track updates via Renovate.
  2. Pin to specific version tags only.
  3. Use a vetted internal mirror with digests.

Recommendation

Pin every CI step image to a digest across all pipelines; track updates via Renovate. Affects all CI files in frontend, backend, and scanner.

Affected Files

  • frontend/.woodpecker/development.yml:8
  • frontend/.woodpecker/production.yml
  • backend/.woodpecker/development.yml
  • scanner/.woodpecker/development.yml
  • (and all other pipeline files)

References