-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2959fc0
commit 6d0d8b5
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package rules | ||
|
||
import ( | ||
"github.com/zricethezav/gitleaks/v8/cmd/generate/secrets" | ||
"github.com/zricethezav/gitleaks/v8/config" | ||
) | ||
|
||
func InfracostAPIToken() *config.Rule { | ||
// define rule | ||
r := config.Rule{ | ||
// Human readable description of the rule | ||
Description: "Infracost API Token", | ||
|
||
// Unique ID for the rule | ||
RuleID: "infracost-api-token", | ||
|
||
// Regex capture group for the actual secret | ||
SecretGroup: 1, | ||
|
||
// Regex used for detecting secrets. See regex section below for more details | ||
Regex: generateUniqueTokenRegex(`ico-[a-zA-Z0-9]{32}`, true), | ||
|
||
// Keywords used for string matching on fragments (think of this as a prefilter) | ||
Keywords: []string{"ico-"}, | ||
} | ||
|
||
// validate | ||
tps := []string{ | ||
generateSampleSecret("ico", "ico-"+secrets.NewSecret("[A-Za-z0-9]{32}")), | ||
} | ||
return validate(r, tps, nil) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters