- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2020 05:57 AM
Hi, we have created the security tags and set the security tag rule as Category=“Data exposure”.
So when a security incident is created it needs to automatically set the security tag to Data exposure. After I created the tag, it set the security tag for all the current security incidents however , when I create/update a new Security incident With category Data Exposure it does not auto assign the security tag. What am I missing? How does the security tag auto set to a ticket?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 11:22 AM
Had to manually implement a after insert BR for Vul when we did this.
After BR w/ the following:
var strUtil = new sn_sec_cmn.SecurityTagRulesUtil();
strUtil.addSecurityTagByRules(current);
I'd double check the ordering on the after business rules as well, make sure its at the end.
^ should help get you started.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 07:01 AM
You will need to implements this yourself (Flow, Workflow, Business Rule). For a BR, model it after "Automatically apply security tags" found on the Observables table.
Go ahead and mark this as Helpful or Correct.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 11:30 AM
Chris, was this change to functionality announced and we missed it? Also, why have a section for security tag rules if they don't run? This appears to me to be a function that is broken.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2020 06:36 AM
qcj3.... researching.... searching the code I do not see where it applies to SIR. The Doc seems kind of light on this subject 😉
The only place I see where they apply to is Observables. I have reached out internally to see if I can get more detail.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2020 12:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 11:22 AM
Had to manually implement a after insert BR for Vul when we did this.
After BR w/ the following:
var strUtil = new sn_sec_cmn.SecurityTagRulesUtil();
strUtil.addSecurityTagByRules(current);
I'd double check the ordering on the after business rules as well, make sure its at the end.
^ should help get you started.