ShowIncidentIndicators
This script is used to display the indicators of an incident in an incident field of type Array. It can be used to select indicators from the incident in order to later perform some actions, like tagging the indicators for blocking via EDL. This script is a field-display script, so it needs to be configured as such, when editing the incident field that will be used to display the indicators.
python · Common Scripts
Source
import demistomock as demisto # noqa: F401 from CommonServerPython import * # noqa: F401 def group_by_type(indicators): """ Gets the indicators of the current incident. Returns: A list of the indicator types followed by the corresponding indicator values. """ grouped = {} if indicators and "Contents" in indicators[0]: indicators_res: dict = indicators[0]["Contents"] else: indicators_res = {} for indicator in indicators_res: if indicator["indicator_type"] not in grouped: grouped[indicator["indicator_type"]] = [indicator["value"]] else: grouped[indicator["indicator_type"]].append(indicator["value"]) result = [] for indicator_header, indicator_values in grouped.items(): result.append("--- " + indicator_header + " ---") result.extend(indicator_values) result.append("") return result def get_indicators_from_incident(): """ Returns: List of the indicators from the incident. """ incident_id = demisto.incident()["id"] indicators_query = "investigationIDs:" + str(incident_id) all_indicator_data = demisto.executeCommand("findIndicators", {"query": indicators_query, "size": 200}) return {"hidden": False, "options": group_by_type(all_indicator_data)} def main(): # pragma: no cover return_results(get_indicators_from_incident()) if __name__ in ("__main__", "__builtin__", "builtins"): main()
README
This script is used to display the indicators of an incident in an incident field of type Array. It can be used to select indicators from the incident in order to later perform some actions, like tagging the indicators for blocking via EDL.
This script is a field-display script, so it needs to be configured as such, when editing the incident field that will be used to display the indicators.
Script Data
| Name | Description |
|---|---|
| Script Type | python3 |
| Tags | field-display |
| Cortex XSOAR Version | 6.5.0 |
Inputs
There are no inputs for this script.
Outputs
There are no outputs for this script.