Skip to content

Commit

Permalink
dovico, you're out of control
Browse files Browse the repository at this point in the history
  • Loading branch information
zricethezav committed Feb 9, 2024
1 parent 7697ae2 commit d97260c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/detectors/dovico/dovico.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ var (
client = common.SaneHttpClient()

// Make sure that your group is surrounded in boundary characters such as below to reduce false positives.
keyPat = regexp.MustCompile(detectors.PrefixRegex([]string{"dovico"}) + `\b([0-9a-z]{32}\.[0-9a-z]{1,})\b`)
userPat = regexp.MustCompile(detectors.PrefixRegex([]string{"dovico"}) + `\b([0-9a-z]{32}\.[0-9a-z]{1,})\b`)
keyPat = regexp.MustCompile(detectors.PrefixRegex([]string{"dovico"}) + `\b([0-9a-z]{32}\.[0-9a-z]{1,100})\b`)
userPat = regexp.MustCompile(detectors.PrefixRegex([]string{"dovico"}) + `\b([0-9a-z]{32}\.[0-9a-z]{1,100})\b`)
)

// Keywords are used for efficiently pre-filtering chunks.
Expand Down

0 comments on commit d97260c

Please sign in to comment.