-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
fix: fixed verification endpoint and verification logic for brand fetch #3470
Open
sahil9001
wants to merge
6
commits into
trufflesecurity:main
Choose a base branch
from
sahil9001:brandfetch-verfication-endpoint-fix
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8734bdc
fix: fixed verification endpoint and verification logic
sahil9001 0e92a89
fix: added API doc link
sahil9001 81955b7
feat: introduced a new detector for apis
sahil9001 9aaadb9
Merge branch 'main' into brandfetch-verfication-endpoint-fix
kashifkhan0771 8e8f6f4
Merge remote-tracking branch 'upstream/main' into brandfetch-verficat…
sahil9001 7c16206
feat: added versioner impl
sahil9001 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,11 @@ package brandfetch | |
|
||
import ( | ||
"context" | ||
regexp "github.com/wasilibs/go-re2" | ||
"net/http" | ||
"strings" | ||
|
||
regexp "github.com/wasilibs/go-re2" | ||
|
||
"github.com/trufflesecurity/trufflehog/v3/pkg/common" | ||
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors" | ||
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/detectorspb" | ||
|
@@ -20,7 +21,7 @@ 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{"brandfetch"}) + `\b([0-9A-Za-z]{40})\b`) | ||
keyPat = regexp.MustCompile(detectors.PrefixRegex([]string{"brandfetch"}) + `\b([a-zA-Z0-9=]{44})`) | ||
) | ||
|
||
// Keywords are used for efficiently pre-filtering chunks. | ||
|
@@ -47,15 +48,13 @@ func (s Scanner) FromData(ctx context.Context, verify bool, data []byte) (result | |
} | ||
|
||
if verify { | ||
payload := strings.NewReader(`{ | ||
"domain": "www.example.com" | ||
}`) | ||
req, err := http.NewRequestWithContext(ctx, "POST", "https://api.brandfetch.io/v1/color", payload) | ||
// API upgraded to v2 from v1, new API doc: https://docs.brandfetch.com/reference/brand-api | ||
req, err := http.NewRequestWithContext(ctx, "GET", "https://api.brandfetch.io/v2/brands/google.com", nil) | ||
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. The current |
||
if err != nil { | ||
continue | ||
} | ||
req.Header.Add("Content-Type", "application/json") | ||
req.Header.Add("x-api-key", resMatch) | ||
req.Header.Add("Authorization", "Bearer "+resMatch) | ||
res, err := client.Do(req) | ||
if err == nil { | ||
defer res.Body.Close() | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The token I received included a
/
character as well. Its length was 44, which seems correct. I recommend generating multiple tokens to confirm the pattern.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enhanced regex and created new version for the API v2