CrowdStrike Certified Falcon Hunter (CCFH) — Question 18

What is the purpose of the rename command in this query?

event_simpleName=ProcessRollup2 [search event_simpleName=ProcessRollup2 FileName=excel.exe | rename TargetProcessId_decimal AS ParentProcessId_decimal | fields aid ParentProcessId_decimal] | stats count by FileName CommandLine

Answer options

Correct answer: B

Explanation

The correct answer B is accurate because the rename command is used to change the TargetProcessId_decimal field to ParentProcessId_decimal, which is essential for identifying child processes of excel.exe. The other options do not correctly reflect the purpose of the rename command or misinterpret its function in the context of the query.