| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package rules
- import (
- regexp "github.com/wasilibs/go-re2"
- "github.com/zricethezav/gitleaks/v8/cmd/generate/config/utils"
- "github.com/zricethezav/gitleaks/v8/config"
- "github.com/zricethezav/gitleaks/v8/cmd/generate/secrets"
- )
- func EasyPost() *config.Rule {
- // define rule
- r := config.Rule{
- RuleID: "easypost-api-token",
- Description: "Identified an EasyPost API token, which could lead to unauthorized postal and shipment service access and data exposure.",
- Regex: regexp.MustCompile(`\bEZAK(?i)[a-z0-9]{54}\b`),
- Entropy: 2,
- Keywords: []string{"EZAK"},
- }
- // validate
- tps := utils.GenerateSampleSecrets("EZAK", "EZAK"+secrets.NewSecret(`[a-zA-Z0-9]{54}`))
- tps = append(tps,
- "EZAK"+secrets.NewSecret(`[a-zA-Z0-9]{54}`),
- "example.com?t=EZAK"+secrets.NewSecret(`[a-zA-Z0-9]{54}`)+"&q=1",
- )
- fps := []string{
- // random base64 encoded string
- `...6wqX6fNUXA/rYqRvfQ+EZAKGqQRiRyqAFRQshGPWOIAwNWGORfKHSBnVNFtVmWYoW6PH23lkqbbDWep95C/3VmWq/edti6...`, // gitleaks:allow
- }
- return utils.Validate(r, tps, fps)
- }
- func EasyPostTestAPI() *config.Rule {
- // define rule
- r := config.Rule{
- RuleID: "easypost-test-api-token",
- Description: "Detected an EasyPost test API token, risking exposure of test environments and potentially sensitive shipment data.",
- Regex: regexp.MustCompile(`\bEZTK(?i)[a-z0-9]{54}\b`),
- Entropy: 2,
- Keywords: []string{"EZTK"},
- }
- // validate
- tps := utils.GenerateSampleSecrets("EZTK", secrets.NewSecret(`EZTK[a-zA-Z0-9]{54}`))
- tps = append(tps, secrets.NewSecret(`EZTK[a-zA-Z0-9]{54}`))
- tps = append(tps,
- "EZTK"+secrets.NewSecret(`[a-zA-Z0-9]{54}`),
- "example.com?t=EZTK"+secrets.NewSecret(`[a-zA-Z0-9]{54}`)+"&q=1",
- )
- fps := []string{
- // random base64 encoded string
- `...6wqX6fNUXA/rYqRvfQ+EZTKGqQRiRyqAFRQshGPWOIAwNWGORfKHSBnVNFtVmWYoW6PH23lkqbbDWep95C/3VmWq/edti6...`, // gitleaks:allow
- }
- return utils.Validate(r, tps, fps)
- }
|