Exam CCFH-202 All QuestionsBrowse all questions from this exam
Question 16

Which of the following queries will return the parent processes responsible for launching badprogram.exe?

    Correct Answer: B

    To find the parent processes responsible for launching badprogram.exe, you first need to identify instances of badprogram.exe and then trace back to their parent processes. The query in option B performs this by using a subsearch to find processrollup2 events where FileName is badprogram.exe. It then renames ParentProcessId_decimal to TargetProcessId_decimal and uses it as a filter for the main search, ultimately counting occurrences by _time. This effectively traces back from badprogram.exe to its parent processes, making option B the most suitable.

Discussion

9 comments
examtopics3000Option: B
Aug 4, 2023

Sorry, correct answer is B

joal23Option: B
Oct 12, 2023

Is Letter B. The Parent Process is when rename ParentProcessId_decimal as TargetProcessId_decimal.

ChiquitabanditaOption: D
Sep 10, 2023

This query will return the parent processes responsible for launching badprogram.exe by using a subsearch to find the processrollup2 events where FileName is badprogram.exe, then renaming the TargetProcessld_decimal field to ParentProcessld_decimal and using it as a filter for the main search, then using stats to count the occurrences of each FileName by _time.

kangaru
Jan 14, 2024

By renaming TargetProcessld_decimal field to ParentProcessld_decimal, you pivot the targetprocess of badprogram.exe as the child and search for all child process launched by badprogram.exe instead, not the process that spawned badprogram.exe.

alanalanalanOption: B
Jul 9, 2024

Selected Answer: B

five55Option: B
Mar 20, 2024

You need to combine the field the only way we can do with subsearch

gr23Option: B
Jan 10, 2024

B. To find "parent" you rename ParentProcessID_decimal to TargetProcessID_decimal

Pipo12345Option: B
Dec 20, 2023

B is correct.

ChiquitabanditaOption: B
Sep 8, 2023

query filters for "badprogram.exe" and renames the ParentProcessId_decimal to TargetProcessId_decimal to find the parent processes associated with it. The "stats count by FileName _time" part of the query helps present the results effectively.

examtopics3000Option: D
Aug 3, 2023

For me, correct answer is D