In this lab, you'll explore the SIEM Use Case Development Lifecycle. We will look at what a SOC engineer must do immediately after pinpointing the target logs, ensuring the infrastructure actually supports the detection logic.
You are a Senior SIEM Engineer. The Threat Intel team requires a new use case: Detecting malicious PowerShell execution via Process Command Line arguments (T1059.001).
You have already successfully mapped out the MITRE ATT&CK requirement and identified the required event source: Windows Security Event ID 4688 (A new process has been created). You are preparing to write the final Splunk SPL detection rule, but first, you need to execute the next logical phase in the lifecycle.
You run a preliminary test query in Splunk against your target servers to examine the identified event source (Event ID 4688):
*Review the terminal output. Notice the field Process_Command_Line has a count of 0, meaning the data is entirely missing from the collected logs.*
Which of the following stage is executed after identifying the required event sources?
What is happening?
The SOC is executing the SIEM Use Case Development Lifecycle. While they correctly identified that Windows Event ID 4688 records process creation, the environment's Group Policy Object (GPO) does not have "Include command line in process creation events" enabled. If an analyst jumps straight into writing the detection rule, the rule will deploy successfully but silently fail to detect any threats, leading to a false sense of security.
Why Option D is Correct:
After identifying the log sources, you must validate the event source against the monitoring requirement. You have to prove that the logs being ingested actually contain the specific fields (like `Process_Command_Line`, `Source_IP`, or `Target_User`) necessary to satisfy the use case. If validation fails, you must reconfigure logging before proceeding.
Why the others are wrong:
In modern SOC operations, log validation is frequently automated using data models like Splunk CIM (Common Information Model) or Sentinel ASIM (Advanced Security Information Model).
When an L3 analyst reviews a new use case request, they run a field summary check (like the Splunk query shown above). If the required field is missing, the workflow is paused, and a ticket is routed to IT/Infrastructure to update the logging policy (e.g., modifying Windows Audit Policies or AWS CloudTrail data event configurations). Only after the log schema is validated does the SOC engineer write the correlation logic.
Ready to sharpen your defensive skills further?
Explore more CSA simulations