VYPR
Medium severity5.3NVD Advisory· Published May 27, 2024· Updated Apr 15, 2026

CVE-2024-35238

CVE-2024-35238

Description

Minder by Stacklok is an open source software supply chain security platform. Minder prior to version 0.0.51 is vulnerable to a denial-of-service (DoS) attack which could allow an attacker to crash the Minder server and deny other users access to it. The root cause of the vulnerability is that Minders sigstore verifier reads an untrusted response entirely into memory without enforcing a limit on the response body. An attacker can exploit this by making Minder make a request to an attacker-controlled endpoint which returns a response with a large body which will crash the Minder server. Specifically, the point of failure is where Minder parses the response from the GitHub attestations endpoint in getAttestationReply. Here, Minder makes a request to the orgs/$owner/attestations/$checksumref GitHub endpoint (line 285) and then parses the response into the AttestationReply (line 295). The way Minder parses the response on line 295 makes it prone to DoS if the response is large enough. Essentially, the response needs to be larger than the machine has available memory. Version 0.0.51 contains a patch for this issue.

The content that is hosted at the orgs/$owner/attestations/$checksumref GitHub attestation endpoint is controlled by users including unauthenticated users to Minders threat model. However, a user will need to configure their own Minder settings to cause Minder to make Minder send a request to fetch the attestations. The user would need to know of a package whose attestations were configured in such a way that they would return a large response when fetching them. As such, the steps needed to carry out this attack would look as such:

  1. The attacker adds a package to ghcr.io with attestations that can be fetched via the orgs/$owner/attestations/$checksumref GitHub endpoint.
  2. The attacker registers on Minder and makes Minder fetch the attestations.
  3. Minder fetches attestations and crashes thereby being denied of service.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
github.com/stacklok/minderGo
< 0.0.510.0.51

Patches

3
fe321d345b4f

Merge pull request from GHSA-8fmj-33gw-g7pw

https://github.com/stacklok/minderJuan Antonio OsorioMay 20, 2024via ghsa
1 file changed · +9 2
  • internal/verifier/sigstore/container/container.go+9 2 modified
    @@ -24,6 +24,7 @@ import (
     	"encoding/pem"
     	"errors"
     	"fmt"
    +	"io"
     	"net/http"
     	"strings"
     
    @@ -49,6 +50,10 @@ var (
     	// ErrProvenanceNotFoundOrIncomplete is returned when there's no provenance info (missing .sig or attestation) or
     	// has incomplete data
     	ErrProvenanceNotFoundOrIncomplete = errors.New("provenance not found or incomplete")
    +
    +	// MaxAttestationsBytesLimit is the maximum number of bytes we're willing to read from the attestation endpoint
    +	// We'll limit this to 10mb for now
    +	MaxAttestationsBytesLimit int64 = 10 * 1024 * 1024
     )
     
     const (
    @@ -291,8 +296,9 @@ func getAttestationReply(
     	}
     	defer resp.Body.Close()
     
    +	lr := io.LimitReader(resp.Body, MaxAttestationsBytesLimit)
     	var attestationReply AttestationReply
    -	if err := json.NewDecoder(resp.Body).Decode(&attestationReply); err != nil {
    +	if err := json.NewDecoder(lr).Decode(&attestationReply); err != nil {
     		return nil, fmt.Errorf("error decoding response: %w", err)
     	}
     
    @@ -446,7 +452,8 @@ func getSimpleSigningLayersFromSignatureManifest(manifestRef string, auth authn.
     	}
     
     	// Parse the manifest
    -	manifest, err := v1.ParseManifest(bytes.NewReader(mf))
    +	r := io.LimitReader(bytes.NewReader(mf), MaxAttestationsBytesLimit)
    +	manifest, err := v1.ParseManifest(r)
     	if err != nil {
     		return nil, fmt.Errorf("error parsing signature manifest: %w", err)
     	}
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

5

News mentions

0

No linked articles in our index yet.