12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- syntax = "proto3";
- package google.cloud.securitycenter.v1;
- option csharp_namespace = "Google.Cloud.SecurityCenter.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/securitycenter/v1;securitycenter";
- option java_multiple_files = true;
- option java_outer_classname = "IndicatorProto";
- option java_package = "com.google.cloud.securitycenter.v1";
- option php_namespace = "Google\\Cloud\\SecurityCenter\\V1";
- option ruby_package = "Google::Cloud::SecurityCenter::V1";
- message Indicator {
-
- message ProcessSignature {
-
- message MemoryHashSignature {
-
- message Detection {
-
-
- string binary = 2;
-
-
- double percent_pages_matched = 3;
- }
-
- string binary_family = 1;
-
-
- repeated Detection detections = 4;
- }
-
- message YaraRuleSignature {
-
- string yara_rule = 5;
- }
- oneof signature {
-
- MemoryHashSignature memory_hash_signature = 6;
-
- YaraRuleSignature yara_rule_signature = 7;
- }
- }
-
- repeated string ip_addresses = 1;
-
- repeated string domains = 2;
-
-
- repeated ProcessSignature signatures = 3;
-
- repeated string uris = 4;
- }
|