mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 07:04:24 +00:00
ce1ce29b90
* optimize maching detetors * update method name * updates * update naming * updates * update comment * updates * remove testcase * update default match len to 512 * update * update test * add support for multpart cred provider * add ability to scan entire chunk * encapsulate matches logic within FindDetectorMatches * use []byte directly * nil chunk data * use []byte * set hidden flag to true * remove * [refactor] - multi part detectors (#2906) * Detectors beginning w/ a * Detectors beginning w/ b * Detectors beginning w/ c * Detectors beginning w/ d * Detectors beginning w/ e * Detectors beginning w/ f * Detectors beginning w/ f&g * fix * Detectors beginning w/ i-l * Detectors beginning w/ m-p * Detectors beginning w/ r-s * Detectors beginning w/ t * Detectors beginning w/ u-z * revert alconst * remaining fixes * lint * [feat] - Add Support for `compareDetectionStrategies` Mode (#2918) * Detector comparison mode * remove else * return error if results dont match * update default hidden flag to not scan entire chunks * fix tests * enhance encapsulation by including methods on DetectorMatch to handle merging and extracting * remove space * fix * update detector * updates * remove else * run comparison concurrently
105 lines
3.1 KiB
Go
105 lines
3.1 KiB
Go
package bitfinex
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
regexp "github.com/wasilibs/go-re2"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/bitfinexcom/bitfinex-api-go/v2/rest"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
|
|
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/common"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/detectorspb"
|
|
)
|
|
|
|
type Scanner struct{
|
|
detectors.DefaultMultiPartCredentialProvider
|
|
}
|
|
|
|
// Ensure the Scanner satisfies the interface at compile time.
|
|
var _ detectors.Detector = (*Scanner)(nil)
|
|
|
|
var (
|
|
client = common.SaneHttpClient()
|
|
|
|
// related resource https://medium.com/@Bitfinex/api-development-update-april-65fe52f84124
|
|
apiKeyPat = regexp.MustCompile(detectors.PrefixRegex([]string{"bitfinex"}) + `\b([A-Za-z0-9_-]{43})\b`)
|
|
apiSecretPat = regexp.MustCompile(detectors.PrefixRegex([]string{"bitfinex"}) + `\b([A-Za-z0-9_-]{43})\b`)
|
|
)
|
|
|
|
var (
|
|
api = flag.String("api", "https://api-pub.bitfinex.com/v2/", "v2 REST API URL")
|
|
)
|
|
|
|
// 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{"bitfinex"}
|
|
}
|
|
|
|
// FromData will find and optionally verify Bitfinex 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)
|
|
|
|
apiKeyMatches := apiKeyPat.FindAllStringSubmatch(dataStr, -1)
|
|
apiSecretMatches := apiSecretPat.FindAllStringSubmatch(dataStr, -1)
|
|
|
|
for _, apiKeyMatch := range apiKeyMatches {
|
|
if len(apiKeyMatch) != 2 {
|
|
continue
|
|
}
|
|
apiKeyRes := strings.TrimSpace(apiKeyMatch[1])
|
|
|
|
s1 := detectors.Result{
|
|
DetectorType: detectorspb.DetectorType_Bitfinex,
|
|
Raw: []byte(apiKeyRes),
|
|
}
|
|
|
|
for _, apiSecretMatch := range apiSecretMatches {
|
|
if len(apiSecretMatch) != 2 {
|
|
continue
|
|
}
|
|
apiSecretRes := strings.TrimSpace(apiSecretMatch[1])
|
|
|
|
if apiKeyRes == apiSecretRes {
|
|
continue
|
|
}
|
|
|
|
if verify {
|
|
// thankfully official golang examples exist but you just need to dig their many repos https://github.com/bitfinexcom/bitfinex-api-go/blob/master/examples/v2/rest-orders/main.go
|
|
key := apiKeyRes
|
|
secret := apiSecretRes
|
|
http.DefaultClient = client // filed https://github.com/bitfinexcom/bitfinex-api-go/issues/238 to improve this
|
|
c := rest.NewClientWithURL(*api).Credentials(key, secret)
|
|
|
|
isValid := true // assume valid
|
|
_, err = c.Orders.AllHistory()
|
|
if err != nil {
|
|
if strings.HasPrefix(err.Error(), "POST https://") { // eg POST https://api-pub.bitfinex.com/v2/auth/r/orders/hist: 500 apikey: digest invalid (10100)
|
|
isValid = false
|
|
}
|
|
}
|
|
|
|
s1.Verified = isValid
|
|
// If there is a valid one, we need to stop iterating now and return the valid result
|
|
if isValid {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// By appending results in the outer loop we can reduce false positives if there are multiple
|
|
// combinations of secrets and IDs found.
|
|
if len(apiSecretMatches) > 0 {
|
|
results = append(results, s1)
|
|
}
|
|
}
|
|
|
|
return results, nil
|
|
}
|
|
|
|
func (s Scanner) Type() detectorspb.DetectorType {
|
|
return detectorspb.DetectorType_Bitfinex
|
|
}
|