mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 15:14:38 +00:00
b3555f5419
* adding how to rotate guides * Adding project ID to metadata * update key name, remove comments, and ensure always present --------- Co-authored-by: counter <counter@counters-MacBook-Air.local> Co-authored-by: Dustin Decker <dustin@trufflesec.com>
96 lines
2.8 KiB
Go
96 lines
2.8 KiB
Go
package square
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/detectorspb"
|
|
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/common"
|
|
)
|
|
|
|
type Scanner struct{}
|
|
|
|
// Ensure the Scanner satisfies the interface at compile time.
|
|
var _ detectors.Detector = (*Scanner)(nil)
|
|
|
|
var (
|
|
// more context to be added if this is too generic
|
|
secretPat = regexp.MustCompile(detectors.PrefixRegex([]string{"square"}) + `(EAAA[a-zA-Z0-9\-\+\=]{60})`)
|
|
)
|
|
|
|
// Keywords are used for efficiently pre-filtering chunks.
|
|
// Use identifiers in the secret preferably, or the provider name.
|
|
func (s Scanner) Keywords() []string {
|
|
return []string{"EAAA"}
|
|
}
|
|
|
|
// FromData will find and optionally verify Square secrets in a given set of bytes.
|
|
func (s Scanner) FromData(ctx context.Context, verify bool, data []byte) (results []detectors.Result, err error) {
|
|
dataStr := string(data)
|
|
|
|
// Surprisingly there are still a lot of false positives! So, also doing substring check for square.
|
|
if !strings.Contains(strings.ToLower(dataStr), "square") {
|
|
return
|
|
}
|
|
|
|
secMatches := secretPat.FindAllStringSubmatch(dataStr, -1)
|
|
for _, secMatch := range secMatches {
|
|
if len(secMatch) != 2 {
|
|
continue
|
|
}
|
|
res := strings.TrimSpace(secMatch[1])
|
|
|
|
s := detectors.Result{
|
|
DetectorType: detectorspb.DetectorType_Square,
|
|
Raw: []byte(res),
|
|
}
|
|
s.ExtraData = map[string]string{
|
|
"rotation_guide": "https://howtorotate.com/docs/tutorials/square/",
|
|
}
|
|
|
|
if verify {
|
|
// there are a few endpoints we can check, but templates seems the least sensitive.
|
|
// 403 will be issued if the scope is wrong but the key is correct
|
|
baseURL := "https://connect.squareupsandbox.com/v2/merchants"
|
|
|
|
client := common.SaneHttpClient()
|
|
|
|
// test `merchants` scope - its commonly allowed and low sensitivity
|
|
req, err := http.NewRequestWithContext(ctx, "GET", baseURL, nil)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", res))
|
|
req.Header.Add("Content-Type", "application/json")
|
|
// unclear if this version needs to be set or matters, seems to work without, but docs want it
|
|
//req.Header.Add("Square-Version", "2020-08-12")
|
|
res, err := client.Do(req)
|
|
if err == nil {
|
|
res.Body.Close() // The request body is unused.
|
|
|
|
// 200 means good key and has `merchants` scope - default allowed by square
|
|
// 401 is bad key
|
|
if res.StatusCode == http.StatusOK || res.StatusCode == http.StatusForbidden {
|
|
s.Verified = true
|
|
}
|
|
}
|
|
}
|
|
|
|
if !s.Verified && detectors.IsKnownFalsePositive(string(s.Raw), detectors.DefaultFalsePositives, true) {
|
|
continue
|
|
}
|
|
|
|
results = append(results, s)
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func (s Scanner) Type() detectorspb.DetectorType {
|
|
return detectorspb.DetectorType_Square
|
|
}
|