26 lines
755 B
Go
26 lines
755 B
Go
package rules
|
|
|
|
import (
|
|
"github.com/zricethezav/gitleaks/v8/cmd/generate/config/utils"
|
|
"github.com/zricethezav/gitleaks/v8/cmd/generate/secrets"
|
|
"github.com/zricethezav/gitleaks/v8/config"
|
|
)
|
|
|
|
func RapidAPIAccessToken() *config.Rule {
|
|
// define rule
|
|
r := config.Rule{
|
|
RuleID: "rapidapi-access-token",
|
|
Description: "Uncovered a RapidAPI Access Token, which could lead to unauthorized access to various APIs and data services.",
|
|
Regex: utils.GenerateSemiGenericRegex([]string{"rapidapi"},
|
|
utils.AlphaNumericExtendedShort("50"), true),
|
|
|
|
Keywords: []string{
|
|
"rapidapi",
|
|
},
|
|
}
|
|
|
|
// validate
|
|
tps := utils.GenerateSampleSecrets("rapidapi", secrets.NewSecret(utils.AlphaNumericExtendedShort("50")))
|
|
return utils.Validate(r, tps, nil)
|
|
}
|