| Version | Supported |
|---|---|
| Latest | Yes |
If you discover a security vulnerability in this project, please report it responsibly.
Please do NOT open a public GitHub issue for security vulnerabilities.
Instead, please send an email to the project maintainers at security@zircote.com with:
- A description of the vulnerability
- Steps to reproduce the issue
- Potential impact assessment
- Any suggested fixes (if applicable)
- Acknowledgment: Within 48 hours of receipt
- Initial assessment: Within 5 business days
- Resolution target: Within 30 days for confirmed vulnerabilities
We follow coordinated disclosure. We ask that you:
- Allow us reasonable time to address the issue before public disclosure
- Make a good-faith effort to avoid privacy violations, data loss, and service disruption
- Do not exploit the vulnerability beyond what is necessary to demonstrate it
We appreciate the efforts of security researchers. Contributors who report valid vulnerabilities will be acknowledged (with permission) in our release notes.
Repositories onboarded to the attested release architecture sign container images
through the centralized signer workflow in this repository
(zircote/.github/.github/workflows/sign-and-attest.yml). Each release digest
carries SLSA provenance, a keyless signature, a CycloneDX SBOM, and a
vulnerability report as OCI referrers. Verify from any workstation with gh
(authenticated) and cosign:
# 0. Resolve the digest for a tag
DIGEST=$(gh api 'users/zircote/packages/container/<name>/versions?per_page=100' \
--jq '[.[] | select((.metadata.container.tags // []) | index("<tag>"))][0].name')
# 1. SLSA provenance — --repo asserts where the build ran,
# --signer-workflow asserts the central signer (both required)
gh attestation verify "oci://ghcr.io/zircote/<repo>@${DIGEST}" \
--repo zircote/<repo> \
--signer-workflow zircote/.github/.github/workflows/sign-and-attest.yml \
--predicate-type https://slsa.dev/provenance/v1
# 2. Keyless signature
cosign verify "ghcr.io/zircote/<repo>@${DIGEST}" \
--certificate-identity-regexp '^https://github.com/zircote/\.github/\.github/workflows/sign-and-attest\.yml@.*$' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com
# 3. SBOM attestation (vuln report: same command with
# --type "https://in-toto.io/attestation/vulns/v0.1")
cosign verify-attestation "ghcr.io/zircote/<repo>@${DIGEST}" \
--type cyclonedx \
--certificate-identity-regexp '^https://github.com/zircote/\.github/\.github/workflows/sign-and-attest\.yml@.*$' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com
# 4. Release binaries (attested by the repo's own workflow — no --signer-workflow)
gh release download <tag> --repo zircote/<repo>
gh attestation verify <binary> --repo zircote/<repo>Repositories wired to the attested quality gates (the gh-attested skill)
additionally record a signed, digest-bound attestation for each CI gate — SAST,
SCA, container/IaC/license scan, supply-chain posture, and vulnerability
disposition. Each predicate is pinned to the workflow that actually signed
it (SLSA L3 cert identity): the seam (reusable-attest-scan.yml) signs the
SARIF gates, while OpenVEX self-signs in reusable-vex.yml — so
--signer-workflow differs per predicate.
SUBJECT=oci://ghcr.io/zircote/<repo>@${DIGEST} # or a release-artifact ref
SEAM=zircote/.github/.github/workflows/reusable-attest-scan.yml
# Seam-signed gate (SAST shown; other SARIF gates: swap the predicate-type)
gh attestation verify "$SUBJECT" --owner zircote --signer-workflow "$SEAM" \
--predicate-type https://zircote.github.io/attestations/sast/v1
# Vulnerability disposition (OpenVEX — self-signed by reusable-vex.yml)
gh attestation verify "$SUBJECT" --owner zircote \
--signer-workflow zircote/.github/.github/workflows/reusable-vex.yml \
--predicate-type https://openvex.dev/ns/v0.2.0A successful verification proves the attestation is authentic and bound to the
artifact — inspect the predicate body (--format json | jq …) to read the
gate's recorded verdict. The full per-predicate command set is in the
gh-attested skill's references/verification.md.