HI Splunkers,
In our environment, We have couple of unwanted threat groups and threat category list populated in the drop downs present in the security intelligence threat activity. How to remove them. Please find the screenshot below for the reference
Just wanted to remove "F" from the threat Group and "undefined" From the threat Category dropdowns.
Also F group has threat feeds added to ip_intel lookup. How to flush data related to certain threat_key?
Need your help
Threat Categories and Threat Groups on the Threat Artifact dashboard actually are stored in a lookup.
You can remove unwanted entries something like this:
| inputlookup threat_group_intel | search threat_group!="F" | outputlookup threat_group_intel
With this I am looking for all threatgroups but not threat_group with the value "F"
Next you overwrite the old lookup with the new using outputlookup command.
(Always backup a lookup before you start tinkering with it)