Skip to content

Evidence request lists

SLSA

Evidence request list. 24 controls, 24 carrying auditor artefact guidance. Generated from the compliance knowledge graph on 12 September 2026. Published by The Art of Service.

Build Integrity

SUPCHAIN-1
Build Integrity - Source, Build, Provenance

Per Supply-chain Levels for Software Artifacts (SLSA) v1.0+: build integrity. Requirements include (a) Source - version controlled + auditable + (b) Build - scripted + isolated + parameterless + hermetic + reproducible + (c) Provenance - generated by isolated builder + complete attestation + cryptographically signed + (d) align with SLSA Build Levels L1-L4.

Artefacts an auditor will ask for
  • SLSA evidence for SUPCHAIN-1
Where this commonly fails
  • L4 + verification + SBOM partial

Build Track Levels

SLSA-BUILD-L1-1
Documented Build Process

Document the build process so that any party with the source can reproduce or verify how artifacts are produced, including tooling versions and steps.

Artefacts an auditor will ask for
  • README or BUILDING.md describing build steps
  • Dockerfile or build container definition
  • Build tool version pins (Bazel, Make, Gradle, npm)
  • Build script in repository
Where this commonly fails
  • Build steps only known to one engineer
  • Tooling versions floating and not pinned
  • Manual steps undocumented in CI configuration
SLSA-BUILD-L1-2
Provenance Generation

Generate and distribute SLSA provenance attestations alongside each released artifact, describing how the artifact was built.

Artefacts an auditor will ask for
  • in-toto attestation JSON file per artifact
  • Provenance predicate (SLSA Provenance v1)
  • Release page showing attestation alongside binary
  • SHA256 digest of artifact referenced in provenance
Where this commonly fails
  • Provenance generated but not published with release
  • Provenance missing subject digest binding
  • Provenance only available for some artifacts in release
SLSA-BUILD-L2-1
Hosted Build Platform

Run builds on a hosted build platform that is administered separately from individual developers, removing reliance on developer workstations.

Artefacts an auditor will ask for
  • CI service identification (GitHub Actions, GitLab CI, Buildkite, Tekton)
  • Workflow YAML stored in repository
  • Build runner inventory and ownership
  • Admin access list for build platform
Where this commonly fails
  • Builds run on developer laptops or shared VMs
  • Self-hosted runners with no isolation between projects
  • Workflow files editable without code review
SLSA-BUILD-L2-2
Signed Provenance

Cryptographically sign provenance attestations using a key controlled by the build platform so that consumers can verify authenticity.

Artefacts an auditor will ask for
  • Sigstore Cosign signature or DSSE envelope
  • Fulcio certificate or long lived public key
  • Rekor transparency log entry
  • Documented verification procedure for consumers
Where this commonly fails
  • Provenance unsigned or signed by developer key
  • Public verification key not published
  • Signature scheme not bound to build platform identity
SLSA-BUILD-L3-1
Hardened Build Platform

Operate the build platform such that build steps cannot inject false provenance, with tenant isolation and ephemeral build environments.

Artefacts an auditor will ask for
  • Build platform threat model and L3 conformance statement
  • Configuration showing ephemeral or single use runners
  • Build secret access policy
  • Penetration test or external review of build platform
Where this commonly fails
  • Long lived runners reused across projects
  • Build user able to read signing key material
  • No documented threat model for the build platform
SLSA-BUILD-L3-2
Isolated Provenance Generation

Generate provenance in a control plane that the build steps cannot influence, ensuring the attestation reflects what actually ran.

Artefacts an auditor will ask for
  • Architecture diagram showing control plane vs worker
  • Code reference for provenance generator (GitHub OIDC, SLSA GitHub generator)
  • Audit log showing provenance produced by control plane
  • Evidence build steps cannot write to attestation
Where this commonly fails
  • Provenance generated inside the same job as the build
  • Build steps can edit attestation before signing
  • No log proving control plane authored provenance
SLSA-BUILD-PARAM-1
Build Parameter Recording

Record all build parameters and environment variables that influence the output, capturing them in provenance for reproducibility analysis.

Artefacts an auditor will ask for
  • Provenance buildDefinition.externalParameters field populated
  • Provenance buildDefinition.internalParameters where applicable
  • Documentation of which parameters affect output
  • Sample provenance showing complete parameter set
