Skip to content

Commit

Permalink
docs: add docs to verify images
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneboulden committed Mar 3, 2024
1 parent 4420191 commit 71ca1cc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/kacti/docs/supply-chain-security/verifying-images.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
sidebar_position: 2
---

# Verifying kacti images
Kacti images are signed using Sigstore, and provenance is recorded in the public-good Rekor instance.

You can verify the provenance of Kacti images using `cosign`:
```
$ kacti images --list
CVE: CVE-2021-44228 -> Image: quay.io/kacti/log4shell@sha256:f72efa1cb3533220212bc49716a4693b448106b84ca259c20422ab387972eed9
$ cosign verify \
--certificate-oidc-issuer https://github.com/login/oauth \
--certificate-identity [email protected] \
quay.io/kacti/log4shell@sha256:f72efa1cb3533220212bc49716a4693b448106b84ca259c20422ab387972eed9
Verification for quay.io/kacti/log4shell@sha256:f72efa1cb3533220212bc49716a4693b448106b84ca259c20422ab387972eed9 --
The following checks were performed on each of these signatures:
- The cosign claims were validated
- Existence of the claims in the transparency log was verified offline
- The code-signing certificate was verified using trusted certificate authority certificates
```

0 comments on commit 71ca1cc

Please sign in to comment.