DataminrPulseEPSSScore

This dynamic automation parses the EPSS Score of a CVE and presents it in the layout.

python · Dataminr Pulse

Source

import demistomock as demisto  # noqa: F401
from CommonServerPython import *  # noqa: F401


def main():
    indicator = demisto.callingContext.get("args", {}).get("indicator", {})
    epss = indicator.get("CustomFields", {}).get("dataminrpulseepssscore", "")
    epss = epss if epss else "N/A"

    return_results(CommandResults(readable_output=f"# <-:->**{epss}**"))  # noqa: E231


if __name__ in ("__builtin__", "builtins", "__main__"):
    main()

README

This dynamic automation parses the EPSS Score of a CVE and presents it in the layout.

Script Data


Name Description
Script Type python3
Tags dynamic-indicator-section
Cortex XSOAR Version 6.10.0

Inputs


There are no inputs for this script.

Outputs


There are no outputs for this script.