Просмотр исходного кода

add word boundary to regex

Co-authored-by: Ben-grmbl <173737458+Ben-grmbl@users.noreply.github.com>
Nicholas 1 год назад
Родитель
Сommit
7701eb7777
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      cmd/generate/config/rules/gitlab.go

+ 1 - 1
cmd/generate/config/rules/gitlab.go

@@ -119,7 +119,7 @@ func GitlabPatRoutable() *config.Rule {
 	r := config.Rule{
 		RuleID:      "gitlab-pat-routable",
 		Description: "Identified a GitLab Personal Access Token (routable), risking unauthorized access to GitLab repositories and codebase exposure.",
-		Regex:       regexp.MustCompile(`glpat-[0-9a-zA-Z_-]{27,300}\.[0-9a-z]{2}[0-9a-z]{7}`),
+		Regex:       regexp.MustCompile(`\bglpat-[0-9a-zA-Z_-]{27,300}\.[0-9a-z]{2}[0-9a-z]{7}\b`),
 		Entropy:     4,
 		Keywords:    []string{"glpat-"},
 	}