A Security Operations Center (SOC) analyst is reviewing SIEM log correlation logic designed to detect unauthorized administrative lateral movement. The SIEM rule requires three conditions to trigger a high-severity alert:
1. A Windows Event ID 4624 (Logon Type 3 - Network) for a service account.
2. A Windows Event ID 4672 (Special privileges assigned) for the same account occurring within of the logon event.
3. A Sysmon Event ID 1 (Process Creation) where `ParentImage` is `services.exe` occurring within of privilege assignment.
The analyst extracts the following log sequence from a compromised server:
text
[2026-07-27T14:10:02Z] Host=SRV-FIN01 EventID=4624 LogonType=3 TargetUserName=svc_backup WorkstationName=WKSTN-77
[2026-07-27T14:11:05Z] Host=SRV-FIN01 EventID=4672 TargetUserName=svc_backup PrivilegeList=SeDebugPrivilege
[2026-07-27T14:11:15Z] Host=SRV-FIN01 EventID=1 Image=C:\Windows\System32\cmd.exe ParentImage=C:\Windows\System32\services.exe
Despite malicious process execution occurring, no SIEM alert was generated. Which of the following best explains why the correlation rule failed to trigger?
- The elapsed time between Event ID 4624 and Event ID 4672 was 63 seconds, exceeding the 60-second correlation window.Answer
- BThe correlation engine evaluated Logon Type 3 as a local interactive session rather than a network authentication event.
- CEvent ID 4672 represents identity verification authentication rather than access privilege authorization.
- DThe rule failed because Sysmon Event ID 1 acts as a preventive control rather than a detective monitoring source.