Documentation
¶
Overview ¶
Package snowflake provides a verifier for Snowflake credentials. Live verification requires a JDBC/ODBC connection, so this verifier performs format validation only and never reports a secret as active or inactive without contacting the provider.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Verifier ¶
type Verifier struct{}
Verifier checks whether Snowflake credentials have a plausible format. It NEVER logs or persists raw password values, and it NEVER reports a credential as active/inactive because no live verification is performed.
func (*Verifier) Verify ¶
func (v *Verifier) Verify(ctx context.Context, raw detector.RawFinding) finding.VerificationResult
Verify performs a format check on the detected Snowflake credentials. Raw contains the password value and RawV2 contains the full connection string. Because live verification requires a database connection, the result is always StatusUnverified: a valid format does not prove the credential is active, and an invalid format does not prove it is inactive.