Exam CCFA All QuestionsBrowse all questions from this exam
Question 32

Which of the following is an effective Custom IOA rule pattern to kill any process attempting to access www.badguydomain.com?

    Correct Answer: A

    An effective Custom IOA rule pattern to kill any process attempting to access www.badguydomain.com should be able to capture any instance of the domain within various processes or commands. The pattern '.*badguydomain\.com.*' uses regular expressions to match any string containing 'badguydomain.com', regardless of what comes before or after it. This ensures that any process attempting to access www.badguydomain.com or any subdomains will be detected and handled appropriately.

Discussion
Roy_SoOption: A

A is correct. checked on lab.

sonianOption: A

The answer is A. You are usuing RegEx here and need leading ".*" to capture www and then need a ".*" at the end to identify any sites falling under badguydomain.com

DarkieCopyOption: A

A is correct. Syntax in \Device\HarddiskVolume2\*.exe -SingleArgument www.badguydomain.com /kill is incorrect (tested on UI)

sbag0024Option: A

A is correct,

Dave071Option: A

A is the correct answer. You can check the regular expression on a regex builder.

plantvastOption: C

The syntax for C is correct and this would catch any process trying to reach out to the domain.

ShuliAbba

but where would you put this string - command, parent name, image file name?? I copied the sting in option B to the command line and it suggested a few minor suggestions of "\" or "*"...