Skip to content

Commit

Permalink
fix(rabbitmq): add dial timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
rgmz committed Oct 15, 2024
1 parent 8988cb5 commit ad2b550
Showing 1 changed file with 39 additions and 19 deletions.
58 changes: 39 additions & 19 deletions pkg/detectors/rabbitmq/rabbitmq.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ package rabbitmq

import (
"context"
"net"
"net/url"
"strings"

regexp "github.com/wasilibs/go-re2"
"time"

amqp "github.com/rabbitmq/amqp091-go"
regexp "github.com/wasilibs/go-re2"

"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/detectorspb"
Expand All @@ -32,12 +33,19 @@ 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)

for _, match := range matches {
urlMatch := match[0]
password := match[1]
var uniqueMatches = make(map[string]string)
for _, matches := range keyPat.FindAllStringSubmatch(dataStr, -1) {
uniqueMatches[matches[0]] = matches[1]
}

for urlMatch, password := range uniqueMatches {
// Skip common test hosts.
if strings.Contains(urlMatch, "127.0.0.1") ||
strings.Contains(urlMatch, "localhost") ||
strings.Contains(urlMatch, "contoso.com") ||
strings.Contains(urlMatch, "example.com") {
continue
}
// Skip findings where the password only has "*" characters, this is a redacted password
if strings.Trim(password, "*") == "" {
continue
Expand All @@ -51,37 +59,49 @@ func (s Scanner) FromData(ctx context.Context, verify bool, data []byte) (result
continue
}

redact := strings.TrimSpace(strings.Replace(parsedURL.String(), password, "********", -1))

s := detectors.Result{
r := detectors.Result{
DetectorType: detectorspb.DetectorType_RabbitMQ,
Raw: []byte(urlMatch),
Redacted: redact,
Redacted: strings.TrimSpace(strings.Replace(parsedURL.String(), password, "********", -1)),
}

if verify {
conn, err := amqp.Dial(urlMatch)
if err == nil {
s.Verified = true
}
if conn != nil {
conn.Close()
isVerified, verificationErr := s.verify(urlMatch)
r.Verified = isVerified
if verificationErr != nil {
r.SetVerificationError(verificationErr, urlMatch)
}
}

if !s.Verified {
if !r.Verified {
// Skip unverified findings where the password starts with a `$` - it's almost certainly a variable.
if strings.HasPrefix(password, "$") {
continue
}
}

results = append(results, s)
results = append(results, r)
}

return results, nil
}

func (s Scanner) verify(url string) (bool, error) {
// Add a timeout.
// https://github.com/rabbitmq/amqp091-go/blob/dc67c21576c230f589636319f05b7262915313e6/examples_test.go#L22
conn, err := amqp.DialConfig(url, amqp.Config{
Dial: func(network, addr string) (net.Conn, error) {
return net.DialTimeout(network, addr, 10*time.Second)
},
})
defer func() {
if conn != nil {
_ = conn.Close()
}
}()
return err == nil, err
}

func (s Scanner) Type() detectorspb.DetectorType {
return detectorspb.DetectorType_RabbitMQ
}
Expand Down

0 comments on commit ad2b550

Please sign in to comment.