CalderaStartOperation

This script is used in the MITRE Caldera Operation playbook. It will auto-complete the task that waits for a specific date and time for the operation to start. It should not be used manually.

python · MITRE Caldera

Source

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

demisto.executeCommand("taskComplete", {"id": "mitrecalderadatetimestart"})
command_results = CommandResults(readable_output="Starting the Caldera Operation", mark_as_note=True)
return_results(command_results)