Where this commonly fails
  • Provenance lists empty external parameters
  • Secret values or non determinism not noted in provenance
  • Different invocations producing artifacts with no recorded parameter diff
SLSA-RUNNER-1
Build Runner Integrity

Maintain the integrity of build runners through patched base images, restricted network egress, and segregation of duties.

Artefacts an auditor will ask for
  • Runner image build pipeline and version inventory
  • Network egress allow list for build jobs
  • Runner patch and rebuild schedule
  • Access control restricting who can SSH or exec into runners
Where this commonly fails
  • Long lived runners with unpatched OS
  • Builds with unrestricted internet access enabling exfiltration
  • Engineers with shell access to production runners

Dependencies

SUPCHAIN-3
Dependency Verification and SBOM

Per SLSA Dependency Track: dependencies. Requirements include (a) Software Bill of Materials (SBOM) + (b) dependency verification + provenance + (c) vulnerability scanning + (d) license + malicious package screening + (e) reproducible dependency resolution.

Artefacts an auditor will ask for
  • SLSA evidence for SUPCHAIN-3
Where this commonly fails
  • L4 + verification + SBOM partial

Dependency Track

SLSA-DEP-1
Dependency Inventory

Maintain an accurate inventory of all direct and transitive dependencies consumed by the software, with version pinning.

Artefacts an auditor will ask for
  • package-lock.json, poetry.lock, go.sum, Cargo.lock or equivalent
  • CycloneDX or SPDX SBOM per release
  • Container base image manifest with pinned digests
  • Vendored dependency directory or proxy configuration
Where this commonly fails
  • Lock files not committed or out of date
  • Floating tags used for container base images
  • SBOM generated but never compared release to release
SLSA-DEP-2
Dependency Provenance Verification

Verify provenance and integrity of dependencies before they enter the build, using digests, signatures, or trusted registries.

Artefacts an auditor will ask for
  • Package manager integrity check configuration (npm audit signatures, pip hashes)
  • Internal artifact proxy or repository (Artifactory, Nexus, GitHub Packages)
  • Cosign verify policy for container images
  • Allow list of approved registries
Where this commonly fails
  • Direct pulls from public registries without hash verification
  • No verification of upstream signatures even when provided
  • Mirror not configured to reject unsigned uploads
SLSA-DEP-3
Vulnerability Monitoring of Dependencies

Continuously monitor dependencies for known vulnerabilities and apply patches or mitigations on a defined schedule.

Artefacts an auditor will ask for
  • Dependabot, Renovate or Snyk configuration
  • Vulnerability scanner report per release
  • Triage queue or issue tracker showing CVE handling
  • Remediation SLA policy by severity
Where this commonly fails
  • Critical CVEs open beyond SLA
  • Scanner findings ignored without documented rationale
  • No alerting when new CVE published against pinned versions

Producer Requirements

SLSA-EXPECT-1
Expectations Document for Artifacts

Publish or maintain expectations describing the source repository, builder, and provenance fields that must match for an artifact to be trusted.

Artefacts an auditor will ask for
  • YAML or JSON expectations file in version control
  • Mapping of artifact name to expected builder ID and source URI
  • Change history showing review of expectations updates
  • Test cases proving expectations match real provenance
Where this commonly fails
  • Expectations only in engineer head, not file
  • No process to update expectations when builder changes
  • Single global expectation, not per artifact
SLSA-PROD-1
Producer Identification

Identify and document the producer (organization or team) responsible for each software artifact, enabling consumers to trace artifacts back to a known accountable party.

Artefacts an auditor will ask for
  • Producer identity document (name, contact, public key)
  • Repository CODEOWNERS file
  • Published producer page on project site
  • Signed producer statement bound to artifacts
Where this commonly fails
  • Anonymous or shared maintainer accounts with no real identity tie
  • No published contact for security disclosures
  • Producer identity not bound to signing keys
SLSA-PROD-2
Public Source Repository

Host source code in a version controlled repository that records all changes with author attribution and immutable history.

Artefacts an auditor will ask for
  • Git repository URL and config export
  • Branch protection settings screenshot
  • Commit signing policy
  • Force push and history rewrite restrictions
Where this commonly fails
  • Force pushes allowed on protected branches
  • Commits without verified author identity
  • Local mirrors not synchronized with canonical source

Source Integrity

