diff --git a/internal/attestation/snp/validator.go b/internal/attestation/snp/validator.go index c882ced51..6c6933c39 100644 --- a/internal/attestation/snp/validator.go +++ b/internal/attestation/snp/validator.go @@ -99,9 +99,10 @@ func (v *Validator) Validate(ctx context.Context, attDocRaw []byte, nonce []byte // Report signature verification. - verifyOpts := &verify.Options{ - Getter: v.kdsGetter, - } + verifyOpts := verify.DefaultOptions() + verifyOpts.CheckRevocations = true + verifyOpts.Getter = v.kdsGetter + attestation, err := verify.GetAttestationFromReport(report, verifyOpts) if err != nil { return fmt.Errorf("getting attestation from report: %w", err)