VYPR
Moderate severityNVD Advisory· Published Feb 7, 2023· Updated Mar 10, 2025

Credential disclosure in syft when SYFT_ATTEST_PASSWORD environment variable set in syft

CVE-2023-24827

Description

syft is a a CLI tool and Go library for generating a Software Bill of Materials (SBOM) from container images and filesystems. A password disclosure flaw was found in Syft versions v0.69.0 and v0.69.1. This flaw leaks the password stored in the SYFT_ATTEST_PASSWORD environment variable. The SYFT_ATTEST_PASSWORD environment variable is for the syft attest command to generate attested SBOMs for the given container image. This environment variable is used to decrypt the private key (provided with syft attest --key <path-to-key-file>) during the signing process while generating an SBOM attestation. This vulnerability affects users running syft that have the SYFT_ATTEST_PASSWORD environment variable set with credentials (regardless of if the attest command is being used or not). Users that do not have the environment variable SYFT_ATTEST_PASSWORD set are not affected by this issue. The credentials are leaked in two ways: in the syft logs when -vv or -vvv are used in the syft command (which is any log level >= DEBUG) and in the attestation or SBOM only when the syft-json format is used. Note that as of v0.69.0 any generated attestations by the syft attest command are uploaded to the OCI registry (if you have write access to that registry) in the same way cosign attach is done. This means that any attestations generated for the affected versions of syft when the SYFT_ATTEST_PASSWORD environment variable was set would leak credentials in the attestation payload uploaded to the OCI registry. This issue has been patched in commit 9995950c70 and has been released as v0.70.0. There are no workarounds for this vulnerability. Users are advised to upgrade.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
github.com/anchore/syftGo
>= 0.69.0, < 0.70.00.70.0

Affected products

1

Patches

1
9995950c70e8

fix: update config struct to not decode password/key (#1538)

https://github.com/anchore/syftChristopher Angelo PhillipsFeb 3, 2023via ghsa
2 files changed · +17 2
  • internal/config/attest.go+3 2 modified
    @@ -3,8 +3,9 @@ package config
     import "github.com/spf13/viper"
     
     type attest struct {
    -	Key      string `yaml:"key" json:"key" mapstructure:"key"`
    -	Password string `yaml:"password" json:"password" mapstructure:"password"`
    +	// IMPORTANT: do not show the attestation key/password in any YAML/JSON output (sensitive information)
    +	Key      string `yaml:"-" json:"-" mapstructure:"key"`
    +	Password string `yaml:"-" json:"-" mapstructure:"password"`
     }
     
     func (cfg attest) loadDefaultValues(v *viper.Viper) {
    
  • test/cli/packages_cmd_test.go+14 0 modified
    @@ -229,6 +229,20 @@ func TestPackagesCmdFlags(t *testing.T) {
     				assertSuccessfulReturnCode,
     			},
     		},
    +		{
    +			name: "password and key not in config output",
    +			args: []string{"packages", "-vvv", "-o", "json", coverageImage},
    +			env: map[string]string{
    +				"SYFT_ATTEST_PASSWORD": "secret_password",
    +				"SYFT_ATTEST_KEY":      "secret_key_path",
    +			},
    +			assertions: []traitAssertion{
    +				assertNotInOutput("secret_password"),
    +				assertNotInOutput("secret_key_path"),
    +				assertPackageCount(34),
    +				assertSuccessfulReturnCode,
    +			},
    +		},
     	}
     
     	for _, test := range tests {
    

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

4

News mentions

0

No linked articles in our index yet.