| 123456789101112131415161718192021222324 |
- package rules
- import (
- "github.com/zricethezav/gitleaks/v8/cmd/generate/secrets"
- "github.com/zricethezav/gitleaks/v8/config"
- )
- func CodecovAccessToken() *config.Rule {
- // define rule
- r := config.Rule{
- RuleID: "codecov-access-token",
- Description: "Found a pattern resembling a Codecov Access Token, posing a risk of unauthorized access to code coverage reports and sensitive data.",
- Regex: generateSemiGenericRegex([]string{"codecov"}, alphaNumeric("32"), true),
- Keywords: []string{
- "codecov",
- },
- }
- // validate
- tps := []string{
- generateSampleSecret("codecov", secrets.NewSecret(alphaNumeric("32"))),
- }
- return validate(r, tps, nil)
- }
|