While investigating a lateral movement attack, an analyst notices suspicious Kerberos ticket-granting service (TGS) requests in Cortex XDR log queries. Which XQL dataset contains the parsed domain controller event logs required to investigate this potential Kerberos-based attack?
Trap 1: dataset = endpoint_security_identity
This dataset name is not a standard Cortex XQL schema.
Trap 2: dataset = pan_wmi_raw
pan_wmi_raw is not the standard dataset for parsed domain controller logs.
Trap 3: dataset = xdr_data | filter event_simple_name =…
Event simple names vary, but the correct dataset for normalized AD logs is typically agent_log or specific parsed identity datasets.
- A
dataset = endpoint_security_identity
Why wrong: This dataset name is not a standard Cortex XQL schema.
- B
dataset = pan_wmi_raw
Why wrong: pan_wmi_raw is not the standard dataset for parsed domain controller logs.
- C
dataset = xdr_data | filter action_dataset = "active_directory_raw"
Parsed Active Directory and Domain Controller logs ingested via Broker VM are queryable under specific authentication and AD datasets in XQL.
- D
dataset = xdr_data | filter event_simple_name = "Win-Security-Kerberos-Service-Ticket"
Why wrong: Event simple names vary, but the correct dataset for normalized AD logs is typically agent_log or specific parsed identity datasets.