Populate ExtraData with parsed fields for all database connection string detectors (MongoDB, PostgreSQL, Redis, JDBC). This surfaces useful metadata about detected credentials. The parsing logic already existed in each detector — this change exposes the extracted values in the result's ExtraData map alongside any pre-existing fields (rotation_guide, sslmode, etc.).
167 lines
4.1 KiB
Go
167 lines
4.1 KiB
Go
package redis
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
regexp "github.com/wasilibs/go-re2"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"github.com/go-redis/redis"
|
|
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/detector_typepb"
|
|
)
|
|
|
|
type Scanner struct {
|
|
detectors.DefaultMultiPartCredentialProvider
|
|
}
|
|
|
|
// Ensure the Scanner satisfies the interface at compile time.
|
|
var _ detectors.Detector = (*Scanner)(nil)
|
|
|
|
var (
|
|
keyPat = regexp.MustCompile(`\bredi[s]{1,2}://[\S]{3,50}:([\S]{3,50})@[-.%\w\/:]+\b`)
|
|
azureRedisPat = regexp.MustCompile(`\b([\w\d.-]{1,100}\.redis\.cache\.windows\.net:6380),password=([^,]{44}),ssl=True,abortConnect=False\b`)
|
|
)
|
|
|
|
// 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{"redis"}
|
|
}
|
|
|
|
// FromData will find and optionally verify URI 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)
|
|
|
|
matches := keyPat.FindAllStringSubmatch(dataStr, -1)
|
|
azureMatches := azureRedisPat.FindAllStringSubmatch(dataStr, -1)
|
|
|
|
for _, match := range azureMatches {
|
|
host := match[1]
|
|
password := match[2]
|
|
urlMatch := fmt.Sprintf("rediss://:%s@%s", password, host)
|
|
|
|
// Skip findings where the password only has "*" characters, this is a redacted password
|
|
if strings.Trim(password, "*") == "" {
|
|
continue
|
|
}
|
|
|
|
parsedURL, err := url.Parse(urlMatch)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
if _, ok := parsedURL.User.Password(); !ok {
|
|
continue
|
|
}
|
|
|
|
redact := strings.TrimSpace(strings.ReplaceAll(urlMatch, password, "*******"))
|
|
|
|
s := detectors.Result{
|
|
DetectorType: detector_typepb.DetectorType_Redis,
|
|
Raw: []byte(urlMatch),
|
|
SecretParts: map[string]string{
|
|
"host": parsedURL.Host,
|
|
"password": password,
|
|
},
|
|
Redacted: redact,
|
|
ExtraData: extraDataFromURL(parsedURL),
|
|
}
|
|
|
|
if verify {
|
|
s.Verified = verifyRedis(ctx, parsedURL)
|
|
}
|
|
|
|
if !s.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)
|
|
}
|
|
|
|
for _, match := range matches {
|
|
urlMatch := match[0]
|
|
password := match[1]
|
|
|
|
// Skip findings where the password only has "*" characters, this is a redacted password
|
|
if strings.Trim(password, "*") == "" {
|
|
continue
|
|
}
|
|
|
|
parsedURL, err := url.Parse(urlMatch)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
if _, ok := parsedURL.User.Password(); !ok {
|
|
continue
|
|
}
|
|
|
|
redact := strings.TrimSpace(strings.ReplaceAll(urlMatch, password, "*******"))
|
|
|
|
s := detectors.Result{
|
|
DetectorType: detector_typepb.DetectorType_Redis,
|
|
Raw: []byte(urlMatch),
|
|
SecretParts: map[string]string{
|
|
"host": parsedURL.Host,
|
|
"password": password,
|
|
},
|
|
Redacted: redact,
|
|
ExtraData: extraDataFromURL(parsedURL),
|
|
}
|
|
|
|
if verify {
|
|
s.Verified = verifyRedis(ctx, parsedURL)
|
|
}
|
|
|
|
if !s.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)
|
|
}
|
|
|
|
return results, nil
|
|
}
|
|
|
|
func extraDataFromURL(u *url.URL) map[string]string {
|
|
extraData := make(map[string]string)
|
|
if u.Host != "" {
|
|
extraData["host"] = u.Host
|
|
}
|
|
if u.User != nil && u.User.Username() != "" {
|
|
extraData["username"] = u.User.Username()
|
|
}
|
|
return extraData
|
|
}
|
|
|
|
func verifyRedis(ctx context.Context, u *url.URL) bool {
|
|
opt, err := redis.ParseURL(u.String())
|
|
if err != nil {
|
|
return false
|
|
}
|
|
|
|
client := redis.NewClient(opt)
|
|
|
|
status, err := client.Ping().Result()
|
|
if err == nil && status == "PONG" {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (s Scanner) Type() detector_typepb.DetectorType {
|
|
return detector_typepb.DetectorType_Redis
|
|
}
|
|
|
|
func (s Scanner) Description() string {
|
|
return "Redis is an in-memory data structure store, used as a database, cache, and message broker. Redis credentials can be used to access and manipulate stored data."
|
|
}
|