package rules import ( "github.com/zricethezav/gitleaks/v8/cmd/generate/secrets" "github.com/zricethezav/gitleaks/v8/config" ) func GoCardless() *config.Rule { // define rule r := config.Rule{ RuleID: "gocardless-api-token", Description: "GoCardless API token", Regex: generateSemiGenericRegex([]string{"gocardless"}, `live_(?i)[a-z0-9\-_=]{40}`), SecretGroup: 1, Keywords: []string{ "live_", "gocardless", }, } // validate tps := []string{ generateSampleSecret("gocardless", "live_"+secrets.NewSecret(alphaNumericExtended("40"))), } return validate(r, tps, nil) }