ExamGecko
Home Home / Splunk / SPLK-2003

SPLK-2003: Splunk SOAR Certified Automation Developer

Splunk SOAR Certified Automation Developer
Vendor:

Splunk

Splunk SOAR Certified Automation Developer Exam Questions: 96
Splunk SOAR Certified Automation Developer   2.370 Learners
Take Practice Tests
Comming soon
PDF | VPLUS
This study guide should help you understand what to expect on the exam and includes a summary of the topics the exam might cover and links to additional resources. The information and materials in this document should help you focus your studies as you prepare for the exam.

Related questions

How is it possible to evaluate user prompt results?

A.
Set action_result.summary. status to required.
A.
Set action_result.summary. status to required.
Answers
B.
Set the user prompt to reinvoke if it times out.
B.
Set the user prompt to reinvoke if it times out.
Answers
C.
Set action_result. summary. response to required.
C.
Set action_result. summary. response to required.
Answers
D.
Add a decision Mode
D.
Add a decision Mode
Answers
Suggested answer: C

Explanation:

In Splunk Phantom, user prompts are actions that require human input. To evaluate the resultsof a user prompt, you can set the response requirement in the action result summary. Bysetting action_result.summary.response to required, the playbook ensures that it captures theuser's input and can act upon it. This is critical in scenarios where subsequent actions dependon the choices made by the user in response to a prompt. Without setting this, the playbookwould not have a defined way to handle the user response, which might lead to incorrect orunexpected playbook behavior.

asked 23/09/2024
Venkatesh Ampolu
40 questions

Some of the playbooks on the SOAR server should only be executed by members of the admin role. How can this rule be applied?

Become a Premium Member for full access
Unlock Premium Member  Unlock Premium Member

Which of the following are the steps required to complete a full backup of a Splunk Phantom deployment' Assume the commands are executed from /opt/phantom/bin and that no other backups have been made.

A.
On the command line enter: rode sudo python ibackup.pyc --setup, then audo phenv python ibackup.pyc --backup.
A.
On the command line enter: rode sudo python ibackup.pyc --setup, then audo phenv python ibackup.pyc --backup.
Answers
B.
On the command line enter: sudo phenv python ibackup.pyc --backup —backup-type full, then sudo phenv python ibackup.pyc --setup.
B.
On the command line enter: sudo phenv python ibackup.pyc --backup —backup-type full, then sudo phenv python ibackup.pyc --setup.
Answers
C.
Within the UI: Select from the main menu Administration > System Health > Backup.
C.
Within the UI: Select from the main menu Administration > System Health > Backup.
Answers
D.
Within the UI: Select from the main menu Administration > Product Settings > Backup.
D.
Within the UI: Select from the main menu Administration > Product Settings > Backup.
Answers
Suggested answer: B
asked 23/09/2024
Paul Schwarz
38 questions

What does a user need to do to have a container with an event from Splunk use context-aware actions designed for notable events?

A.
Include the notable event's event_id field and set the artifacts label to aplunk notable event id.
A.
Include the notable event's event_id field and set the artifacts label to aplunk notable event id.
Answers
B.
Rename the event_id field from the notable event to splunkNotableEventld.
B.
Rename the event_id field from the notable event to splunkNotableEventld.
Answers
C.
Include the event_id field in the search results and add a CEF definition to Phantom for event_id, datatype splunk notable event id.
C.
Include the event_id field in the search results and add a CEF definition to Phantom for event_id, datatype splunk notable event id.
Answers
D.
Add a custom field to the container named event_id and set the custom field's data type to splunk notable event id.
D.
Add a custom field to the container named event_id and set the custom field's data type to splunk notable event id.
Answers
Suggested answer: C

Explanation:

For a container in Splunk SOAR to utilize context-aware actions designed for notable eventsfrom Splunk, it is crucial to ensure that the notable event's unique identifier (event_id) isincluded in the search results pulled into SOAR. Moreover, by adding a Common Event Format(CEF) definition for the event_id field within Phantom, and setting its data type to somethingthat denotes it as a Splunk notable event ID, SOAR can recognize and appropriately handlethese identifiers. This setup facilitates the correct mapping and processing of notable eventdata within SOAR, enabling the execution of context-aware actions that are specifically tailoredto the characteristics of Splunk notable events.

asked 23/09/2024
Sullivan Dabireau
36 questions

How can the DECIDED process be restarted?

A.

By restarting the playbook daemon.

A.

By restarting the playbook daemon.

Answers
B.

On the System Health page.

B.

On the System Health page.

Answers
C.

In Administration > Server Settings.

C.

In Administration > Server Settings.

Answers
D.

By restarting the automation service.

D.

By restarting the automation service.

Answers
Suggested answer: D

Explanation:

DECIDED process is a core component of the SOAR automation engine that handles the execution of playbooks and actions. The DECIDED process can be restarted by restarting the automation service, which can be done from the command line using the service phantom restart command2. Restarting the automation service also restarts the playbook daemon, which is another core component of the SOAR automation engine that handles the loading and unloading of playbooks3. Therefore, option D is the correct answer, as it restarts both the DECIDED process and the playbook daemon. Option A is incorrect, because restarting the playbook daemon alone does not restart the DECIDED process. Option B is incorrect, because the System Health page does not provide an option to restart the DECIDED process or the automation service. Option C is incorrect, because the Administration > Server Settings page does not provide an option to restart the DECIDED process or the automation service.

In Splunk SOAR, if the DECIDED process, which is responsible for playbook execution, needs to be restarted, this can typically be done by restarting the automation (or phantom) service. This service manages the automation processes, including playbook execution. Restarting it can reset the DECIDED process, resolving issues related to playbook execution or process hangs.

asked 13/11/2024
Farah Fauzi
41 questions

