Files
trufflehog/pkg/detectors/slack/slack.go
Amaan Ullah 0fa069c12f Enable errcheck and staticcheck for golangci-lint v2 and resolve all issues (#4924)
* enable errcheck and staticcheck for golangci-lint v2 and resolve all issues

* skip lint on intentional reference of deprecated DetectorType values
2026-05-15 17:07:14 +05:00

133 lines
4.6 KiB
Go

package slack
import (
"context"
"encoding/json"
"fmt"
"net/http"
regexp "github.com/wasilibs/go-re2"
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/detector_typepb"
"github.com/trufflesecurity/trufflehog/v3/pkg/common"
)
type Scanner struct {
detectors.DefaultMultiPartCredentialProvider
client *http.Client
}
// Check that the Slack scanner implements the SecretScanner interface at compile time.
var _ detectors.Detector = Scanner{}
var (
defaultClient = common.SaneHttpClient()
tokenPats = map[string]*regexp.Regexp{
"Slack Bot Token": regexp.MustCompile(`xoxb\-[0-9]{10,13}\-[0-9]{10,13}[a-zA-Z0-9\-]*`),
"Slack User Token": regexp.MustCompile(`xoxp\-[0-9]{10,13}\-[0-9]{10,13}[a-zA-Z0-9\-]*`),
"Slack Workspace Access Token": regexp.MustCompile(`xoxa\-[0-9]{10,13}\-[0-9]{10,13}[a-zA-Z0-9\-]*`),
"Slack Workspace Refresh Token": regexp.MustCompile(`xoxr\-[0-9]{10,13}\-[0-9]{10,13}[a-zA-Z0-9\-]*`),
}
verifyURL = "https://slack.com/api/auth.test"
)
type authRes struct {
Ok bool `json:"ok"`
URL string `json:"url"` // Workspace URL
Team string `json:"team"` // Human friendly workspace name
User string `json:"user"` // Username
TeamID string `json:"team_id"`
UserID string `json:"user_id"`
BotID string `json:"bot_id"`
Error string `json:"error"`
}
// 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{"xoxb-", "xoxp-", "xoxa-", "xoxr-"}
}
// FromData will find and optionally verify Slack 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)
for key, tokenPat := range tokenPats {
tokens := tokenPat.FindAllString(dataStr, -1)
for _, token := range tokens {
s1 := detectors.Result{
DetectorType: detector_typepb.DetectorType_Slack,
Raw: []byte(token),
SecretParts: map[string]string{"key": token},
}
s1.ExtraData = map[string]string{
"rotation_guide": "https://howtorotate.com/docs/tutorials/slack/",
"token_type": key,
}
if verify {
client := s.client
if s.client == nil {
client = defaultClient
}
req, err := http.NewRequestWithContext(ctx, "POST", verifyURL, nil)
if err != nil {
continue
}
req.Header.Add("Content-Type", "application/json; charset=utf-8")
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", token))
res, err := client.Do(req)
if err == nil {
defer func() { _ = res.Body.Close() }()
var authResponse authRes
if err := json.NewDecoder(res.Body).Decode(&authResponse); err != nil {
err = fmt.Errorf("failed to decode auth response: %w", err)
s1.SetVerificationError(err, token)
}
if authResponse.Ok {
s1.Verified = true
// Store name of user and team in extra data received from slack's api
s1.ExtraData["team"] = authResponse.Team
s1.ExtraData["name"] = authResponse.User
// Slack API returns 200 even if the token is invalid. We need to check the error field.
} else if authResponse.Error == "invalid_auth" {
// The secret is determinately not verified (nothing to do)
} else if authResponse.Error == "account_inactive" {
// "Authentication token is for a deleted user or workspace when using a bot token."
// https://api.slack.com/methods/auth.test) (Per
// https://slack.com/help/articles/360000446446-Manage-deactivated-members-apps-and-integrations,
// reactivating a bot regenerates its tokens, so this candidate is determinately unverified.)
} else if authResponse.Error == "token_revoked" {
// "Authentication token is for a deleted user or workspace, or the app has been removed when using a user token."
// This indicates the token is no longer valid and determinately unverified.
// https://api.slack.com/methods/auth.test
} else {
err = fmt.Errorf("unexpected error auth response %+v", authResponse.Error)
s1.SetVerificationError(err, token)
}
} else {
s1.SetVerificationError(err, token)
}
}
results = append(results, s1)
}
}
return results, nil
}
func (s Scanner) Type() detector_typepb.DetectorType {
return detector_typepb.DetectorType_Slack
}
func (s Scanner) Description() string {
return "Slack tokens can be used to authenticate API requests to the Slack platform, allowing access to various workspace resources and functionalities."
}