You are a SOC manager guiding an implementation of your existing incident response plan (IRP) into Google Security Operations (SecOps). You need to capture time duration data for each of the case stages. You want your solution to minimize maintenance overhead. What should you do?
Answer : B
Comprehensive and Detailed 150 to 250 words of Explanation From Exact Extract Google Security Operations Engineer documents:
This requirement is a core, out-of-the-box feature of the Google SecOps SOAR platform. The solution with the minimal maintenance overhead is always the native, built-in one. The platform is designed to measure SOC KPIs (like MTTR) by tracking Case Stages.
A SOC manager first defines their organization's incident response stages (e.g., 'Triage,' 'Investigation,' 'Remediation') in the SOAR settings. Then, as playbooks are built, the Change Case Stage action is added to the workflow. When a playbook runs, it triggers this action, and the SOAR platform automatically timestamps the exact moment a case transitions from one stage to the next.
This creates the precise time-duration data needed for metrics. This data is then automatically available for the built-in dashboards and reporting tools (as mentioned in Option A, which is the result of Option B). Option D (custom IDE job) and Option C (detection rule) are incorrect, high-maintenance, and non-standard ways to accomplish a task that is a fundamental feature of the SOAR platform.
(Reference: Google Cloud documentation, 'Google SecOps SOAR overview'; 'Get insights from dashboards and reports'; 'Manage playbooks')
You manage a large fleet of Compute Engine instances. Security Command Center (SCC) has generated a large number of CONFIDENTIAL_COMPUTING_DISABLED findings. You need to quickly tune these findings.
What should you do?
Answer : C
You received an IOC from your threat intelligence feed that is identified as a suspicious domain used for command and control (C2). You want to use Google Security Operations (SecOps) to investigate whether this domain appeared in your environment. You want to search for this IOC using the most efficient approach. What should you do?
Answer : B
Comprehensive and Detailed 150 to 250 words of Explanation From Exact Extract Google Security Operations Engineer documents:
The most efficient and reliable method to proactively search for a specific indicator (like a domain) in Google Security Operations is to perform a Universal Data Model (UDM) search. All ingested telemetry, including DNS logs and proxy logs, is parsed and normalized into the UDM. This allows an analyst to run a single, high-performance query against a specific, indexed field.
To search for a domain, an analyst would query a field such as network.dns.question.name or network.http.hostname. Option B correctly identifies this as querying the 'DNS section of the network noun.' This approach is vastly superior to a raw log search (Option C), which is slow, inefficient, and does not leverage the normalized UDM data.
Option D (IOC Search/Matches) is a passive feature that shows automatic matches between your logs and Google's integrated threat intelligence. While it's a good place to check, a UDM search is the active, analyst-driven process for hunting for a new IoC that may have come from an external feed. Option A is a UI feature for grouping search results and is not the search method itself.
(Reference: Google Cloud documentation, 'Google SecOps UDM Search overview'; 'Universal Data Model noun list - Network')
You are writing a Google Security Operations (SecOps) SOAR playbook that uses the VirusTotal v3 integration to look up a URL that was reported by a threat hunter in an email. You need to use the results to make a preliminary recommendation on the maliciousness of the URL and set the severity of the alert based on the output. What should you do?
Choose 2 answers
Answer : A, E
Comprehensive and Detailed Explanation
The goal is to automate a decision-making process within a SOAR playbook based on data from an integration. This requires two steps: getting the specific data point (Option E) and then using it in a logical operator (Option A).
Get the Data Point (Option E): The VirusTotal integration returns a detailed JSON object. The most critical data point for determining maliciousness is the number of detections (i.e., how many scanning engines flagged the URL). The playbook must parse this specific value from the JSON output.
Use the Data in Logic (Option A): Once the playbook has the number of detections, it must use a conditional statement (an 'If/Then' block) to act on it. This logic is how the playbook makes a recommendation and sets the severity. For example: IF number_of_detections > 3, THEN set severity to CRITICAL and add a comment URL is suspicious. ELSE, set severity to LOW and add a comment URL appears benign.
Option C is incorrect as it describes a manual process, which defeats the purpose of automation. Option D is incorrect as widgets are for displaying data in the case UI, not for executing logic within a playbook.
Exact Extract from Google Security Operations Documents:
Playbook logic and conditional actions: SOAR playbooks execute a series of actions to automate incident response. A core component of this automation is the conditional statement. After an enrichment action (like querying VirusTotal) runs, the playbook can use a conditional block to evaluate the results.
The playbook can parse the JSON output from the integration to extract key values, such as the number of positive detections. This value can then be used in the conditional (e.g., IF detections > 0) to determine the next step, such as setting the alert's severity, escalating to an analyst, or automatically determining if an indicator should be treated as suspicious or benign.
Google Cloud Documentation: Google Security Operations > Documentation > SOAR > Playbooks > Playbook logic and conditional actions
Google Cloud Documentation: Google Security Operations > Documentation > SOAR > Marketplace integrations > VirusTotal v3
Your organization is a Google Security Operations (SecOps) customer. The compliance team requires a weekly export of case resolutions and SLA metrics of high and critical severity cases over the past week. The compliance team's post-processing scripts require this data to be formatted as tabular data in CSV files, zipped, and delivered to their email each Monday morning. What should you do?
Answer : C
Comprehensive and Detailed Explanation
The correct solution is Option C. Google SecOps SOAR has a specific feature designed for this exact use case: Advanced Reports.
The standard 'SOAR Reports' (Option A) are pre-canned dashboard-style reports (e.g., Management - SOC Status). However, the 'Advanced Reports' feature (built on Looker) provides a powerful, flexible interface for building highly customized, tabular reports based on case data. This allows an administrator to specifically query for case resolutions and SLA metrics, and filter them by priority = High OR Critical.
Most importantly, the Advanced Reports feature has a built-in scheduler. This scheduler can be configured to run the report at a specific cadence (e.g., 'Weekly on Monday at 9:00 AM'), send it to a list of email recipients, and attach the data in the required format, including CSV and as a zipped file.
Option B is incorrect because detection rules create alerts, they don't report on case metrics. Option D is incorrect because it mixes the SIEM search function with a SOAR job, which is an overly complex and unnecessary way to query case data that is already structured within the SOAR module.
Exact Extract from Google Security Operations Documents:
Explore advanced SOAR reports: The default advanced SOAR reports are a set of dashboards and reports to help track SOC performance, case handling, analyst workload, and automation efficiency. These reports provide both high-level and detailed insights across your environments.1
SLA Monitoring: Use Triage Time and SLA Met flag to monitor SLA compliance and improve case handling.
Manage advanced reports: You can create, edit, duplicate, share, download, and delete advanced reports.
Schedule a report:
Select the report you want to schedule.
Select the Scheduler tab and click Add.
In the New Schedule dialog, click the Enable toggle to turn on scheduling and enter the required information (e.g., weekly, Monday, email recipients).
You can select the delivery format, including CSV and ZIP attachments.
Google Cloud Documentation: Google Security Operations > Documentation > Monitor and report > SOAR reports > Use Looker Explores in SOAR reports (Advanced Reports)
Google Cloud Documentation: Google Security Operations > Documentation > Monitor and report > SOAR reports > Explore SOAR reports
You need to augment your organization's existing Security Command Center (SCC) implementation with additional detectors. You have a list of known IoCs and would like to include external signals for this capability to ensure broad detection coverage. What should you do?
Answer : C
Comprehensive and Detailed 150 to 250 words of Explanation From Exact Extract Google Security Operations Engineer documents:
The correct solution is to create an Event Threat Detection (ETD) custom module. ETD is the Security Command Center (SCC) service designed to analyze logs for active threats, anomalies, and malicious behavior. The user's requirement is to use a list of known Indicators of Compromise (IoCs) and external signals, which directly aligns with the purpose of ETD.
In contrast, Security Health Analytics (SHA), mentioned in options A and B, is a posture management service. SHA custom modules are used to detect misconfigurations and vulnerabilities in resource settings, not to analyze log streams for threat activity based on IoCs.
Event Threat Detection provides pre-built templates for creating custom modules to simplify the detection engineering process. The 'Configurable Bad IP' template is specifically designed for this exact use case. It allows an organization to upload and maintain a list of known malicious IP addresses (a common form of external IoC). ETD will then continuously scan relevant log sources, such as VPC Flow Logs, Cloud DNS logs, and Cloud NAT logs. If any activity to or from an IP address on this custom list is detected, ETD automatically generates a CONFIGURABLE_BAD_IP finding in Security Command Center for review and response. This approach is the native, efficient, and supported method for integrating IP-based IoCs into SCC, unlike option D which requires building a complex, manual pipeline.
(Reference: Google Cloud documentation, 'Overview of Event Threat Detection custom modules'; 'Using Event Threat Detection custom module templates')
You are implementing Google Security Operations (SecOps) with multiple log sources. You want to closely monitor the health of the ingestion pipeline's forwarders and collection agents, and detect silent sources within five minutes. What should you do?
Answer : B
Comprehensive and Detailed Explanation
The correct solution is Option B. This question requires a low-latency (5 minutes) notification for a silent source.
The other options are incorrect for two main reasons:
Dashboards vs. Notifications: Options C and D are incorrect because dashboards (both in Looker and Google SecOps) are for visualization, not active, real-time alerting. They show you the status when you look at them but do not proactively notify you of a failure.
Metric-Absence vs. Metric-Value: Google SecOps streams all its ingestion health metrics to Google Cloud Monitoring, which is the correct tool for real-time alerting. However, Option A is monitoring the 'total ingested log count.' This metric would require a threshold (e.g., count < 1), which can be problematic. The specific and most reliable method to detect a 'silent source' (one that has stopped sending data entirely) is to use a metric-absence condition. This type of policy in Cloud Monitoring triggers only when the platform stops receiving data for a specific metric (grouped by collector_id) for a defined duration (e.g., five minutes).
Exact Extract from Google Security Operations Documents:
Use Cloud Monitoring for ingestion insights: Google SecOps uses Cloud Monitoring to send the ingestion notifications. Use this feature for ingestion notifications and ingestion volume viewing... You can integrate email notifications into existing workflows.
Set up a sample policy to detect silent Google SecOps collection agents:
In the Google Cloud console, select Monitoring.
Click Create Policy.
Select a metric, such as chronicle.googleapis.com/ingestion/log_count.
In the Transform data section, set the Time series group by to collector_id.
Click Next.
Select Metric absence and do the following:
Set Alert trigger to Any time series violates.
Set Trigger absence time to a time (e.g., 5 minutes).
In the Notifications and name section, select a notification channel.
Google Cloud Documentation: Google Security Operations > Documentation > Ingestion > Use Cloud Monitoring for ingestion insights