Skip to content

fix(deps): update module github.com/sigstore/sigstore-go to v1.2.1 [security] (alauda-v2.6.2) - #56

Open
alaudaa-renovate[bot] wants to merge 1 commit into
alauda-v2.6.2from
renovate/alauda-v2.6.2-go-github.com-sigstore-sigstore-go-vulnerability
Open

fix(deps): update module github.com/sigstore/sigstore-go to v1.2.1 [security] (alauda-v2.6.2)#56
alaudaa-renovate[bot] wants to merge 1 commit into
alauda-v2.6.2from
renovate/alauda-v2.6.2-go-github.com-sigstore-sigstore-go-vulnerability

Conversation

@alaudaa-renovate

@alaudaa-renovate alaudaa-renovate Bot commented Jul 10, 2026

Copy link
Copy Markdown

This PR contains the following updates:

Package Change Age Confidence
github.com/sigstore/sigstore-go v1.1.4 -> v1.2.1 age confidence

sigstore-go has a multi-log threshold bypass via single compromised log

CVE-2026-49834 / GHSA-9vcr-p3rj-q5q6 / GO-2026-5952

More information

Details

Impact

What kind of vulnerability is it? Who is impacted?

A verifier configured with WithTransparencyLog(N>1) or WithSignedCertificateTimestamps(N>1) expected defense-in-depth against the compromise of a single log instance. However, threshold counting counted verified witnesses per-entry or per-validation-path rather than per-log-authority.

As a result, a single compromised transparency log could forge multiple entries with different indices, and a single compromised CT log could verify multiple times (either across multiple certificate chains or via multiple embedded SCTs), fully satisfying the multi-log threshold requirements and defeating the multi-log policy.

Note that this does not affect Cosign, as Cosign sets a threshold of 1.

Patches

Has the problem been patched? What versions should users upgrade to?

Upgrade to v1.1.5.

Workarounds

Is there a way for users to fix or remediate the vulnerability without upgrading?

There is no workaround, beyond relying on trusted logs.

Severity

  • CVSS Score: 5.9 / 10 (Medium)
  • Vector String: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N

References

This data is provided by OSV and the GitHub Advisory Database (CC-BY 4.0).


sigstore-go has a multi-log threshold bypass via single compromised log in github.com/sigstore/sigstore-go

CVE-2026-49834 / GHSA-9vcr-p3rj-q5q6 / GO-2026-5952

More information

Details

sigstore-go has a multi-log threshold bypass via single compromised log in github.com/sigstore/sigstore-go

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


sigstore-go fails to check signature timestamps against a signing key's validity period

CVE-2026-54787 / GHSA-wqqc-jjcq-vfxm / GO-2026-6162

More information

Details

sigstore-go fails to check signature timestamps against a signing key's validity period for self-managed long-lived keys without certificates.

Impact

To verify a bundle with a self-managed long-lived key, the key needs to be wrapped in an ExpiringKey type that implies expiration semantics:

signatureVerifier, _ := signature.LoadDefaultVerifier(publicKey)
expiredKey := root.NewExpiringKey(signatureVerifier, time.Unix(0, 0), time.Unix(1, 0))

Despite the API contract, the validator does not check the bundle signing time against the validity window. Attackers that obtain expired key materials may be able to sign bundles with those materials that are accepted despite a configured expiry date. This issue only impacts the long-lived signing key workflow, and not standard deployments involving a certificate authority.

Reproduction steps

Start from a sigstore-go checkout:

git clone https://github.com/sigstore/sigstore-go.git
cd sigstore-go
git checkout 8ca80c47ef03d26ebf174db7c296700b075b2c16

Apply the patch containing the test case and associated materials:

git apply sigstore-go-public-key-validity-test.patch

Run the test:

go test ./pkg/verify -run TestPublicKeyValidityCheckedAgainstSignedTimestamp

On vulnerable code, the test fails because verification succeeds even though the trusted ExpiringKey is not valid at the signed timestamp:

--- FAIL: TestPublicKeyValidityCheckedAgainstSignedTimestamp
    signed_entity_test.go:602:
        	Error:      	An error is expected but got nil.

Severity

  • CVSS Score: 3.1 / 10 (Low)
  • Vector String: CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:L/A:N

References

This data is provided by OSV and the GitHub Advisory Database (CC-BY 4.0).


sigstore-go fails to check signature timestamps against a signing key's validity period in github.com/sigstore/sigstore-go

