| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package rules
- import (
- "regexp"
- "github.com/zricethezav/gitleaks/v8/cmd/generate/secrets"
- "github.com/zricethezav/gitleaks/v8/config"
- )
- func EasyPost() *config.Rule {
- // define rule
- r := config.Rule{
- Description: "EasyPost API token",
- RuleID: "easypost-api-token",
- Regex: regexp.MustCompile(`EZAK(?i)[a-z0-9]{54}`),
- Keywords: []string{"EZAK"},
- }
- // validate
- tps := []string{
- generateSampleSecret("EZAK", "EZAK"+secrets.NewSecret(alphaNumeric("54"))),
- }
- return validate(r, tps, nil)
- }
- func EasyPostTestAPI() *config.Rule {
- // define rule
- r := config.Rule{
- Description: "EasyPost test API token",
- RuleID: "easypost-test-api-token",
- Regex: regexp.MustCompile(`EZTK(?i)[a-z0-9]{54}`),
- Keywords: []string{"EZTK"},
- }
- // validate
- tps := []string{
- generateSampleSecret("EZTK", "EZTK"+secrets.NewSecret(alphaNumeric("54"))),
- }
- return validate(r, tps, nil)
- }
|