| 1234567891011121314151617181920212223 |
- 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 := []string{
- utils.GenerateSampleSecret("airtable", secrets.NewSecret(utils.AlphaNumeric("17"))),
- }
- return utils.Validate(r, tps, nil)
- }
|