CVE-2026-54787 / GHSA-wqqc-jjcq-vfxm / GO-2026-6162

More information

Details

sigstore-go fails to check signature timestamps against a signing key's validity period in github.com/sigstore/sigstore-go

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Release Notes

sigstore/sigstore-go (github.com/sigstore/sigstore-go)

v1.2.1

Compare Source

What's Changed

v1.2.1 resolves GHSA-wqqc-jjcq-vfxm.

Full Changelog: sigstore/sigstore-go@v1.2.0...v1.2.1

v1.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: sigstore/sigstore-go@v1.1.4...v1.2.0


Configuration

📅 Schedule: Branch creation - "" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@alaudaa-renovate
alaudaa-renovate Bot force-pushed the renovate/alauda-v2.6.2-go-github.com-sigstore-sigstore-go-vulnerability branch from 0490f97 to a3c10f2 Compare August 5, 2026 16:05
@alaudaa-renovate alaudaa-renovate Bot changed the title fix(deps): update module github.com/sigstore/sigstore-go to v1.2.0 [security] (alauda-v2.6.2) fix(deps): update module github.com/sigstore/sigstore-go to v1.2.1 [security] (alauda-v2.6.2) Aug 5, 2026
@alaudaa-renovate

Copy link
Copy Markdown
Author

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 96 additional dependencies were updated

Details:

