Files
trufflehog/pkg/detectors/newrelicuserkey/newrelicuserkey.go
MustansirandMuneeb Ullah Khan e6fc3489dd [INS-339] Add New Relic User Key detector (#4794)
* add new relic user key detector

* extract region verification logic to separate method

* chore: regen protos, feature flag gating, add SecretParts

* chore: regen protos

---------

Co-authored-by: Muneeb Ullah Khan <[email protected]>
2026-07-30 18:29:52 +05:00

148 lines
4.4 KiB
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package newrelicuserkey
import (
"context"
"encoding/json"
"errors"
"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
}
// Ensure the Scanner satisfies the interfaces at compile time.
var _ detectors.Detector = (*Scanner)(nil)
var (
defaultClient = common.SaneHttpClient()
keyPat = regexp.MustCompile(`\b(NRAK-[A-Z0-9]{27})\b`)
)
func (s Scanner) getClient() *http.Client {
if s.client != nil {
return s.client
}
return defaultClient
}
// Keywords are used for efficiently pre-filtering chunks.
func (s Scanner) Keywords() []string { return []string{"nrak-"} }
func (s Scanner) Type() detector_typepb.DetectorType {
return detector_typepb.DetectorType_NewRelicUserKey
}
func (s Scanner) Description() string {
return "A New Relic User API Key is an authentication token used to query data from New Relic via the NerdGraph API or REST API, allowing users to access account data and perform read operations securely. It is primarily used for interacting with New Relic’s query and configuration services."
}
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 {
resMatch := strings.TrimSpace(match[1])
s1 := detectors.Result{
DetectorType: s.Type(),
Raw: []byte(resMatch),
Redacted: resMatch[:8] + "...",
SecretParts: map[string]string{
"key": resMatch,
},
}
if verify {
isVerified, extraData, verificationErr := s.verify(ctx, resMatch)
s1.Verified = isVerified
s1.ExtraData = extraData
if extraData != nil {
s1.SecretParts["region"] = extraData["region"]
}
s1.SetVerificationError(verificationErr)
}
results = append(results, s1)
}
return results, nil
}
type graphqlResponse struct {
Data struct {
RequestContext struct {
UserID string `json:"userId"`
} `json:"requestContext"`
} `json:"data"`
}
// verify checks if the provided key is valid by making a request to the New Relic NerdGraph API.
// It sends a POST request to the NerdGraph API. A valid key will result in a 200 OK response.
// Invalid key will return in 401 Unauthorized, and a key with incorrect region will return a 403 Forbidden.
// https://docs.newrelic.com/docs/apis/nerdgraph/get-started/introduction-new-relic-nerdgraph/
func (s Scanner) verify(ctx context.Context, key string) (bool, map[string]string, error) {
regionUrls := map[string]string{
"us": "https://api.newrelic.com/graphql",
"eu": "https://api.eu.newrelic.com/graphql",
}
errs := make([]error, 0, len(regionUrls))
for region, regionUrl := range regionUrls {
verified, extraData, err := s.verifyRegion(ctx, key, region, regionUrl)
if err != nil {
errs = append(errs, fmt.Errorf("error verifying region %s: %w", region, err))
continue
}
if verified {
return true, extraData, nil
}
}
return false, nil, errors.Join(errs...)
}
func (s Scanner) verifyRegion(ctx context.Context, key, region, regionUrl string) (bool, map[string]string, error) {
body := `{"query": "{ requestContext { userId } }"}`
req, err := http.NewRequestWithContext(
ctx, http.MethodPost, regionUrl, strings.NewReader(body))
if err != nil {
return false, nil, fmt.Errorf("error constructing request: %w", err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("API-Key", key)
client := s.getClient()
res, err := client.Do(req)
if err != nil {
return false, nil, fmt.Errorf("error making request: %w", err)
}
defer func() {
_, _ = io.Copy(io.Discard, res.Body)
_ = res.Body.Close()
}()
switch res.StatusCode {
case http.StatusOK:
var resp graphqlResponse
if err := json.NewDecoder(res.Body).Decode(&resp); err != nil {
return false, nil, fmt.Errorf("error decoding response for region %s: %w", region, err)
}
return true, map[string]string{"region": region, "user_id": resp.Data.RequestContext.UserID}, nil
case http.StatusUnauthorized, http.StatusForbidden:
// 401 means the key is invalid, 403 means the region is incorrect
return false, nil, nil
default:
return false, nil, fmt.Errorf("unexpected status code for region %s: %d", region, res.StatusCode)
}
}