package rules import ( "github.com/zricethezav/gitleaks/v8/config" ) func SendInBlueAPIToken() *config.Rule { // define rule r := config.Rule{ RuleID: "sendinblue-api-token", Description: "Sendinblue API token", Regex: generateUniqueTokenRegex(`xkeysib-[a-f0-9]{64}\-(?i)[a-z0-9]{16}`), SecretGroup: 1, Keywords: []string{ "xkeysib-", }, } // validate tps := []string{ generateSampleSecret("sendinblue", "xkeysib-"+sampleHex64Token+"-"+sampleHex16Token), } return validate(r, tps) }