| 123456789101112131415161718192021 |
- 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 Airtable() *config.Rule {
- // define rule
- r := config.Rule{
- Description: "Uncovered a possible Airtable API Key, potentially compromising database access and leading to data leakage or alteration.",
- RuleID: "airtable-api-key",
- Regex: utils.GenerateSemiGenericRegex([]string{"airtable"}, utils.AlphaNumeric("17"), true),
- Keywords: []string{"airtable"},
- }
- // validate
- tps := utils.GenerateSampleSecrets("airtable", secrets.NewSecret(utils.AlphaNumeric("17")))
- return utils.Validate(r, tps, nil)
- }
|