| 123456789101112131415161718192021222324 |
- package rules
- import (
- "github.com/zricethezav/gitleaks/v8/cmd/generate/config/utils"
- "github.com/zricethezav/gitleaks/v8/cmd/generate/secrets"
- "github.com/zricethezav/gitleaks/v8/config"
- )
- func FastlyAPIToken() *config.Rule {
- // define rule
- r := config.Rule{
- Description: "Uncovered a Fastly API key, which may compromise CDN and edge cloud services, leading to content delivery and security issues.",
- RuleID: "fastly-api-token",
- Regex: utils.GenerateSemiGenericRegex([]string{"fastly"}, utils.AlphaNumericExtended("32"), true),
- Keywords: []string{"fastly"},
- }
- // validate
- tps := []string{
- utils.GenerateSampleSecret("fastly", secrets.NewSecret(utils.AlphaNumericExtended("32"))),
- }
- return utils.Validate(r, tps, nil)
- }
|