preprocessing
- The task is being sent to the Payload Type container for processing (parsing arguments, confirming values, doing RPC functionality to register files, etc)submitted
- The task is now ready for an agent to pick it upprocessing
- The task has been picked up by an agent, but there hasn't been any response back yetprocessed
- The task has at least one response, but the agent hasn't marked it as done yet.completed
- The task is marked as completed by the agent and there wasn't an error in executionerror
- The agent report back a status of "error"post_response
information. Similarly, in a task's create_tasking
function, you're free to set the task.status
value to one of the following:MythicStatus.Success
(which is the default), then the task won't be in the submitted
state and thus won't be picked up by your agent.