Users must define and name branches within the Branch Settings tab.
Defining Branches
Defined Branches
Others Branch
Assume the implementation of the Others branch:
INFO PANEL
The Others branch handles unhandled cases where a user has not defined a specific branch for the input under evaluation. It serves as a fallback mechanism for branching decisions.
Build the following playbook:
INPUT
TEXT
Unexpected value
DEMO CONDITIONAL TASK
CODE
{% set input = PlaybookData | jsonpath('$.Input.returnData') %}
{% if input == 'A' %}
Branch A
{% elif input == 'B' %}
Branch B
{% endif %}
Click on to test run the playbook and verify execution follows the Others branch.
After defining branches, the next step is to connect playbook task nodes to each branch. Tasks connected to each branch define the next actions, ranging from simple operations to complex workflows.
READER NOTE
Renaming branches to modify their order will not affect the arrangement of connector arrows.
Dragging the drag handles to reorder branches will correspondingly reorder the connector arrows.
Defining Pathway Selection Logic
Once tasks are connected to each branch, the next step is to establish the logic for selecting the appropriate execution pathway.
Dynamic Input
The Dynamic Input setting requires users to define custom logic using Jinja.
Example 1 - Basic Dynamic Branch Selection (Random Letter Generator)
READER NOTE
Ensure Auto Run is enabled for all tasks.
Add an auto-run data formatter task in between the root playbook node and the conditional task node.
Input the following code snippet into the data formatter task:
CODE
{{ ['A', 'B', 'C'] | random }}
This Jinja expression randomly selects and returns either A, B, or C from the list.
Input the following code snippet into the conditional task:
CODE
{% set letter = PlaybookData | jsonpath('$.["Random Letter (A ,B, or C)"].returnData') %}
{% if letter == 'A' %}
Branch A
{% elif letter == 'B' %}
Branch B
{% elif letter == 'C' %}
Branch C
{% else %}
Next
{% endif %}
This Jinja logic retrieves the randomly generated letter from step 2 and routes execution to the correct branch (Branch A, B, or C). If no match is found, it defaults to the Next branch.
Test run the playbook, then verify whether execution follows the correct path.
Example 2 - Dynamic Branch Selection Based on a Nested JSON Value
Configure the Conditional Task with the following code:
JSON
{% set inner_object = PlaybookData | jsonpath('$["DF Task"].returnData.demoField1["demoField1.2"]') %}
{% set items = inner_object | list %}
{% set target_value = inner_object[items[1]] %}
{% if target_value == "A" %}
Branch A
{% else %}
Branch B
{% endif %}
LOGIC BREAKDOWN Line 1: Extracts the demoField1.2 object.
Line 2: Converts inner_object into a list of keys.
JSON
["demoField1.2.1", "targetA", "demoField1.2.2"]
Line 4: Items[1] refers to the second key in ["demoField1.2.1", "target", "demoField1.2.2"], so this line resolves to
NONE
{% set target_value = inner_object["target"] %}
Since inner_object["targetA"] has the value "A", the resulting assignment is:
NONE
{% set target_value = "A" %}
Line 5-9: Evaluates target_value, directing execution to Branch A if it is "A", otherwise to Branch B.
Click on the button to test run the playbook and verify execution follows Branch A.
Modify the target field value in the DF Task to "Not A".
Click on then to confirm execution follows Branch B.
Example 3 - Task Loops for Dynamic Branch Execution
READER NOTE
Ensure Auto Run is enabled for all tasks.
Drag the output connector of tasks A, B, and C back as inputs for the conditional task.
Input the following code snippet into the conditional task:
CODE
{% set a_return = PlaybookData | jsonpath('$.A.returnData') %}
{% set b_return = PlaybookData | jsonpath('$.B.returnData') %}
{% set c_return = PlaybookData | jsonpath('$.C.returnData') %}
{% if not a_return %}
Branch A
{% elif not b_return and a_return == 'A' %}
Branch B
{% elif not c_return and b_return == 'B' %}
Branch C
{% else %}
Next
{% endif %}
LOGIC BREAKDOWN Lines 1-3: Extract the return data for tasks A, B, and C. Lines 5-13 Conditional Logic:
If task A has not yet produced return data (a_return is empty), traverse Branch A.
If task A returned "A" and task B has not yet produced return data (b_return is empty), traverse Branch B.
If task B returned "B" and task C has not yet produced return data (c_return is empty), traverse Branch C.
If none of these conditions apply, traverse Next.
Test the playbook to observe that execution follows a new conditional branch with each iteration.
Example 4 - Use Case (Automating Incident Triage Based on Severity)
SCENARIO An analyst seeks to automate incident triage by designing a playbook that evaluates severity. For informational incidents, a note is added indicating they are not urgent. For all others, an email is sent to warrant further action.
Here is how they can design the playbook:
Add a conditional task to the On Playbook Start trigger.
Name the task, (optional) add a description/question, ensure that the Testable option is selected, then click the Next button.
Select the Auto Run checkbox, then navigate to the Condition Settings tab.
Select Dynamic Input using the dropdown, paste the if-else statement from the code snippet, then click the button.
In the pop-up window, open the DataSource object, then open the Incident object.
Select the SeverityName field, click the button, then click the Generate as Variable button.
Replace "placeholder" in the code with the variable.
Navigate to the Branch Settings tab, then click on the + Add Branch button.
Add the Yes and No branches, then click the button to save.
Add the Set Incident Notes utility command task to the Yes branch to update the incident notes, and the Send Email utility command task to the No branch to send a notification. Configure both tasks accordingly.
Test the playbook.
Click on the Test Playbook button.
Select a site.
Select an incident. Testing the playbook on an incident will impact the incident. To avoid unintended effects, perform all testing involving the Test Playbook functionality in a demo instance of vSOC.
Click on the Run Test button.
RESULT
Informational Level Incidents
If the incident's severity is informational, the workflow for the Yes condition executes.
All Others
If the incident's severity is not informational, the workflow for the No condition executes.
Command
The Command setting necessitates the use of utility commands or custom integration commands.
Example 1 - Basic Boolean Branch Selection (Text Equals to)
Suppose the following playbook is provided:
READER NOTE
Ensure Auto Run is enabled for all tasks.
Configure the Input task to return "demo input".
Configure the Demo Conditional Task to have a true and a false branch.
Use the Text Equals to utility command to configure the Demo Conditional Task to compare the return value of the Input task with "demo value".
Click on the button to test run the playbook and verify execution follows the truebranch.
Reconfigure the Input task to return "another value".
Click on then to confirm execution follows the falsebranch.
Example 2 - Use Case (Contains Text)
SCENARIO An analyst aims to determine whether the body of incoming Office 365 emails contains the keyword "verify" as an indicator of phishing. If detected, they will escalate the incident as phishing. Otherwise, they will assign someone to investigate it further..
Here is how they can design the preprocessing playbook:
READER NOTE
Step 1 involves using the Test Playbook function, which does not impact events in D3 when run on preprocessing playbooks. Testing a preprocessing playbook ensures that fields, including those from the raw data returned by an integration’s fetch event command, are populated and available for selection in the format builder.
Before Testing the Playbook
There is no trigger output data available for selection as input values.
After Testing the Playbook
The trigger output is now fully populated, and its data fields are available for selection as input values.
Click the Test Playbook button to create a data source, ensuring the trigger output fields are available for dynamic input selection.
Add the conditional task’s Boolean template to the On Event Ingestion trigger.
This template includes true and false branches by default, useful when the command task output returns a Boolean value.
Name the task, (optional) enter a question/description, ensure that the Testable option is selected, then click the Next button.
Select the Auto Run checkbox, then navigate to the Condition Settings tab.
Select Command using the dropdown, then click the icon.
Select the command driving the conditional logic.
Search for the Contains Text utility command.
Select the command.
Click the Select button to save.
Click the Dynamic toggle, then click the icon.
In the pop-up window, open the Trigger object, data object, then the Data object.
Locate and open the Body object, select the content field, then click the Save button.
Enter "verify" as the search value, then click the Branch Settings tab.
Click on the + Add Branch button, add the true and false branches, then click the button to save.
Add the Escalate task to the true branch to escalate the event as a phishing-type incident and the Assign Investigator utility command task to the false branch to assign an analyst for further investigation. Configure both tasks accordingly.
Stop the playbook test to restore the Test Playbook button.
Click the Test Playbook button to test the playbook once more.
RESULT
Contains "verify"
If the body of an incoming email contains the word "verify", the workflow for the true condition executes.
All Others
If the body of an incoming email does not contain the word "verify", the workflow for the false condition executes.
Manual Input
The Manual setting requires users to manually choose an execution path from the predefined branches.
Example 1 - Basic Manual Branch Selection
Suppose the following playbook is provided:
DisableAuto Run for the conditional task to (automatically) enable Manual mode.
READER NOTE
Ensure Auto Run is enabled for all other non-conditional tasks.
Click on the button to test the playbook, then click on the (pending task) icon.
Click on the Branch B radio button, then click on the Run button.
Close the Task Details popover and verify that execution follows Branch B.
Example 2 - Task Assignment / Assignee Responding to a Pending Conditional Task
The General Settings tab contains fields that allow users to define a question for branch traversal, specify the assignee, and set a due time before the task becomes overdue.
READER NOTE
The location where assignees select the radio buttons to determine branch traversal for the conditional task depends on whether the playbook is a preprocessing or investigation playbook.
CASE 1
If the pending conditional task is in a preprocessing playbook, the assigned user can select the execution path by following these steps:
Navigate to the Preprocessing Playbook Viewer module.
Select the relevant event intake summary card and preprocessing playbook, then click on the conditional task.
Choose an option, then click the Run button.
CASE 2
If the pending conditional task is in an investigation playbook, users can select the execution path from the Pending Tasks tab in either the Investigation Dashboard or the Incident Workspace.
Investigation Dashboard
Click on the Pending Tasks accordion, All Pending Tasks item, then the corresponding pending task.
Choose an option, then click the Run button.
Incident Workspace
Click the Pending Tasks tab, then select the pending task.
Choose an option, then click the Run button.
Example 3 - Use Case (Incident Owner Verification and Reassignment)
SCENARIO An analyst plans to design a playbook for manually verifying whether the incident owner is Admin. If so, they will reassign the incident. Otherwise, the investigation proceeds as usual.
Here is how they can design the playbook:
Add an interaction task to the On Playbook Start trigger.
Configure this task to display the current incident owner to the analyst, then choose the Reply in Pending Task option under Reply Channel.
Add a conditional task after the interaction task.
Name the task, enter a question, then click the Next button.
Navigate to the Branch Settings tab, then click on the + Add Branch button.
Add the Yes and No branches, then click the button to save.
Add the Set Incident Field utility command task (named Reassign Owner) to the Yes branch to update the incident owner, and the stage task to the No branch to continue the investigation workflow. Configure both tasks accordingly.
Test the playbook.
Click on the Test Playbook button.
Select a site.
Select an incident. Testing the playbook on an incident will impact the incident. To avoid unintended effects, perform all testing involving the Test Playbook functionality in a demo instance of vSOC.
Click on the Run Test button.
Click the icon to test the interaction task.
Note the name of the incident owner, then click the Run button to proceed to the next task.
Click the icon to test the conditional task.
Select an option, then click the Run button.
Test for all execution paths to ensure that they all work as intended
RESULT
Admin-Owned Incidents
If the incident owner is Admin, the workflow for the Yes condition executes.
All Others
If the incident owner is not Admin, then the workflow for the No condition executes.
JavaScript errors detected
Please note, these errors can depend on your browser setup.
If this problem persists, please contact our support.