-
Notifications
You must be signed in to change notification settings - Fork 2.5k
(fix) Indeterminate verification issue in Clickup detector #4047
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
1367ed7
2b2ccad
4933a30
ac0a71a
c9cc757
be5fb21
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,8 @@ package clickuppersonaltoken | |
|
|
||
| import ( | ||
| "context" | ||
| "fmt" | ||
| "io" | ||
| "net/http" | ||
| "strings" | ||
|
|
||
|
|
@@ -12,16 +14,18 @@ import ( | |
| "github.com/trufflesecurity/trufflehog/v3/pkg/pb/detectorspb" | ||
| ) | ||
|
|
||
| type Scanner struct{} | ||
| type Scanner struct { | ||
| client *http.Client | ||
| } | ||
|
|
||
| // Ensure the Scanner satisfies the interface at compile time. | ||
| var _ detectors.Detector = (*Scanner)(nil) | ||
|
|
||
| var ( | ||
| client = common.SaneHttpClient() | ||
| defaultClient = common.SaneHttpClient() | ||
|
|
||
| // Make sure that your group is surrounded in boundary characters such as below to reduce false positives. | ||
| keyPat = regexp.MustCompile(`\b(pk_[0-9]{7,8}_[0-9A-Z]{32})\b`) | ||
| keyPat = regexp.MustCompile(`\b(pk_[0-9]{7,9}_[0-9A-Z]{32})\b`) | ||
| ) | ||
|
|
||
| // Keywords are used for efficiently pre-filtering chunks. | ||
|
|
@@ -34,29 +38,26 @@ func (s Scanner) Keywords() []string { | |
| func (s Scanner) FromData(ctx context.Context, verify bool, data []byte) (results []detectors.Result, err error) { | ||
| dataStr := string(data) | ||
|
|
||
| matches := keyPat.FindAllStringSubmatch(dataStr, -1) | ||
| uniqueMatches := make(map[string]struct{}) | ||
| for _, match := range keyPat.FindAllStringSubmatch(dataStr, -1) { | ||
| uniqueMatches[strings.TrimSpace(match[1])] = struct{}{} | ||
| } | ||
|
|
||
| for _, match := range matches { | ||
| resMatch := strings.TrimSpace(match[1]) | ||
| for resMatch, _ := range uniqueMatches { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: Looks like the linter isn't a huge fan of the blank identifier here. We can get rid of it since we only need the key from the map.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Strange part is my |
||
|
|
||
| s1 := detectors.Result{ | ||
| DetectorType: detectorspb.DetectorType_ClickupPersonalToken, | ||
| Raw: []byte(resMatch), | ||
| } | ||
|
|
||
| if verify { | ||
| req, err := http.NewRequestWithContext(ctx, "GET", "https://api.clickup.com/api/v2/user", nil) | ||
| if err != nil { | ||
| continue | ||
| } | ||
| req.Header.Add("Authorization", resMatch) | ||
| res, err := client.Do(req) | ||
| if err == nil { | ||
| defer res.Body.Close() | ||
| if res.StatusCode >= 200 && res.StatusCode < 300 { | ||
| s1.Verified = true | ||
| } | ||
| client := s.client | ||
| if client == nil { | ||
| client = defaultClient | ||
| } | ||
| isVerified, err := verifyToken(ctx, client, resMatch) | ||
| s1.Verified = isVerified | ||
| s1.SetVerificationError(err, resMatch) | ||
| } | ||
|
|
||
| results = append(results, s1) | ||
|
|
@@ -72,3 +73,28 @@ func (s Scanner) Type() detectorspb.DetectorType { | |
| func (s Scanner) Description() string { | ||
| return "ClickUp is a project management tool. Personal tokens can be used to access and modify data within ClickUp on behalf of a user." | ||
| } | ||
|
|
||
| func verifyToken(ctx context.Context, client *http.Client, token string) (bool, error) { | ||
| req, err := http.NewRequestWithContext(ctx, http.MethodGet, "https://api.clickup.com/api/v2/user", nil) | ||
| if err != nil { | ||
| return false, err | ||
| } | ||
| req.Header.Add("Authorization", token) | ||
| res, err := client.Do(req) | ||
| if err != nil { | ||
| return false, err | ||
| } | ||
| defer func() { | ||
| _, _ = io.Copy(io.Discard, res.Body) | ||
| _ = res.Body.Close() | ||
| }() | ||
|
|
||
| switch res.StatusCode { | ||
| case http.StatusOK: | ||
| return true, nil | ||
| case http.StatusUnauthorized: | ||
| return false, nil | ||
| default: | ||
| return false, fmt.Errorf("unexpected status code %d", res.StatusCode) | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.