Documentation
¶
Overview ¶
Package sentry provides a verifier for Sentry authentication tokens. It uses the auth-required Sentry API GET /api/0/organizations/ endpoint to check token validity. The API root (/api/0/) responds 200 without authentication, so it cannot distinguish a valid token from an invalid one and must not be used for verification.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Verifier ¶
type Verifier struct {
// contains filtered or unexported fields
}
Verifier checks whether a Sentry token is active by calling the Sentry API. It NEVER logs or persists raw token values.
func (*Verifier) Verify ¶
func (v *Verifier) Verify(ctx context.Context, raw detector.RawFinding) finding.VerificationResult
Verify checks if the detected Sentry token is valid/active. Raw contains the token value.
Click to show internal directories.
Click to hide internal directories.