QuestionQ94

Detection engineering

You are deploying Google Security Operations (SecOps) for your organization. The organization has its own threat-intelligence feed, which was ingested into Google SecOps through a native Malware Information Sharing Platform (MISP) integration. You are developing the following detection rule to use command-and-control (C2) indicators ingested into the entity graph.

Question Image

What code should you add to the detection rule to filter for domain IOCs?

  • A $ioc.graph.metadata.entity_type = "DOMAIN_NAME"$ioc.graph.metadata.source_type = "ENTITY_CONTEXT"
  • B $ioc.graph.metadata.entity_type = "DOMAIN_NAME"$ioc.graph.metadata.source_type = "GLOBAL_CONTEXT"
  • C $ioc.graph.metadata.entity_type = "DOMAIN_NAME"$ioc.graph.metadata.source_type = "DERIVED_CONTEXT"
  • D $ioc.graph.metadata.entity_type = "DOMAIN_NAME"$ioc.graph.metadata.source_type = "SOURCE_TYPE_UNSPECIFIED"
Explanation

Customer-provided IOC feeds ingested into the Google SecOps entity graph are labeled with source_type = "ENTITY_CONTEXT". Filtering on entity_type = "DOMAIN_NAME" limits the joined indicators to domains, so the required filter is the DOMAIN_NAME and ENTITY_CONTEXT combination.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!