authress.go 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. package rules
  2. import (
  3. "fmt"
  4. "github.com/zricethezav/gitleaks/v8/cmd/generate/config/utils"
  5. "github.com/zricethezav/gitleaks/v8/cmd/generate/secrets"
  6. "github.com/zricethezav/gitleaks/v8/config"
  7. )
  8. func Authress() *config.Rule {
  9. // Rule Definition
  10. // (Note: When changes are made to this, rerun `go generate ./...` and commit the config/gitleaks.toml file
  11. r := config.Rule{
  12. Description: "Uncovered a possible Authress Service Client Access Key, which may compromise access control services and sensitive data.",
  13. RuleID: "authress-service-client-access-key",
  14. Regex: utils.GenerateUniqueTokenRegex(`(?:sc|ext|scauth|authress)_[a-z0-9]{5,30}\.[a-z0-9]{4,6}\.acc[_-][a-z0-9-]{10,32}\.[a-z0-9+/_=-]{30,120}`, true),
  15. Keywords: []string{"sc_", "ext_", "scauth_", "authress_"},
  16. }
  17. // validate
  18. // https://authress.io/knowledge-base/docs/authorization/service-clients/secrets-scanning/#1-detection
  19. service_client_id := "sc_" + utils.AlphaNumeric("10")
  20. access_key_id := utils.AlphaNumeric("4")
  21. account_id := "acc_" + utils.AlphaNumeric("10")
  22. signature_key := utils.AlphaNumericExtendedShort("40")
  23. tps := []string{
  24. utils.GenerateSampleSecret("authress", secrets.NewSecret(fmt.Sprintf(`%s\.%s\.%s\.%s`, service_client_id, access_key_id, account_id, signature_key))),
  25. }
  26. return utils.Validate(r, tps, nil)
  27. }