mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2026-06-15 13:24:37 +00:00
* enable errcheck and staticcheck for golangci-lint v2 and resolve all issues * skip lint on intentional reference of deprecated DetectorType values
234 lines
7.6 KiB
Go
234 lines
7.6 KiB
Go
package github
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"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{ detectors.EndpointSetter }
|
|
|
|
// Ensure the Scanner satisfies the interfaces at compile time.
|
|
var _ detectors.Detector = (*Scanner)(nil)
|
|
var _ detectors.Versioner = (*Scanner)(nil)
|
|
var _ detectors.EndpointCustomizer = (*Scanner)(nil)
|
|
var _ detectors.CloudProvider = (*Scanner)(nil)
|
|
|
|
func (Scanner) Version() int { return 1 }
|
|
func (Scanner) CloudEndpoint() string { return "https://api.github.com" }
|
|
|
|
var (
|
|
// Oauth token
|
|
// https://developer.github.com/v3/#oauth2-token-sent-in-a-header
|
|
keyPat = regexp.MustCompile(
|
|
detectors.PrefixRegex([]string{
|
|
"github_token", "github_secret", "github_key", "github_api", "github_pat",
|
|
"githubtoken", "githubsecret", "githubkey", "githubapi", "githubpat",
|
|
"gh_token", "gh_secret", "gh_key", "gh_api", "gh_pat",
|
|
"ghtoken", "ghsecret", "ghkey", "ghapi", "ghpat",
|
|
}) + `\b([0-9a-f]{40})\b`,
|
|
)
|
|
)
|
|
|
|
// TODO: Add secret context?? Information about access, ownership etc
|
|
type UserRes struct {
|
|
Login string `json:"login"`
|
|
Type string `json:"type"`
|
|
SiteAdmin bool `json:"site_admin"`
|
|
Name string `json:"name"`
|
|
Company string `json:"company"`
|
|
UserURL string `json:"html_url"`
|
|
Email string `json:"email"`
|
|
Location string `json:"location"`
|
|
// Included in GitHub Enterprise Server.
|
|
LdapDN string `json:"ldap_dn"`
|
|
}
|
|
|
|
type HeaderInfo struct {
|
|
Scopes string `json:"X-OAuth-Scopes"`
|
|
Expiry string `json:"github-authentication-token-expiration"`
|
|
}
|
|
|
|
// 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{"github", "gh"}
|
|
}
|
|
|
|
func (s Scanner) Type() detector_typepb.DetectorType {
|
|
return detector_typepb.DetectorType_Github
|
|
}
|
|
|
|
func (s Scanner) Description() string {
|
|
return "GitHub is a web-based platform used for version control and collaborative software development. GitHub tokens can be used to access and modify repositories and other resources."
|
|
}
|
|
|
|
var ghFalsePositives = map[detectors.FalsePositive]struct{}{
|
|
detectors.FalsePositive("github commit"): {},
|
|
}
|
|
|
|
var ghKnownNonSensitivePrefixes = []string{
|
|
"avatars.githubusercontent.com", // GitHub avatar URLs
|
|
"actions/", // GitHub Actions paths
|
|
"raw.githubusercontent.com/", // Raw file URLs from GitHub
|
|
"api.github.com/repos/", // GitHub API repository endpoints
|
|
"gist.github.com/", // GitHub Gist URLs
|
|
"sha256:", // SHA256 hash prefix
|
|
"github.com/", // General GitHub repo URLs
|
|
"pipelines.actions.githubusercontent.com/", // GitHub Actions infrastructure
|
|
"ghcr.io/", // GitHub Container Registry
|
|
}
|
|
|
|
// FromData will find and optionally verify GitHub 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)
|
|
|
|
for _, match := range matches {
|
|
// First match is entire regex, second is the first group.
|
|
matchPrefix := match[0]
|
|
token := match[1]
|
|
|
|
// It may seem strange to filter out findings prior to verifying them. However, this credential looks like a
|
|
// normal sha256 hash, which is an incredibly common string to see. So the filter here prevents an excessive
|
|
// number of requests to be sent for findings which will almost certainly not be verified. It must occur before
|
|
// verification, because otherwise the number of verification requests can be quite excessive.
|
|
if isKnownNonSensitiveCommonPrefix(matchPrefix) {
|
|
continue
|
|
}
|
|
|
|
// Note that this false positive check happens **before** verification! I don't know why it's written this way
|
|
// but that's why this logic wasn't moved into a CustomFalsePositiveChecker implementation.
|
|
if isFp, _ := detectors.IsKnownFalsePositive(token, ghFalsePositives, false); isFp {
|
|
continue
|
|
}
|
|
|
|
if detectors.StringShannonEntropy(token) < 3.5 {
|
|
continue
|
|
}
|
|
|
|
s1 := detectors.Result{
|
|
DetectorType: detector_typepb.DetectorType_Github,
|
|
Raw: []byte(token),
|
|
ExtraData: map[string]string{
|
|
"rotation_guide": "https://howtorotate.com/docs/tutorials/github/",
|
|
"version": fmt.Sprintf("%d", s.Version()),
|
|
},
|
|
SecretParts: map[string]string{"key": token},
|
|
}
|
|
|
|
if verify {
|
|
client := common.SaneHttpClient()
|
|
|
|
isVerified, userResponse, headers, err := s.VerifyGithub(ctx, client, token)
|
|
|
|
s1.Verified = isVerified
|
|
s1.SetVerificationError(err, token)
|
|
|
|
if userResponse != nil {
|
|
SetUserResponse(userResponse, &s1)
|
|
}
|
|
if headers != nil {
|
|
SetHeaderInfo(headers, &s1)
|
|
}
|
|
}
|
|
|
|
results = append(results, s1)
|
|
}
|
|
|
|
return results, nil
|
|
}
|
|
|
|
func (s Scanner) VerifyGithub(ctx context.Context, client *http.Client, token string) (bool, *UserRes, *HeaderInfo, error) {
|
|
// https://developer.github.com/v3/users/#get-the-authenticated-user
|
|
var requestErr error
|
|
for _, url := range s.Endpoints() {
|
|
requestErr = nil
|
|
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodGet, fmt.Sprintf("%s/user", url), nil)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
|
|
req.Header.Set("Content-Type", "application/json; charset=utf-8")
|
|
req.Header.Set("Authorization", fmt.Sprintf("token %s", token))
|
|
res, err := client.Do(req)
|
|
if err != nil {
|
|
requestErr = err
|
|
continue
|
|
}
|
|
|
|
if res.StatusCode >= 200 && res.StatusCode < 300 {
|
|
var userResponse UserRes
|
|
err = json.NewDecoder(res.Body).Decode(&userResponse)
|
|
_ = res.Body.Close()
|
|
if err == nil {
|
|
// GitHub does not seem to consistently return this header.
|
|
scopes := res.Header.Get("X-OAuth-Scopes")
|
|
expiry := res.Header.Get("github-authentication-token-expiration")
|
|
return true, &userResponse, &HeaderInfo{Scopes: scopes, Expiry: expiry}, nil
|
|
}
|
|
}
|
|
}
|
|
return false, nil, nil, requestErr
|
|
}
|
|
|
|
func SetUserResponse(userResponse *UserRes, s1 *detectors.Result) {
|
|
s1.ExtraData["username"] = userResponse.Login
|
|
s1.ExtraData["url"] = userResponse.UserURL
|
|
s1.ExtraData["account_type"] = userResponse.Type
|
|
|
|
if userResponse.SiteAdmin {
|
|
s1.ExtraData["site_admin"] = "true"
|
|
}
|
|
if userResponse.Name != "" {
|
|
s1.ExtraData["name"] = userResponse.Name
|
|
}
|
|
if userResponse.Company != "" {
|
|
s1.ExtraData["company"] = userResponse.Company
|
|
}
|
|
if userResponse.LdapDN != "" {
|
|
s1.ExtraData["ldap_dn"] = userResponse.LdapDN
|
|
}
|
|
|
|
// email & location if user has made them public
|
|
if userResponse.Email != "" {
|
|
s1.ExtraData["email"] = userResponse.Email
|
|
}
|
|
if userResponse.Location != "" {
|
|
s1.ExtraData["location"] = userResponse.Location
|
|
}
|
|
}
|
|
|
|
func SetHeaderInfo(headers *HeaderInfo, s1 *detectors.Result) {
|
|
if headers.Scopes != "" {
|
|
s1.ExtraData["scopes"] = headers.Scopes
|
|
}
|
|
if headers.Expiry != "" {
|
|
s1.ExtraData["expiry"] = headers.Expiry
|
|
}
|
|
}
|
|
|
|
// isKnownNonSensitiveCommonPrefix checks if the given prefix is a known, non-sensitive value.
|
|
// The GitHub v1 detector uses a broad regex that can capture many false positives.
|
|
// This function helps filter out matches that begin with common, safe prefixes.
|
|
// Example: avatars.githubusercontent.com/u/56769451?u=088102b6160822bc68c25a2a5df170080d0b16a2
|
|
func isKnownNonSensitiveCommonPrefix(matchPrefix string) bool {
|
|
for _, prefix := range ghKnownNonSensitivePrefixes {
|
|
if strings.Contains(matchPrefix, prefix) {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|