Created on 05-23-2023 11:21 PM Edited on 05-23-2023 11:44 PM
FortiSOAR patented playbook design experience provides a visual drag/drop graphical user interface (GUI) and a low-code rapid development mode that allows users of all types to easily create custom playbooks.
Even the most complicated playbook flows do not require technical coding skills, all you need to be is a cybersecurity enthusiast!!
In our endeavor to build around your playbook development energy, starting a thread, to encourage playbook development best practices. Come join us, to add on to this thread of facts, that helps strengthen the security fabric.
FortiSOAR Playbook Development Best Practices
CAUTION:
As can be seen in attached image, do not duplicate entire step results into one more variable. This results in doubling up the memory and storage requirements, if the step output is huge.
This default enrichment for Virus Total, for example, duplicates the entire enrichment data into a vt_data variable. Subsequently, this is not even consumed by the playbook.
However, the effects are significant, because the enrichment playbooks mostly run in DEBUG mode; run in large numbers; and have large outputs in response.
Nominating a forum post submits a request to create a new Knowledge Article based on the forum post topic. Please ensure your nomination includes a solution within the reply.
adding a few more and encouraging community to add the ones they have established
1) First Step (after Trigger), should always be Set Variable and named as "Configuration".
FortiSOAR team uses this as a convention to define all the tunables such as vt_reputation_threshold. Basically anything which one anticipates to be changed/tuned in the future, should be declared as a variable in this section.
2) Using Message Feature - Every Step in the playbook has a Message Feature. Anything you put here as static or dynamic text becomes the comment to alert (or whichever record the playbook is executing). We use this extensively to put comments as if a human would add to the case. This keeps the stream of comments readable -- and hint, it would be used in the future by AI.
See these screenshots:
Example:
Parent Playbook: QRadar > Fetch Offenses
Reference Playbook: > QRadar > Fetch Offenses > Create Alert
1. Try adding tags for all the Playbooks, like "subroutine" for child Playbook, "OnCreate" for Playbooks having On Create Trigger steps, "Schedule" for Playbook which are periodically executed.
2. Group the Playbook steps according to their functionality by using the Block Feature. It will help the other person to understand the basic flow of the Playbook before deep diving into it.
3. Make sure the Execution priority of the Playbook is set accordingly, like
I'd add:
- Add a variable for each connector action to store vars.result. This simplify debugging since previous steps (vars.steps.*) are not usable in the Jinja Editor
- The sensitive playbooks should all be private so only selected individuals can run them
- Playbook Execution Logs should be purged as frequently to avoid performance degradation
- For playbooks that have dual triggers (for example referenced and manual) and require input record(s) it's always a good idea to keep the input in vars.input.records when referenced, so to have a consistent input data regardless of how the playbook was triggered
- playbooks versioning is very useful especially for complex workflows
Created on 06-25-2023 09:12 PM Edited on 06-25-2023 09:13 PM
Thanks a bunch!! This comes as a great addition for the FortiSOAR Community!
The Fortinet Security Fabric brings together the concepts of convergence and consolidation to provide comprehensive cybersecurity protection for all users, devices, and applications and across all network edges.
Copyright 2024 Fortinet, Inc. All Rights Reserved.