| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package rules
- import (
- "github.com/zricethezav/gitleaks/v8/config"
- )
- func GenericCredential() *config.Rule {
- // define rule
- r := config.Rule{
- RuleID: "generic-api-key",
- Description: "Generic API Key",
- Regex: generateSemiGenericRegex([]string{
- "key",
- "api",
- "token",
- "secret",
- "client",
- "passwd",
- "password",
- "auth",
- "access",
- }, `[0-9a-z\-_.=]{10,150}`),
- SecretGroup: 1,
- Keywords: []string{
- "key",
- "api",
- "token",
- "secret",
- "client",
- "passwd",
- "password",
- "auth",
- "access",
- },
- Entropy: 3.5,
- Allowlist: config.Allowlist{
- StopWords: DefaultStopWords,
- },
- }
- // validate
- tps := []string{
- generateSampleSecret("generic", "CLOJARS_34bf0e88955ff5a1c328d6a7491acc4f48e865a7b8dd4d70a70749037443"),
- generateSampleSecret("generic", "Zf3D0LXCM3EIMbgJpUNnkRtOfOueHznB"),
- `"client_id" : "0afae57f3ccfd9d7f5767067bc48b30f719e271ba470488056e37ab35d4b6506"`,
- `"client_secret" : "6da89121079f83b2eb6acccf8219ea982c3d79bccc3e9c6a85856480661f8fde",`,
- }
- fps := []string{
- `client_vpn_endpoint_id = aws_ec2_client_vpn_endpoint.client-vpn-endpoint.id`,
- `password combination.
- R5: Regulatory--21`,
- }
- return validate(r, tps, fps)
- }
|