mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-15 09:27:30 +00:00
81 lines
2.1 KiB
Go
81 lines
2.1 KiB
Go
package airtableapikey
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
// "log"
|
|
"net/http"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/trufflesecurity/trufflehog/pkg/common"
|
|
"github.com/trufflesecurity/trufflehog/pkg/detectors"
|
|
"github.com/trufflesecurity/trufflehog/pkg/pb/detectorspb"
|
|
)
|
|
|
|
type Scanner struct{}
|
|
|
|
// Ensure the Scanner satisfies the interface at compile time
|
|
var _ detectors.Detector = (*Scanner)(nil)
|
|
|
|
var (
|
|
client = common.SaneHttpClient()
|
|
|
|
appPat = regexp.MustCompile(`(app[a-zA-Z0-9_-]{14})`) // could be part of url
|
|
keyPat = regexp.MustCompile(`\b(key[a-zA-Z0-9_-]{14})\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{"airtable"}
|
|
}
|
|
|
|
// FromData will find and optionally verify AirtableApiKey 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)
|
|
keyMatches := keyPat.FindAllStringSubmatch(dataStr, -1)
|
|
|
|
for _, keyMatch := range keyMatches {
|
|
if len(keyMatch) != 2 {
|
|
continue
|
|
}
|
|
keyRes := strings.TrimSpace(keyMatch[1])
|
|
|
|
for _, appMatch := range appMatches {
|
|
if len(appMatch) != 2 {
|
|
continue
|
|
}
|
|
appRes := strings.TrimSpace(appMatch[1])
|
|
|
|
s1 := detectors.Result{
|
|
DetectorType: detectorspb.DetectorType_AirtableApiKey,
|
|
Redacted: appRes,
|
|
Raw: []byte(keyRes),
|
|
}
|
|
|
|
if verify {
|
|
req, _ := http.NewRequest("GET", "https://api.airtable.com/v0/"+appRes+"/Projects", nil)
|
|
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", keyRes))
|
|
res, err := client.Do(req)
|
|
if err == nil {
|
|
defer res.Body.Close()
|
|
if res.StatusCode >= 200 && res.StatusCode < 300 {
|
|
s1.Verified = true
|
|
} else {
|
|
if detectors.IsKnownFalsePositive(keyRes, detectors.DefaultFalsePositives, true) {
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
results = append(results, s1)
|
|
}
|
|
}
|
|
|
|
return detectors.CleanResults(results), nil
|
|
}
|