SUPCHAIN-2
Source Integrity - Branch Protection, Code Review, Two-Person Rule

Per SLSA Source Track: source integrity. Requirements include (a) branch protection + signed commits + (b) code review + two-person review for changes + (c) source repository security + (d) developer identity + access controls + (e) audit log of changes.

Artefacts an auditor will ask for
  • SLSA evidence for SUPCHAIN-2
Where this commonly fails
  • L4 + verification + SBOM partial

Source Track

SLSA-SRC-1
Verified Source History

Ensure source code history is verifiable, with commits bound to identified contributors and history protected from rewriting.

Artefacts an auditor will ask for
  • Branch protection requiring signed commits
  • GPG or sigstore commit signature policy
  • Audit log of force push attempts blocked
  • Contributor identity verification process
Where this commonly fails
  • Unsigned commits accepted on default branch
  • Bot accounts pushing without identity binding
  • History rewrites accepted via admin override
SLSA-SRC-2
Two Person Reviewed Changes

Require that every change to protected branches is reviewed and approved by at least one party other than the author.

Artefacts an auditor will ask for
  • Branch protection rule requiring pull request approval
  • Sample pull requests showing reviewer approval
  • List of users with admin bypass and justification
  • CODEOWNERS file routing reviews
Where this commonly fails
  • Self review allowed by admins
  • Bypass used routinely for hotfixes without compensating control
  • Approval given by same person via shared bot account

Supply Chain Incident Response

SLSA-INCIDENT-1
Supply Chain Incident Response

Maintain a documented procedure to respond to supply chain incidents affecting source, build, or dependencies, including artifact recall.

Artefacts an auditor will ask for
  • Supply chain incident response runbook
  • Past incident postmortem (or tabletop exercise record)
  • Public security advisory template
  • Process to revoke or yank affected releases
Where this commonly fails
  • No runbook specifically for build platform compromise
  • No way to invalidate provenance or signal compromise to consumers
  • Incident process exists but never exercised

Verification

SUPCHAIN-4
Verification, Attestation, In-Toto Integration

Per SLSA Verification: verification + attestation. Requirements include (a) verify provenance attestations + (b) integrate with in-toto + Sigstore + (c) implement verification policy + (d) reject unverified artifacts + (e) integrate with admission control.

Artefacts an auditor will ask for
  • SLSA evidence for SUPCHAIN-4
Where this commonly fails
  • L4 + verification + SBOM partial

Verification and Attestation

SLSA-CONSUMER-1
Provenance Verification by Consumer

Verify SLSA provenance on artifacts before deploying or installing them, including signature, builder identity, and source reference.

Artefacts an auditor will ask for
  • slsa-verifier or cosign verify command in deployment pipeline
  • Admission controller policy (Kyverno, OPA, Gatekeeper)
  • Logs showing failed verification rejecting deployment
  • Documented expected builder identity per artifact
Where this commonly fails
  • Verification logs absent or only warning, not blocking
  • Builder identity not pinned, allowing any signed artifact
  • Verification skipped for break glass deployments
SLSA-CONSUMER-2
Artifact Storage and Distribution Integrity

Store and distribute released artifacts in a registry that preserves immutability and supports digest based retrieval.

Artefacts an auditor will ask for
  • Container registry with immutable tags or digest pinning
  • Object storage with versioning and write once policy
  • Access control matrix for publish vs read
  • Replication and backup configuration
Where this commonly fails
  • Tags overwritten in container registry
  • Public artifact bucket without integrity logging
  • Single registry without backup for recovery
SLSA-VSA-1
Verification Summary Attestation

Produce Verification Summary Attestations after verifying an artifact, so downstream consumers can rely on the verification result without rerunning all checks.

Artefacts an auditor will ask for
  • VSA in DSSE format signed by verifier identity
  • Mapping of VSA verifier identity to consumer trust list
  • Storage location of VSAs alongside artifacts
  • Documented policy mapping VSA result to deployment decision
Where this commonly fails
  • No VSA produced, every consumer reverifies independently
  • VSA produced but never signed
  • VSA result not checked at deployment gate
Assembled from the framework's own control set. Every line traces to a control in the graph, so this pack is regenerated rather than written, and stays current as the graph does.

Assembled from the framework’s own control set, so this list is regenerated rather than written and stays current as the graph does. See the SLSA framework page.