Files
trufflehog/pkg/detectors/datadogtoken/datadogtoken.go
Muneeb Ullah Khan 8708801319 [INS-255] Updated datadog detector to set verificationError in case of a verification error (#4661)
* [INS-233] Added support to verify token agains all datadog domains

* Fixed cloud endpoint test

* resolved bugbot comments
2026-07-17 17:27:36 +05:00

208 lines
6.0 KiB
Go

package datadogtoken
import (
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"strings"
regexp "github.com/wasilibs/go-re2"
"github.com/trufflesecurity/trufflehog/v3/pkg/common"
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/detector_typepb"
)
type Scanner struct {
client *http.Client
detectors.EndpointSetter
detectors.DefaultMultiPartCredentialProvider
}
// Ensure the Scanner satisfies the interface at compile time.
var _ detectors.Detector = (*Scanner)(nil)
var _ detectors.EndpointCustomizer = (*Scanner)(nil)
var _ detectors.CloudProvider = (*Scanner)(nil)
func (Scanner) CloudEndpoint() string { return "https://api.datadoghq.com" }
var (
defaultClient = common.SaneHttpClient()
// Make sure that your group is surrounded in boundary characters such as below to reduce false positives.
appPat = regexp.MustCompile(detectors.PrefixRegex([]string{"datadog", "dd"}) + `\b([a-zA-Z-0-9]{40})\b`)
apiPat = regexp.MustCompile(detectors.PrefixRegex([]string{"datadog", "dd"}) + `\b([a-zA-Z-0-9]{32})\b`)
datadogURLPat = regexp.MustCompile(`\b(api(?:\.[a-z0-9-]+)?\.(?:datadoghq|ddog-gov)\.(com|eu))\b`)
)
type userServiceResponse struct {
Data []*user `json:"data"`
Included []*options `json:"included"`
}
type user struct {
Attributes userAttributes `json:"attributes"`
}
type userAttributes struct {
Email string `json:"email"`
IsServiceAccount bool `json:"service_account"`
Verified bool `json:"verified"`
Disabled bool `json:"disabled"`
}
type options struct {
Type string `json:"type"`
Attributes optionAttribute `json:"attributes"`
}
type optionAttribute struct {
Url string `json:"url"`
Name string `json:"name"`
Disabled bool `json:"disabled"`
}
func setUserEmails(data []*user, s1 *detectors.Result) {
var emails []string
for _, user := range data {
// filter out non verified emails, disabled emails, service accounts
if user.Attributes.Verified && !user.Attributes.Disabled && !user.Attributes.IsServiceAccount {
emails = append(emails, user.Attributes.Email)
}
}
if len(emails) == 0 && len(data) > 0 {
emails = append(emails, data[0].Attributes.Email)
}
s1.ExtraData["user_emails"] = strings.Join(emails, ", ")
}
func setOrganizationInfo(opt []*options, s1 *detectors.Result) {
var orgs *options
for _, option := range opt {
if option.Type == "orgs" && !option.Attributes.Disabled {
orgs = option
break
}
}
if orgs != nil {
s1.ExtraData["org_name"] = orgs.Attributes.Name
s1.ExtraData["org_url"] = orgs.Attributes.Url
}
}
func (s Scanner) getClient() *http.Client {
if s.client != nil {
return s.client
}
return defaultClient
}
// 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{"datadog", "ddog-gov"}
}
// FromData will find and optionally verify DatadogToken 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)
appMatches := appPat.FindAllStringSubmatch(dataStr, -1)
apiMatches := apiPat.FindAllStringSubmatch(dataStr, -1)
var uniqueFoundUrls = make(map[string]struct{})
for _, matches := range datadogURLPat.FindAllStringSubmatch(dataStr, -1) {
uniqueFoundUrls["https://"+matches[1]] = struct{}{}
}
endpoints := make([]string, 0, len(uniqueFoundUrls))
for endpoint := range uniqueFoundUrls {
endpoints = append(endpoints, endpoint)
}
client := s.getClient()
for _, apiMatch := range apiMatches {
resApiMatch := strings.TrimSpace(apiMatch[1])
for _, appMatch := range appMatches {
resAppMatch := strings.TrimSpace(appMatch[1])
s1 := detectors.Result{
DetectorType: detector_typepb.DetectorType_DatadogToken,
Raw: []byte(resAppMatch),
RawV2: []byte(resAppMatch + resApiMatch),
ExtraData: map[string]string{
"Type": "Application+APIKey",
},
SecretParts: map[string]string{"api_key": resApiMatch, "app_key": resAppMatch},
}
if verify {
for _, baseURL := range s.Endpoints(endpoints...) {
res, isVerified, verificationErr := verifyMatch(ctx, client, resApiMatch, resAppMatch, baseURL)
s1.Verified = isVerified
s1.SetVerificationError(verificationErr, resApiMatch, resAppMatch)
s1.SecretParts["endpoint"] = baseURL
if isVerified && res != nil {
if len(res.Data) > 0 {
setUserEmails(res.Data, &s1)
}
if len(res.Included) > 0 {
setOrganizationInfo(res.Included, &s1)
}
break
}
}
}
results = append(results, s1)
}
}
return results, nil
}
func (s Scanner) Type() detector_typepb.DetectorType {
return detector_typepb.DetectorType_DatadogToken
}
func (s Scanner) Description() string {
return "Datadog is a monitoring and security platform for cloud applications. Datadog API and Application keys can be used to access and manage data and configurations within Datadog."
}
func verifyMatch(ctx context.Context, client *http.Client, apiKey, appKey, baseUrl string) (*userServiceResponse, bool, error) {
// Reference: https://docs.datadoghq.com/api/latest/users/
req, err := http.NewRequestWithContext(ctx, "GET", baseUrl+"/api/v2/users", nil)
if err != nil {
return nil, false, err
}
req.Header.Add("Content-Type", "application/json")
req.Header.Add("DD-API-KEY", apiKey)
req.Header.Add("DD-APPLICATION-KEY", appKey)
res, err := client.Do(req)
if err != nil {
return nil, false, err
}
defer func() {
_, _ = io.Copy(io.Discard, res.Body)
_ = res.Body.Close()
}()
switch res.StatusCode {
case http.StatusOK:
var serviceResponse userServiceResponse
if err := json.NewDecoder(res.Body).Decode(&serviceResponse); err != nil {
return nil, true, nil
}
return &serviceResponse, true, nil
case http.StatusUnauthorized, http.StatusForbidden:
return nil, false, nil
default:
return nil, false, fmt.Errorf("unexpected status code: %d", res.StatusCode)
}
}