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

Details

IDCalderaStartOperation
Languagepython
From Version6.2.0
Docker Imagedemisto/python3:3.12.8.3296088
Tagssla
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)