Package Change
github.com/go-openapi/runtime v0.29.3 -> v0.32.3
github.com/go-openapi/strfmt v0.26.1 -> v0.26.3
github.com/go-openapi/swag v0.25.5 -> v0.26.0
github.com/go-openapi/swag/conv v0.25.5 -> v0.26.0
github.com/google/certificate-transparency-go v1.3.2 -> v1.3.3
github.com/google/go-containerregistry v0.20.7 -> v0.21.6
github.com/in-toto/attestation v1.1.2 -> v1.2.0
github.com/secure-systems-lab/go-securesystemslib v0.10.0 -> v0.11.0
github.com/sigstore/protobuf-specs v0.5.0 -> v0.5.1
github.com/sigstore/rekor v1.5.0 -> v1.5.2
github.com/sigstore/rekor-tiles/v2 v2.0.1 -> v2.2.2-0.20260601073857-5d098a2b6443
github.com/sigstore/sigstore v1.10.5 -> v1.10.8
github.com/sigstore/sigstore/pkg/signature/kms/aws v1.10.5 -> v1.10.8
github.com/sigstore/sigstore/pkg/signature/kms/azure v1.10.5 -> v1.10.8
github.com/sigstore/sigstore/pkg/signature/kms/gcp v1.10.5 -> v1.10.8
github.com/sigstore/sigstore/pkg/signature/kms/hashivault v1.10.5 -> v1.10.8
github.com/sigstore/timestamp-authority/v2 v2.0.6 -> v2.1.2
github.com/theupdateframework/go-tuf/v2 v2.4.1 -> v2.4.2-0.20260407074541-7e8f69f906ef
golang.org/x/crypto v0.50.0 -> v0.52.0
golang.org/x/term v0.42.0 -> v0.43.0
google.golang.org/api v0.272.0 -> v0.280.0
k8s.io/api v0.34.1 -> v0.35.3
k8s.io/apimachinery v0.34.1 -> v0.35.3
k8s.io/client-go v0.34.1 -> v0.35.3
k8s.io/utils v0.0.0-20250820121507-0af2bda4dd1d -> v0.0.0-20251002143259-bc988d571ff4
cloud.google.com/go/auth v0.18.2 -> v0.20.0
cloud.google.com/go/iam v1.5.3 -> v1.11.0
cloud.google.com/go/kms v1.26.0 -> v1.31.0
cloud.google.com/go/longrunning v0.8.0 -> v1.0.0
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.0 -> v1.21.1
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.2 -> v1.12.0
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.4.0 -> v1.5.0
github.com/AzureAD/microsoft-authentication-library-for-go v1.6.0 -> v1.7.0
github.com/aws/aws-sdk-go-v2 v1.41.4 -> v1.41.7
github.com/aws/aws-sdk-go-v2/config v1.32.12 -> v1.32.17
github.com/aws/aws-sdk-go-v2/credentials v1.19.12 -> v1.19.16
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.20 -> v1.18.23
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.20 -> v1.4.23
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.20 -> v2.7.23
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.7 -> v1.13.9
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.20 -> v1.13.23
github.com/aws/aws-sdk-go-v2/service/kms v1.50.3 -> v1.52.0
github.com/aws/aws-sdk-go-v2/service/signin v1.0.8 -> v1.0.11
github.com/aws/aws-sdk-go-v2/service/sso v1.30.13 -> v1.30.17
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.17 -> v1.35.21
github.com/aws/aws-sdk-go-v2/service/sts v1.41.9 -> v1.42.1
github.com/aws/smithy-go v1.24.2 -> v1.25.1
github.com/docker/cli v29.2.0+incompatible -> v29.4.3+incompatible
github.com/go-chi/chi/v5 v5.2.5 -> v5.3.0
github.com/go-openapi/analysis v0.24.3 -> v0.25.2
github.com/go-openapi/jsonpointer v0.22.5 -> v0.23.1
github.com/go-openapi/jsonreference v0.21.5 -> v0.21.6
github.com/go-openapi/spec v0.22.4 -> v0.22.5
github.com/go-openapi/swag/cmdutils v0.25.5 -> v0.26.0
github.com/go-openapi/swag/fileutils v0.25.5 -> v0.26.0
github.com/go-openapi/swag/jsonname v0.25.5 -> v0.26.0
github.com/go-openapi/swag/jsonutils v0.25.5 -> v0.26.0
github.com/go-openapi/swag/loading v0.25.5 -> v0.26.0
github.com/go-openapi/swag/mangling v0.25.5 -> v0.26.0
github.com/go-openapi/swag/netutils v0.25.5 -> v0.26.0
github.com/go-openapi/swag/stringutils v0.25.5 -> v0.26.0
github.com/go-openapi/swag/typeutils v0.25.5 -> v0.26.0
github.com/go-openapi/swag/yamlutils v0.25.5 -> v0.26.0
github.com/go-openapi/validate v0.25.2 -> v0.25.3
github.com/golang-jwt/jwt/v5 v5.3.0 -> v5.3.1
github.com/google/trillian v1.7.2 -> v1.7.3
github.com/googleapis/enterprise-certificate-proxy v0.3.14 -> v0.3.15
github.com/googleapis/gax-go/v2 v2.19.0 -> v2.22.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.4 -> v2.29.0
github.com/klauspost/compress v1.18.1 -> v1.18.6
github.com/letsencrypt/boulder v0.20260223.0 -> v0.20260309.0
github.com/prometheus/procfs v0.17.0 -> v0.20.1
github.com/tink-crypto/tink-go-hcvault/v2 v2.4.0 -> v2.5.0
github.com/transparency-dev/formats v0.0.0-20251017110053-404c0d5b696c -> v0.1.1
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0 -> v0.67.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 -> v0.67.0
go.opentelemetry.io/otel v1.43.0 -> v1.44.0
go.opentelemetry.io/otel/metric v1.43.0 -> v1.44.0
go.opentelemetry.io/otel/sdk v1.43.0 -> v1.44.0
go.opentelemetry.io/otel/trace v1.43.0 -> v1.44.0
go.uber.org/zap v1.27.1 -> v1.28.0
go.yaml.in/yaml/v2 v2.4.3 -> v2.4.4
golang.org/x/mod v0.34.0 -> v0.36.0
golang.org/x/net v0.53.0 -> v0.55.0
golang.org/x/sys v0.43.0 -> v0.45.0
golang.org/x/text v0.36.0 -> v0.37.0
golang.org/x/tools v0.43.0 -> v0.45.0
google.golang.org/genproto v0.0.0-20260316180232-0b37fe3546d5 -> v0.0.0-20260319201613-d00831a3d3e7
google.golang.org/genproto/googleapis/api v0.0.0-20260316180232-0b37fe3546d5 -> v0.0.0-20260526163538-3dc84a4a5aaa
google.golang.org/genproto/googleapis/rpc v0.0.0-20260316180232-0b37fe3546d5 -> v0.0.0-20260523011958-0a33c5d7ca68
google.golang.org/grpc v1.79.3 -> v1.81.1
gopkg.in/evanphx/json-patch.v4 v4.12.0 -> v4.13.0
gopkg.in/ini.v1 v1.67.1 -> v1.67.2
k8s.io/klog/v2 v2.130.1 -> v2.140.0
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b -> v0.0.0-20250910181357-589584f1c912
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 -> v0.0.0-20250730193827-2d320260d730

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant