Update github_old.go (#916)

This commit is contained in:
Ankush Goel 2022-11-16 00:10:55 +05:30 committed by GitHub
parent 741130fb8d
commit 64cfe4d85e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ var _ detectors.Detector = (*Scanner)(nil)
var (
// Oauth token
// https://developer.github.com/v3/#oauth2-token-sent-in-a-header
keyPat = regexp.MustCompile(`(?i)(?:github)[^\.].{0,40}[ =:'"]+([a-f0-9]{40})\b`)
keyPat = regexp.MustCompile(`(?i)(?:github|gh|pat)[^\.].{0,40}[ =:'"]+([a-f0-9]{40})\b`)
// TODO: Oauth2 client_id and client_secret
// https://developer.github.com/v3/#oauth2-keysecret
@ -38,7 +38,7 @@ type userRes struct {
// 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"}
return []string{"github","gh","pat"}
}
// FromData will find and optionally verify GitHub secrets in a given set of bytes.