Which Phantom API command is used to create a custom list?

A.
phantom.add_list()
A.
phantom.add_list()
Answers
B.
phantom.create_list()
B.
phantom.create_list()
Answers
C.
phantom.include_list()
C.
phantom.include_list()
Answers
D.
phantom.new_list()
D.
phantom.new_list()
Answers
Suggested answer: B

Explanation:

The Phantom API command to create a custom list is phantom.create_list(). This commandtakes a list name and an optional description as parameters and returns a list ID if successful.The other commands are not valid Phantom API commands. phantom.add_list() is a Pythonfunction that can be used in custom code blocks to add data to an existing list. To create acustom list in Splunk Phantom, the appropriate API command used is phantom.create_list().This function allows for the creation of a new list that can be used to store data such as IPaddresses, file hashes, or any other information that you want to track or reference acrossmultiple playbooks or within different parts of the Phantom platform. The custom list is aflexible data structure that can be leveraged for various use cases within Phantom, includingdata enrichment, persistent storage of information, and cross-playbook data sharing.

 

asked 23/09/2024
Bob Hanselman
37 questions

What are the components of the I2A2 design methodology?

A.

Inputs, Interactions, Actions, Apps

A.

Inputs, Interactions, Actions, Apps

Answers
B.

Inputs, Interactions, Actions, Artifacts

B.

Inputs, Interactions, Actions, Artifacts

Answers
C.

Inputs, Interactions, Apps, Artifacts

C.

Inputs, Interactions, Apps, Artifacts

Answers
D.

Inputs, Interactions, Actions, Assets

D.

Inputs, Interactions, Actions, Assets

Answers
Suggested answer: B

Explanation:

I2A2 design methodology is a framework for designing playbooks that consists of four components:

* Inputs: The data that is required for the playbook to run, such as artifacts, parameters, or custom fields.

* Interactions: The blocks that allow the playbook to communicate with users or other systems, such as prompts, comments, or emails.

* Actions: The blocks that execute the core logic of the playbook, such as app actions, filters, decisions, or utilities.

* Artifacts: The data that is generated or modified by the playbook, such as new artifacts, container fields, or notes.

The I2A2 design methodology helps you to plan, structure, and test your playbooks in a modular and efficient way. Therefore, option B is the correct answer, as it lists the correct components of the I2A2 design methodology. Option A is incorrect, because apps are not a component of the I2A2 design methodology, but a source of actions that can be used in the playbook. Option C is incorrect, for the same reason as option A. Option D is incorrect, because assets are not a component of the I2A2 design methodology, but a configuration of app credentials that can be used in the playbook.

1: Use a playbook design methodology in Administer Splunk SOAR (Cloud)

The I2A2 design methodology is an approach used in Splunk SOAR to structure and design playbooks. The acronym stands for Inputs, Interactions, Actions, and Artifacts. This methodology guides the creation of playbooks by focusing on these four key components, ensuring that all necessary aspects of an automated response are considered and effectively implemented within the platform.

asked 13/11/2024
Ervin Loong
45 questions

Which of the following can be configured in the ROI Settings?

A.

Number of full time employees (FTEs).

A.

Number of full time employees (FTEs).

Answers
B.

Time lost.

B.

Time lost.

Answers
C.

Analyst hours per month.

C.

Analyst hours per month.

Answers
D.

Annual analyst salary.

D.

Annual analyst salary.

Answers
Suggested answer: C

Explanation:

ROI Settings dashboard allows you to configure the parameters used to estimate the data displayed in the Automation ROI Summary dashboard. One of the settings that can be configured is the FTE Gained, which is the number of full time employees (FTEs) that are freed up by automation. To calculate this value, Splunk SOAR divides the number of actions run by automation by the number of expected actions an analyst would take, based on minutes per action and analyst hours per day. Therefore, option A is the correct answer, as it is one of the settings that can be configured in the ROI Settings dashboard. Option B is incorrect, because time lost is not a setting that can be configured in the ROI Settings dashboard, but a metric that is calculated by Splunk SOAR based on the difference between the analyst minutes per action and the actual minutes per action. Option C is incorrect, because analyst hours per month is not a setting that can be configured in the ROI Settings dashboard, but a value that is derived from the analyst hours per day setting. Option D is incorrect, because annual analyst salary is a setting that can be configured in the ROI Settings dashboard, but not the one that is asked in the question.

1: Configure the ROI Settings dashboard in Administer Splunk SOAR (On-premises)

ROI (Return on Investment) Settings within Splunk SOAR are used to estimate the efficiency and financial impact of the SOAR platform. One of the configurable parameters in these settings is the 'Analyst hours per month'. This parameter helps in calculating the time saved through automation, which in turn can be translated into cost savings and efficiency gains. It reflects the direct contribution of the SOAR platform to operational productivity.

asked 13/11/2024
Jari Tetteroo
38 questions

Which of the following applies to filter blocks?

A.
Can select which blocks have access to container data.
A.
Can select which blocks have access to container data.
Answers
B.
Can select assets by tenant, approver, or app.
B.
Can select assets by tenant, approver, or app.
Answers
C.
Can be used to select data for use by other blocks.
C.
Can be used to select data for use by other blocks.
Answers
D.
Can select containers by seventy or status.
D.
Can select containers by seventy or status.
Answers
Suggested answer: A
asked 23/09/2024
Francesco MARRELLA
40 questions

An active playbook can be configured to operate on all containers that share which attribute?

A.
Artifact
A.
Artifact
Answers
B.
Label
B.
Label
Answers
C.
Tag
C.
Tag
Answers
D.
Severity
D.
Severity
Answers
Suggested answer: B
asked 23/09/2024
Martien de Kleijn
29 questions