updated verification method in the dwolla detector (#4282)
Co-authored-by: Shahzad Haider <[email protected]>
This commit is contained in:
co-authored by
Shahzad Haider
parent
c61749f99f
commit
78435c802f
@@ -4,6 +4,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
b64 "encoding/base64"
|
b64 "encoding/base64"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
@@ -15,6 +16,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Scanner struct {
|
type Scanner struct {
|
||||||
|
client *http.Client
|
||||||
detectors.DefaultMultiPartCredentialProvider
|
detectors.DefaultMultiPartCredentialProvider
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -22,7 +24,7 @@ type Scanner struct {
|
|||||||
var _ detectors.Detector = (*Scanner)(nil)
|
var _ detectors.Detector = (*Scanner)(nil)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
client = common.SaneHttpClient()
|
defaultClient = common.SaneHttpClient()
|
||||||
|
|
||||||
// Make sure that your group is surrounded in boundary characters such as below to reduce false positives.
|
// Make sure that your group is surrounded in boundary characters such as below to reduce false positives.
|
||||||
idPat = regexp.MustCompile(detectors.PrefixRegex([]string{"dwolla"}) + `\b([a-zA-Z-0-9]{50})\b`)
|
idPat = regexp.MustCompile(detectors.PrefixRegex([]string{"dwolla"}) + `\b([a-zA-Z-0-9]{50})\b`)
|
||||||
@@ -35,46 +37,44 @@ func (s Scanner) Keywords() []string {
|
|||||||
return []string{"dwolla"}
|
return []string{"dwolla"}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s Scanner) getClient() *http.Client {
|
||||||
|
if s.client != nil {
|
||||||
|
return s.client
|
||||||
|
}
|
||||||
|
return defaultClient
|
||||||
|
}
|
||||||
|
|
||||||
// FromData will find and optionally verify Dwolla secrets in a given set of bytes.
|
// FromData will find and optionally verify Dwolla secrets in a given set of bytes.
|
||||||
func (s Scanner) FromData(ctx context.Context, verify bool, data []byte) (results []detectors.Result, err error) {
|
func (s Scanner) FromData(ctx context.Context, verify bool, data []byte) (results []detectors.Result, err error) {
|
||||||
dataStr := string(data)
|
dataStr := string(data)
|
||||||
|
|
||||||
idMatches := idPat.FindAllStringSubmatch(dataStr, -1)
|
uniqueIDs := make(map[string]struct{})
|
||||||
secretMatches := secretPat.FindAllStringSubmatch(dataStr, -1)
|
for _, matches := range idPat.FindAllStringSubmatch(dataStr, -1) {
|
||||||
|
uniqueIDs[matches[1]] = struct{}{}
|
||||||
|
}
|
||||||
|
|
||||||
for _, match := range idMatches {
|
uniqueSecrets := make(map[string]struct{})
|
||||||
|
for _, matches := range secretPat.FindAllStringSubmatch(dataStr, -1) {
|
||||||
|
uniqueSecrets[matches[1]] = struct{}{}
|
||||||
|
}
|
||||||
|
|
||||||
idMatch := strings.TrimSpace(match[1])
|
for id := range uniqueIDs {
|
||||||
|
for secret := range uniqueSecrets {
|
||||||
for _, secret := range secretMatches {
|
if id == secret {
|
||||||
|
continue // Skip if ID and secret are the same.
|
||||||
secretMatch := strings.TrimSpace(secret[1])
|
}
|
||||||
|
|
||||||
s1 := detectors.Result{
|
s1 := detectors.Result{
|
||||||
DetectorType: detectorspb.DetectorType_Dwolla,
|
DetectorType: detectorspb.DetectorType_Dwolla,
|
||||||
Raw: []byte(idMatch),
|
Raw: []byte(id),
|
||||||
RawV2: []byte(idMatch + secretMatch),
|
RawV2: []byte(id + secret),
|
||||||
}
|
}
|
||||||
|
|
||||||
if verify {
|
if verify {
|
||||||
data := fmt.Sprintf("%s:%s", idMatch, secretMatch)
|
client := s.getClient()
|
||||||
encoded := b64.StdEncoding.EncodeToString([]byte(data))
|
isVerified, err := verifyMatch(ctx, client, id, secret)
|
||||||
payload := strings.NewReader("grant_type=client_credentials")
|
s1.Verified = isVerified
|
||||||
|
s1.SetVerificationError(err, id, secret)
|
||||||
req, err := http.NewRequestWithContext(ctx, "POST", "https://api-sandbox.dwolla.com/token", payload)
|
|
||||||
if err != nil {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
|
|
||||||
req.Header.Add("Authorization", fmt.Sprintf("Basic %s", encoded))
|
|
||||||
|
|
||||||
res, err := client.Do(req)
|
|
||||||
if err == nil {
|
|
||||||
defer res.Body.Close()
|
|
||||||
if res.StatusCode >= 200 && res.StatusCode < 300 {
|
|
||||||
s1.Verified = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
results = append(results, s1)
|
results = append(results, s1)
|
||||||
@@ -84,6 +84,37 @@ func (s Scanner) FromData(ctx context.Context, verify bool, data []byte) (result
|
|||||||
return results, nil
|
return results, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func verifyMatch(ctx context.Context, client *http.Client, id, secret string) (bool, error) {
|
||||||
|
data := fmt.Sprintf("%s:%s", id, secret)
|
||||||
|
encoded := b64.StdEncoding.EncodeToString([]byte(data))
|
||||||
|
payload := strings.NewReader("grant_type=client_credentials")
|
||||||
|
|
||||||
|
req, err := http.NewRequestWithContext(ctx, http.MethodPost, "https://api-sandbox.dwolla.com/token", payload)
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
|
||||||
|
req.Header.Add("Authorization", fmt.Sprintf("Basic %s", encoded))
|
||||||
|
|
||||||
|
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)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (s Scanner) Type() detectorspb.DetectorType {
|
func (s Scanner) Type() detectorspb.DetectorType {
|
||||||
return detectorspb.DetectorType_Dwolla
|
return detectorspb.DetectorType_Dwolla
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/kylelemons/godebug/pretty"
|
"github.com/google/go-cmp/cmp"
|
||||||
|
"github.com/google/go-cmp/cmp/cmpopts"
|
||||||
|
|
||||||
"github.com/trufflesecurity/trufflehog/v3/pkg/common"
|
"github.com/trufflesecurity/trufflehog/v3/pkg/common"
|
||||||
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
|
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
|
||||||
@@ -19,13 +20,13 @@ import (
|
|||||||
func TestDwolla_FromChunk(t *testing.T) {
|
func TestDwolla_FromChunk(t *testing.T) {
|
||||||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
testSecrets, err := common.GetSecret(ctx, "trufflehog-testing", "detectors1")
|
testSecrets, err := common.GetSecret(ctx, "trufflehog-testing", "detectors6")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("could not get test secrets from GCP: %s", err)
|
t.Fatalf("could not get test secrets from GCP: %s", err)
|
||||||
}
|
}
|
||||||
id := testSecrets.MustGetField("DWOLLA")
|
id := testSecrets.MustGetField("DWOLLA_ID")
|
||||||
secret := testSecrets.MustGetField("DWOLLA_SECRET")
|
secret := testSecrets.MustGetField("DWOLLA_SECRET")
|
||||||
inactiveSecret := testSecrets.MustGetField("DWOLLA_SECRET_INACTIVE")
|
inactiveSecret := testSecrets.MustGetField("DWOLLA_INACTIVE")
|
||||||
|
|
||||||
type args struct {
|
type args struct {
|
||||||
ctx context.Context
|
ctx context.Context
|
||||||
@@ -48,6 +49,10 @@ func TestDwolla_FromChunk(t *testing.T) {
|
|||||||
verify: true,
|
verify: true,
|
||||||
},
|
},
|
||||||
want: []detectors.Result{
|
want: []detectors.Result{
|
||||||
|
{
|
||||||
|
DetectorType: detectorspb.DetectorType_Dwolla,
|
||||||
|
Verified: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
DetectorType: detectorspb.DetectorType_Dwolla,
|
DetectorType: detectorspb.DetectorType_Dwolla,
|
||||||
Verified: true,
|
Verified: true,
|
||||||
@@ -68,6 +73,10 @@ func TestDwolla_FromChunk(t *testing.T) {
|
|||||||
DetectorType: detectorspb.DetectorType_Dwolla,
|
DetectorType: detectorspb.DetectorType_Dwolla,
|
||||||
Verified: false,
|
Verified: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
DetectorType: detectorspb.DetectorType_Dwolla,
|
||||||
|
Verified: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
wantErr: false,
|
wantErr: false,
|
||||||
},
|
},
|
||||||
@@ -95,9 +104,20 @@ func TestDwolla_FromChunk(t *testing.T) {
|
|||||||
if len(got[i].Raw) == 0 {
|
if len(got[i].Raw) == 0 {
|
||||||
t.Fatalf("no raw secret present: \n %+v", got[i])
|
t.Fatalf("no raw secret present: \n %+v", got[i])
|
||||||
}
|
}
|
||||||
got[i].Raw = nil
|
gotErr := ""
|
||||||
|
if got[i].VerificationError() != nil {
|
||||||
|
gotErr = got[i].VerificationError().Error()
|
||||||
}
|
}
|
||||||
if diff := pretty.Compare(got, tt.want); diff != "" {
|
wantErr := ""
|
||||||
|
if tt.want[i].VerificationError() != nil {
|
||||||
|
wantErr = tt.want[i].VerificationError().Error()
|
||||||
|
}
|
||||||
|
if gotErr != wantErr {
|
||||||
|
t.Fatalf("wantVerificationError = %v, verification error = %v", tt.want[i].VerificationError(), got[i].VerificationError())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ignoreOpts := cmpopts.IgnoreFields(detectors.Result{}, "Raw", "RawV2", "verificationError", "primarySecret")
|
||||||
|
if diff := cmp.Diff(got, tt.want, ignoreOpts); diff != "" {
|
||||||
t.Errorf("Dwolla.FromData() %s diff: (-got +want)\n%s", tt.name, diff)
|
t.Errorf("Dwolla.FromData() %s diff: (-got +want)\n%s", tt.name, diff)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -33,10 +33,8 @@ var (
|
|||||||
# - The above credentials should only be used in a secure environment.
|
# - The above credentials should only be used in a secure environment.
|
||||||
`
|
`
|
||||||
secrets = []string{
|
secrets = []string{
|
||||||
"MvkLktYDS7PSE0xRMHIYBKrAjXruEk5P1VrJUUGtgspa3KTi6rMvkLktYDS7PSE0xRMHIYBKrAjXruEk5P1VrJUUGtgspa3KTi6r",
|
|
||||||
"MvkLktYDS7PSE0xRMHIYBKrAjXruEk5P1VrJUUGtgspa3KTi6rq3DZbY7iviUpewfCHEpK1I51G8XW63GuLuJyAIEqOFtEB1qlg1",
|
"MvkLktYDS7PSE0xRMHIYBKrAjXruEk5P1VrJUUGtgspa3KTi6rq3DZbY7iviUpewfCHEpK1I51G8XW63GuLuJyAIEqOFtEB1qlg1",
|
||||||
"q3DZbY7iviUpewfCHEpK1I51G8XW63GuLuJyAIEqOFtEB1qlg1MvkLktYDS7PSE0xRMHIYBKrAjXruEk5P1VrJUUGtgspa3KTi6r",
|
"q3DZbY7iviUpewfCHEpK1I51G8XW63GuLuJyAIEqOFtEB1qlg1MvkLktYDS7PSE0xRMHIYBKrAjXruEk5P1VrJUUGtgspa3KTi6r",
|
||||||
"q3DZbY7iviUpewfCHEpK1I51G8XW63GuLuJyAIEqOFtEB1qlg1q3DZbY7iviUpewfCHEpK1I51G8XW63GuLuJyAIEqOFtEB1qlg1",
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user