A threat hunter is using Microsoft Defender for Endpoint advanced hunting to investigate a suspicious process that was observed launching from a temporary folder. The hunter wants to find all devices that have executed this specific process (with the same SHA256 hash) in the last 24 hours. Which table and column should be used in the query?
Trap 1: DeviceNetworkEvents table, SHA256 column
DeviceNetworkEvents logs network connections, not process hashes.
Trap 2: DeviceEvents table, SHA256 column
DeviceEvents is a generic table that may not include SHA256 for process executions.
Trap 3: DeviceFileEvents table, SHA256 column
DeviceFileEvents logs file operations, not process executions.
- A
DeviceNetworkEvents table, SHA256 column
Why wrong: DeviceNetworkEvents logs network connections, not process hashes.
- B
DeviceEvents table, SHA256 column
Why wrong: DeviceEvents is a generic table that may not include SHA256 for process executions.
- C
DeviceProcessEvents table, SHA256 column
DeviceProcessEvents records process executions with SHA256 hash.
- D
DeviceFileEvents table, SHA256 column
Why wrong: DeviceFileEvents logs file operations, not process executions.