diff --git a/pkg/detectors/godaddy/v1/godaddy.go b/pkg/detectors/godaddy/v1/godaddy.go new file mode 100644 index 000000000000..1901f14fdab2 --- /dev/null +++ b/pkg/detectors/godaddy/v1/godaddy.go @@ -0,0 +1,140 @@ +package godaddy + +import ( + "context" + "fmt" + "io" + "net/http" + + regexp "github.com/wasilibs/go-re2" + + "github.com/trufflesecurity/trufflehog/v3/pkg/common" + "github.com/trufflesecurity/trufflehog/v3/pkg/detectors" + "github.com/trufflesecurity/trufflehog/v3/pkg/pb/detectorspb" +) + +type Scanner struct { + client *http.Client +} + +var ( + // ensure the scanner satisfies the interface at compile time. + _ detectors.Detector = (*Scanner)(nil) + _ detectors.Versioner = (*Scanner)(nil) + + defaultClient = common.SaneHttpClient() + + // the key for the GoDaddy OTE environment is a 37-character alphanumeric string that may include underscores. + keyPattern = regexp.MustCompile(detectors.PrefixRegex([]string{"godaddy", "ote"}) + common.BuildRegex("a-zA-Z0-9", "_", 37)) + // the secret for the GoDaddy OTE environment is a 22-character alphanumeric string. + secretPattern = regexp.MustCompile(detectors.PrefixRegex([]string{"godaddy", "ote"}) + common.BuildRegex("a-zA-Z0-9", "", 22)) + + // ote environment + ote = "api.ote-godaddy.com" +) + +func (s *Scanner) getClient() *http.Client { + if s.client != nil { + return s.client + } + + return defaultClient +} + +func (s *Scanner) Version() int { return 1 } + +// 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{"godaddy", "ote"} +} + +func (s Scanner) Description() string { + return "GoDaddy offers website building, hosting and security tools and services to construct, expand and protect the online presence." + + "GoDaddy provides applications and access to relevant third-party products and platforms to connect their customers" +} + +func (s Scanner) Type() detectorspb.DetectorType { + return detectorspb.DetectorType_GoDaddy +} + +// FromData will find and optionally verify GoDaddy API Key and secrets in a given set of bytes. +func (s Scanner) FromData(ctx context.Context, verify bool, data []byte) (results []detectors.Result, err error) { + // convert the data to string + dataStr := string(data) + + // find all the matching keys and secret in data and make a unique maps of both keys and secret. + uniqueKeys, uniqueSecrets := make(map[string]struct{}), make(map[string]struct{}) + + for _, foundKey := range keyPattern.FindAllStringSubmatch(dataStr, -1) { + uniqueKeys[foundKey[1]] = struct{}{} + } + + for _, foundSecret := range secretPattern.FindAllStringSubmatch(dataStr, -1) { + uniqueSecrets[foundSecret[1]] = struct{}{} + } + + for key := range uniqueKeys { + for secret := range uniqueSecrets { + result := detectors.Result{ + DetectorType: detectorspb.DetectorType_GoDaddy, + Raw: []byte(key), + ExtraData: make(map[string]string), + } + + if verify { + isVerified, verificationErr := VerifyGoDaddySecret(ctx, s.getClient(), ote, MakeAuthHeaderValue(key, secret)) + + result.Verified = isVerified + result.SetVerificationError(verificationErr, secret) + + // in case of successful verification add the enviorement name in extradata to let user know which env this secret belong to. + if isVerified { + result.ExtraData["Environment"] = "OTE" + } + } + + results = append(results, result) + } + } + + return results, nil + +} + +// VerifyGoDaddySecret make a call to godaddy api with given secret to check if secret is valid or not. +func VerifyGoDaddySecret(ctx context.Context, client *http.Client, environment, secret string) (bool, error) { + req, err := http.NewRequestWithContext(ctx, "GET", fmt.Sprintf("https://%s/v1/domains/available?domain=example.com", environment), http.NoBody) + if err != nil { + return false, err + } + + // set the required auth header + req.Header.Set("Authorization", secret) + + resp, err := client.Do(req) + if err != nil { + return false, err + } + defer func() { + _, _ = io.Copy(io.Discard, resp.Body) + _ = resp.Body.Close() + }() + + switch resp.StatusCode { + case http.StatusOK: + return true, nil + case http.StatusUnauthorized: + return false, nil + case http.StatusForbidden: + // as per documentation in case of 403 the token is actually verified but it does not have access. + return true, nil + default: + return false, fmt.Errorf("unexpected status code: %d", resp.StatusCode) + } +} + +// MakeAuthHeaderValue return a value made from key and secret that can be used as authorization header value for godaddy API's. +func MakeAuthHeaderValue(key, secret string) string { + return fmt.Sprintf("sso-key %s:%s", key, secret) +} diff --git a/pkg/detectors/godaddy/v1/godaddy_integration_test.go b/pkg/detectors/godaddy/v1/godaddy_integration_test.go new file mode 100644 index 000000000000..b72e8776f9d6 --- /dev/null +++ b/pkg/detectors/godaddy/v1/godaddy_integration_test.go @@ -0,0 +1,120 @@ +//go:build detectors +// +build detectors + +package godaddy + +import ( + "context" + "fmt" + "testing" + "time" + + "github.com/kylelemons/godebug/pretty" + + "github.com/trufflesecurity/trufflehog/v3/pkg/common" + "github.com/trufflesecurity/trufflehog/v3/pkg/detectors" + "github.com/trufflesecurity/trufflehog/v3/pkg/pb/detectorspb" +) + +func TestGoDaddy_FromChunk(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), time.Second*5) + defer cancel() + testSecrets, err := common.GetSecret(ctx, "trufflehog-testing", "detectors5") + if err != nil { + t.Fatalf("could not get test secrets from GCP: %s", err) + } + secret := testSecrets.MustGetField("GODADDY_OTE") + inactiveSecret := testSecrets.MustGetField("GODADDY_OTE_INACTIVE") + + type args struct { + ctx context.Context + data []byte + verify bool + } + tests := []struct { + name string + s Scanner + args args + want []detectors.Result + wantErr bool + }{ + { + name: "found, verified", + s: Scanner{}, + args: args{ + ctx: context.Background(), + data: []byte(fmt.Sprintf("You can find a godaddy secret %s within", secret)), + verify: true, + }, + want: []detectors.Result{ + { + DetectorType: detectorspb.DetectorType_GoDaddy, + Verified: true, + }, + }, + wantErr: false, + }, + { + name: "found, unverified", + s: Scanner{}, + args: args{ + ctx: context.Background(), + data: []byte(fmt.Sprintf("You can find a godaddy secret %s within but not valid", inactiveSecret)), // the secret would satisfy the regex but not pass validation + verify: true, + }, + want: []detectors.Result{ + { + DetectorType: detectorspb.DetectorType_GoDaddy, + Verified: false, + }, + }, + wantErr: false, + }, + { + name: "not found", + s: Scanner{}, + args: args{ + ctx: context.Background(), + data: []byte("You cannot find the secret within"), + verify: true, + }, + want: nil, + wantErr: false, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + s := Scanner{} + got, err := s.FromData(tt.args.ctx, tt.args.verify, tt.args.data) + if (err != nil) != tt.wantErr { + t.Errorf("GoDaddy.FromData() error = %v, wantErr %v", err, tt.wantErr) + return + } + for i := range got { + if len(got[i].Raw) == 0 { + t.Fatalf("no raw secret present: \n %+v", got[i]) + } + got[i].Raw = nil + } + if diff := pretty.Compare(got, tt.want); diff != "" { + t.Errorf("GoDaddy.FromData() %s diff: (-got +want)\n%s", tt.name, diff) + } + }) + } +} + +func BenchmarkFromData(benchmark *testing.B) { + ctx := context.Background() + s := Scanner{} + for name, data := range detectors.MustGetBenchmarkData() { + benchmark.Run(name, func(b *testing.B) { + b.ResetTimer() + for n := 0; n < b.N; n++ { + _, err := s.FromData(ctx, false, data) + if err != nil { + b.Fatal(err) + } + } + }) + } +} diff --git a/pkg/detectors/godaddy/v1/godaddy_test.go b/pkg/detectors/godaddy/v1/godaddy_test.go new file mode 100644 index 000000000000..f21192339412 --- /dev/null +++ b/pkg/detectors/godaddy/v1/godaddy_test.go @@ -0,0 +1,90 @@ +package godaddy + +import ( + "context" + "testing" + + "github.com/google/go-cmp/cmp" + + "github.com/trufflesecurity/trufflehog/v3/pkg/detectors" + "github.com/trufflesecurity/trufflehog/v3/pkg/engine/ahocorasick" +) + +var ( + validPattern = `[{ + "_id": "1a8d0cca-e1a9-4318-bc2f-f5658ab2dcb5", + "name": "GoDaddy", + "type": "Detector", + "api": true, + "authentication_type": "", + "verification_url": "https://api.example.com/example", + "test_secrets": { + "godaddyKey": "2TM44WqB21o4zH_3xM44WkB21i4zHHhXSoHjO", + "godaddySecret": "3xM44WkB21i4zHHhXSoHjO", + "not_godaddySecret": "2TM44WqB21o4zH$3xM44WkB21i4zHHhXSoHjO" + }, + "expected_response": "200", + "method": "GET", + "deprecated": false + }]` + secret = "2TM44WqB21o4zH_3xM44WkB21i4zHHhXSoHjO" +) + +func TestGoDaddy_Pattern(t *testing.T) { + d := Scanner{} + ahoCorasickCore := ahocorasick.NewAhoCorasickCore([]detectors.Detector{d}) + + tests := []struct { + name string + input string + want []string + }{ + { + name: "valid pattern", + input: validPattern, + want: []string{secret}, + }, + } + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + matchedDetectors := ahoCorasickCore.FindDetectorMatches([]byte(test.input)) + if len(matchedDetectors) == 0 { + t.Errorf("keywords '%v' not matched by: %s", d.Keywords(), test.input) + return + } + + results, err := d.FromData(context.Background(), false, []byte(test.input)) + if err != nil { + t.Errorf("error = %v", err) + return + } + + if len(results) != len(test.want) { + if len(results) == 0 { + t.Errorf("did not receive result") + } else { + t.Errorf("expected %d results, only received %d", len(test.want), len(results)) + } + return + } + + actual := make(map[string]struct{}, len(results)) + for _, r := range results { + if len(r.RawV2) > 0 { + actual[string(r.RawV2)] = struct{}{} + } else { + actual[string(r.Raw)] = struct{}{} + } + } + expected := make(map[string]struct{}, len(test.want)) + for _, v := range test.want { + expected[v] = struct{}{} + } + + if diff := cmp.Diff(expected, actual); diff != "" { + t.Errorf("%s diff: (-want +got)\n%s", test.name, diff) + } + }) + } +} diff --git a/pkg/detectors/godaddy/v2/godaddy.go b/pkg/detectors/godaddy/v2/godaddy.go new file mode 100644 index 000000000000..56e608705b11 --- /dev/null +++ b/pkg/detectors/godaddy/v2/godaddy.go @@ -0,0 +1,136 @@ +package godaddy + +import ( + "context" + "fmt" + "io" + "net/http" + + regexp "github.com/wasilibs/go-re2" + + "github.com/trufflesecurity/trufflehog/v3/pkg/common" + "github.com/trufflesecurity/trufflehog/v3/pkg/detectors" + v1 "github.com/trufflesecurity/trufflehog/v3/pkg/detectors/godaddy/v1" + "github.com/trufflesecurity/trufflehog/v3/pkg/pb/detectorspb" +) + +type Scanner struct { + client *http.Client +} + +var ( + // ensure the scanner satisfies the interface at compile time. + _ detectors.Detector = (*Scanner)(nil) + _ detectors.Versioner = (*Scanner)(nil) + + defaultClient = common.SaneHttpClient() + + // the key for the GoDaddy Prod environment is a 35-character alphanumeric string that may include underscores. + keyPattern = regexp.MustCompile(detectors.PrefixRegex([]string{"godaddy"}) + common.BuildRegex("a-zA-Z0-9", "_", 35)) + // the secret for the GoDaddy Prod environment is a 22-character alphanumeric string. + secretPattern = regexp.MustCompile(detectors.PrefixRegex([]string{"godaddy"}) + common.BuildRegex("a-zA-Z0-9", "", 22)) + + // prod environment + prod = "api.godaddy.com" +) + +func (s *Scanner) getClient() *http.Client { + if s.client != nil { + return s.client + } + + return defaultClient +} + +func (s *Scanner) Version() int { return 2 } + +// 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{"godaddy"} +} + +func (s Scanner) Description() string { + return "GoDaddy offers website building, hosting and security tools and services to construct, expand and protect the online presence." + + "GoDaddy provides applications and access to relevant third-party products and platforms to connect their customers" +} + +func (s Scanner) Type() detectorspb.DetectorType { + return detectorspb.DetectorType_GoDaddy +} + +// FromData will find and optionally verify GoDaddy API Key and secrets in a given set of bytes. +func (s Scanner) FromData(ctx context.Context, verify bool, data []byte) (results []detectors.Result, err error) { + // convert the data to string + dataStr := string(data) + + // find all the matching keys and secret in data and make a unique maps of both keys and secret. + uniqueKeys, uniqueSecrets := make(map[string]struct{}), make(map[string]struct{}) + + for _, foundKey := range keyPattern.FindAllStringSubmatch(dataStr, -1) { + uniqueKeys[foundKey[1]] = struct{}{} + } + + for _, foundSecret := range secretPattern.FindAllStringSubmatch(dataStr, -1) { + uniqueSecrets[foundSecret[1]] = struct{}{} + } + + for key := range uniqueKeys { + for secret := range uniqueSecrets { + result := detectors.Result{ + DetectorType: detectorspb.DetectorType_GoDaddy, + Raw: []byte(key), + ExtraData: make(map[string]string), + } + + if verify { + isVerified, verificationErr := VerifyGoDaddySecret(ctx, s.getClient(), prod, v1.MakeAuthHeaderValue(key, secret)) + + result.Verified = isVerified + result.SetVerificationError(verificationErr, secret) + + // in case of successful verification add the enviorement name in extradata to let user know which env this secret belong to. + if isVerified { + result.ExtraData["Environment"] = "Prod" + } + } + + results = append(results, result) + } + } + + return results, nil + +} + +// VerifyGoDaddySecret make a call to godaddy api with given secret to check if secret is valid or not. +func VerifyGoDaddySecret(ctx context.Context, client *http.Client, environment, secret string) (bool, error) { + req, err := http.NewRequestWithContext(ctx, "GET", fmt.Sprintf("https://%s/v1/domains/available?domain=example.com", environment), http.NoBody) + if err != nil { + return false, err + } + + // set the required auth header + req.Header.Set("Authorization", secret) + + resp, err := client.Do(req) + if err != nil { + return false, err + } + defer func() { + _, _ = io.Copy(io.Discard, resp.Body) + _ = resp.Body.Close() + }() + + switch resp.StatusCode { + case http.StatusOK: + return true, nil + case http.StatusUnauthorized: + return false, nil + case http.StatusForbidden: + // as per documentation in case of 403 the token is actually verified but it does not have access. + return true, nil + default: + return false, fmt.Errorf("unexpected status code: %d", resp.StatusCode) + } +} diff --git a/pkg/detectors/godaddy/v2/godaddy_integration_test.go b/pkg/detectors/godaddy/v2/godaddy_integration_test.go new file mode 100644 index 000000000000..e9a87105a8f0 --- /dev/null +++ b/pkg/detectors/godaddy/v2/godaddy_integration_test.go @@ -0,0 +1,120 @@ +//go:build detectors +// +build detectors + +package godaddy + +import ( + "context" + "fmt" + "testing" + "time" + + "github.com/kylelemons/godebug/pretty" + + "github.com/trufflesecurity/trufflehog/v3/pkg/common" + "github.com/trufflesecurity/trufflehog/v3/pkg/detectors" + "github.com/trufflesecurity/trufflehog/v3/pkg/pb/detectorspb" +) + +func TestGoDaddy_FromChunk(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), time.Second*5) + defer cancel() + testSecrets, err := common.GetSecret(ctx, "trufflehog-testing", "detectors5") + if err != nil { + t.Fatalf("could not get test secrets from GCP: %s", err) + } + secret := testSecrets.MustGetField("GODADDY_PROD") + inactiveSecret := testSecrets.MustGetField("GODADDY_PROD_INACTIVE") + + type args struct { + ctx context.Context + data []byte + verify bool + } + tests := []struct { + name string + s Scanner + args args + want []detectors.Result + wantErr bool + }{ + { + name: "found, verified", + s: Scanner{}, + args: args{ + ctx: context.Background(), + data: []byte(fmt.Sprintf("You can find a godaddy secret %s within", secret)), + verify: true, + }, + want: []detectors.Result{ + { + DetectorType: detectorspb.DetectorType_GoDaddy, + Verified: true, + }, + }, + wantErr: false, + }, + { + name: "found, unverified", + s: Scanner{}, + args: args{ + ctx: context.Background(), + data: []byte(fmt.Sprintf("You can find a godaddy secret %s within but not valid", inactiveSecret)), // the secret would satisfy the regex but not pass validation + verify: true, + }, + want: []detectors.Result{ + { + DetectorType: detectorspb.DetectorType_GoDaddy, + Verified: false, + }, + }, + wantErr: false, + }, + { + name: "not found", + s: Scanner{}, + args: args{ + ctx: context.Background(), + data: []byte("You cannot find the secret within"), + verify: true, + }, + want: nil, + wantErr: false, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + s := Scanner{} + got, err := s.FromData(tt.args.ctx, tt.args.verify, tt.args.data) + if (err != nil) != tt.wantErr { + t.Errorf("GoDaddy.FromData() error = %v, wantErr %v", err, tt.wantErr) + return + } + for i := range got { + if len(got[i].Raw) == 0 { + t.Fatalf("no raw secret present: \n %+v", got[i]) + } + got[i].Raw = nil + } + if diff := pretty.Compare(got, tt.want); diff != "" { + t.Errorf("GoDaddy.FromData() %s diff: (-got +want)\n%s", tt.name, diff) + } + }) + } +} + +func BenchmarkFromData(benchmark *testing.B) { + ctx := context.Background() + s := Scanner{} + for name, data := range detectors.MustGetBenchmarkData() { + benchmark.Run(name, func(b *testing.B) { + b.ResetTimer() + for n := 0; n < b.N; n++ { + _, err := s.FromData(ctx, false, data) + if err != nil { + b.Fatal(err) + } + } + }) + } +} diff --git a/pkg/detectors/godaddy/v2/godaddy_test.go b/pkg/detectors/godaddy/v2/godaddy_test.go new file mode 100644 index 000000000000..7d50ce6501e0 --- /dev/null +++ b/pkg/detectors/godaddy/v2/godaddy_test.go @@ -0,0 +1,90 @@ +package godaddy + +import ( + "context" + "testing" + + "github.com/google/go-cmp/cmp" + + "github.com/trufflesecurity/trufflehog/v3/pkg/detectors" + "github.com/trufflesecurity/trufflehog/v3/pkg/engine/ahocorasick" +) + +var ( + validPattern = `[{ + "_id": "1a8d0cca-e1a9-4318-bc2f-f5658ab2dcb5", + "name": "GoDaddy", + "type": "Detector", + "api": true, + "authentication_type": "", + "verification_url": "https://api.example.com/example", + "test_secrets": { + "godaddyKey": "2TM44WqB21o4zH_3xM44WkB21i4zHHhXSoH", + "godaddySecret": "3xM44WkB21i4zHHhXSoHjO", + "not_godaddySecret": "2TM44WqB21o4zH@3xM44WkB21i4zHHhXSoH" + }, + "expected_response": "200", + "method": "GET", + "deprecated": false + }]` + secret = "2TM44WqB21o4zH_3xM44WkB21i4zHHhXSoH" +) + +func TestGoDaddy_Pattern(t *testing.T) { + d := Scanner{} + ahoCorasickCore := ahocorasick.NewAhoCorasickCore([]detectors.Detector{d}) + + tests := []struct { + name string + input string + want []string + }{ + { + name: "valid pattern", + input: validPattern, + want: []string{secret}, + }, + } + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + matchedDetectors := ahoCorasickCore.FindDetectorMatches([]byte(test.input)) + if len(matchedDetectors) == 0 { + t.Errorf("keywords '%v' not matched by: %s", d.Keywords(), test.input) + return + } + + results, err := d.FromData(context.Background(), false, []byte(test.input)) + if err != nil { + t.Errorf("error = %v", err) + return + } + + if len(results) != len(test.want) { + if len(results) == 0 { + t.Errorf("did not receive result") + } else { + t.Errorf("expected %d results, only received %d", len(test.want), len(results)) + } + return + } + + actual := make(map[string]struct{}, len(results)) + for _, r := range results { + if len(r.RawV2) > 0 { + actual[string(r.RawV2)] = struct{}{} + } else { + actual[string(r.Raw)] = struct{}{} + } + } + expected := make(map[string]struct{}, len(test.want)) + for _, v := range test.want { + expected[v] = struct{}{} + } + + if diff := cmp.Diff(expected, actual); diff != "" { + t.Errorf("%s diff: (-want +got)\n%s", test.name, diff) + } + }) + } +} diff --git a/pkg/engine/defaults/defaults.go b/pkg/engine/defaults/defaults.go index d9bd37cef639..9bd38bd0ec77 100644 --- a/pkg/engine/defaults/defaults.go +++ b/pkg/engine/defaults/defaults.go @@ -321,6 +321,8 @@ import ( "github.com/trufflesecurity/trufflehog/v3/pkg/detectors/glassnode" "github.com/trufflesecurity/trufflehog/v3/pkg/detectors/gocanvas" "github.com/trufflesecurity/trufflehog/v3/pkg/detectors/gocardless" + godaddyv1 "github.com/trufflesecurity/trufflehog/v3/pkg/detectors/godaddy/v1" + godaddyv2 "github.com/trufflesecurity/trufflehog/v3/pkg/detectors/godaddy/v2" "github.com/trufflesecurity/trufflehog/v3/pkg/detectors/goodday" "github.com/trufflesecurity/trufflehog/v3/pkg/detectors/googleoauth2" "github.com/trufflesecurity/trufflehog/v3/pkg/detectors/grafana" @@ -1149,6 +1151,8 @@ func buildDetectorList() []detectors.Detector { &glassnode.Scanner{}, &gocanvas.Scanner{}, &gocardless.Scanner{}, + &godaddyv1.Scanner{}, + &godaddyv2.Scanner{}, &goodday.Scanner{}, &googleoauth2.Scanner{}, &grafana.Scanner{}, diff --git a/pkg/pb/detectorspb/detectors.pb.go b/pkg/pb/detectorspb/detectors.pb.go index 8919e1d1f3bc..4894e90d8062 100644 --- a/pkg/pb/detectorspb/detectors.pb.go +++ b/pkg/pb/detectorspb/detectors.pb.go @@ -1110,6 +1110,7 @@ const ( DetectorType_WeightsAndBiases DetectorType = 1005 DetectorType_ZohoCRM DetectorType = 1006 DetectorType_AzureOpenAI DetectorType = 1007 + DetectorType_GoDaddy DetectorType = 1008 ) // Enum value maps for DetectorType. @@ -2119,6 +2120,7 @@ var ( 1005: "WeightsAndBiases", 1006: "ZohoCRM", 1007: "AzureOpenAI", + 1008: "GoDaddy", } DetectorType_value = map[string]int32{ "Alibaba": 0, @@ -3125,6 +3127,7 @@ var ( "WeightsAndBiases": 1005, "ZohoCRM": 1006, "AzureOpenAI": 1007, + "GoDaddy": 1008, } ) @@ -3578,7 +3581,7 @@ var file_detectors_proto_rawDesc = []byte{ 0x4c, 0x41, 0x49, 0x4e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x42, 0x41, 0x53, 0x45, 0x36, 0x34, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x54, 0x46, 0x31, 0x36, 0x10, 0x03, 0x12, 0x13, 0x0a, 0x0f, 0x45, 0x53, 0x43, 0x41, 0x50, 0x45, 0x44, 0x5f, 0x55, 0x4e, 0x49, 0x43, 0x4f, 0x44, 0x45, - 0x10, 0x04, 0x2a, 0xdf, 0x80, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x74, 0x65, 0x63, 0x74, 0x6f, 0x72, + 0x10, 0x04, 0x2a, 0xed, 0x80, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x74, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x41, 0x6c, 0x69, 0x62, 0x61, 0x62, 0x61, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x41, 0x4d, 0x51, 0x50, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x57, 0x53, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x7a, 0x75, 0x72, 0x65, 0x10, 0x03, 0x12, @@ -4608,11 +4611,12 @@ var file_detectors_proto_rawDesc = []byte{ 0x0a, 0x10, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x6e, 0x64, 0x42, 0x69, 0x61, 0x73, 0x65, 0x73, 0x10, 0xed, 0x07, 0x12, 0x0c, 0x0a, 0x07, 0x5a, 0x6f, 0x68, 0x6f, 0x43, 0x52, 0x4d, 0x10, 0xee, 0x07, 0x12, 0x10, 0x0a, 0x0b, 0x41, 0x7a, 0x75, 0x72, 0x65, 0x4f, 0x70, 0x65, 0x6e, - 0x41, 0x49, 0x10, 0xef, 0x07, 0x42, 0x3d, 0x5a, 0x3b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x72, 0x75, 0x66, 0x66, 0x6c, 0x65, 0x73, 0x65, 0x63, 0x75, 0x72, - 0x69, 0x74, 0x79, 0x2f, 0x74, 0x72, 0x75, 0x66, 0x66, 0x6c, 0x65, 0x68, 0x6f, 0x67, 0x2f, 0x76, - 0x33, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x62, 0x2f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x6f, - 0x72, 0x73, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x41, 0x49, 0x10, 0xef, 0x07, 0x12, 0x0c, 0x0a, 0x07, 0x47, 0x6f, 0x44, 0x61, 0x64, 0x64, 0x79, + 0x10, 0xf0, 0x07, 0x42, 0x3d, 0x5a, 0x3b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, + 0x6d, 0x2f, 0x74, 0x72, 0x75, 0x66, 0x66, 0x6c, 0x65, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, + 0x79, 0x2f, 0x74, 0x72, 0x75, 0x66, 0x66, 0x6c, 0x65, 0x68, 0x6f, 0x67, 0x2f, 0x76, 0x33, 0x2f, + 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x62, 0x2f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, + 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/proto/detectors.proto b/proto/detectors.proto index ecf53a523b51..bb62d5a08323 100644 --- a/proto/detectors.proto +++ b/proto/detectors.proto @@ -1017,6 +1017,7 @@ enum DetectorType { WeightsAndBiases = 1005; ZohoCRM = 1006; AzureOpenAI = 1007; + GoDaddy = 1008; } message Result {