| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package rules
- import (
- "regexp"
- "github.com/zricethezav/gitleaks/v8/cmd/generate/secrets"
- "github.com/zricethezav/gitleaks/v8/config"
- )
- func GitlabPat() *config.Rule {
- // define rule
- r := config.Rule{
- Description: "GitLab Personal Access Token",
- RuleID: "gitlab-pat",
- Regex: regexp.MustCompile(`glpat-[0-9a-zA-Z\-\_]{20}`),
- Keywords: []string{"glpat-"},
- }
- // validate
- tps := []string{
- generateSampleSecret("gitlab", "glpat-"+secrets.NewSecret(alphaNumeric("20"))),
- }
- return validate(r, tps, nil)
- }
- func GitlabPipelineTriggerToken() *config.Rule {
- // define rule
- r := config.Rule{
- Description: "GitLab Pipeline Trigger Token",
- RuleID: "gitlab-ptt",
- Regex: regexp.MustCompile(`glptt-[0-9a-f]{40}`),
- Keywords: []string{"glptt-"},
- }
- // validate
- tps := []string{
- generateSampleSecret("gitlab", "glptt-"+secrets.NewSecret(hex("40"))),
- }
- return validate(r, tps, nil)
- }
- func GitlabRunnerRegistrationToken() *config.Rule {
- // define rule
- r := config.Rule{
- Description: "GitLab Runner Registration Token",
- RuleID: "gitlab-rrt",
- Regex: regexp.MustCompile(`GR1348941[0-9a-zA-Z\-\_]{20}`),
- Keywords: []string{"GR1348941"},
- }
- // validate
- tps := []string{
- generateSampleSecret("gitlab", "GR1348941"+secrets.NewSecret(alphaNumeric("20"))),
- }
- return validate(r, tps, nil)
- }
|