Here are all the actual test exam dumps for IT exams. Most people prepare for the actual exams with our test dumps to pass their exams. So it's critical to choose and actual test pdf to succeed.

Exam Security-Operations-Engineer Topic 2 Question 51 Discussion

Actual exam question for Google's Security-Operations-Engineer exam
Question #: 51
Topic #: 2
During a proactive threat hunting exercise, you discover that a critical production project has an external identity with a highly privileged IAM role. You suspect that this is part of a larger intrusion, and it is unknown how long this identity has had access. All logs are enabled and routed to a centralized organization- level Cloud Logging bucket, and historical logs have been exported to BigQuery datasets.
You need to determine whether any actions were taken by this external identity in your environment.
What should you do?

Suggested Answer: C Vote an answer

Comprehensive and Detailed 150 to 250 words of Explanation From Exact Extract Google Security Operations Engineer documents:
To definitively determine "whether any actions were taken" by a specific identity, you must search the audit logs directly for that identity's activity. The scenario specifies two data repositories: a centralized Cloud Logging bucket (for recent/retention-period logs) and BigQuery (for historical logs).
According to Google Cloud Observability and Security Operations documentation, Cloud Audit Logs (specifically Admin Activity and Data Access logs) capture "Who did what, where, and when." The primary identifier for the actor in these logs is the protoPayload.authenticationInfo.principalEmail.
Option C is the only method that directly queries the activity logs for the specific actor.
* Cloud Logging: You would use the Logging Query Language to filter: protoPayload.authenticationInfo.
principalEmail="[IDENTITY_EMAIL]".
* BigQuery: You would use SQL to query the exported tables: SELECT * FROM [DATASET.TABLE] WHERE protopayload_auditlog.authenticationInfo.principalEmail = "[IDENTITY_EMAIL]".
Options A and B focus on access potential (Recommender/Policy Analyzer) rather than historical actions.
Option D (VPC Flow Logs) records network traffic 5-tuples and does not contain identity information (principal email), making it unsuitable for attributing API actions to a specific user.
References: Google Cloud Documentation > Cloud Logging > Logging query language; Google Cloud Documentation > Cloud Audit Logs > Audit log fields

by Bennett at Jun 09, 2026, 12:19 PM

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Nick name: Submit Cancel
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.