Retrieve any MITRE ATT&CK object by its external ATT&CK ID and STIX type.
This tool supports techniques, intrusion sets (APT groups), malware,
tools, mitigations, campaigns, data sources, data components, and tactics.
Args:
attack_id: The external ATT&CK ID (e.g., "T1055", "G0016", "S0154", "M1013").
stix_type: The STIX object type (e.g., "attack-pattern", "intrusion-set").
domain: ATT&CK domain ("enterprise", "mobile", or "ics").
include_description: Whether to include the object's description field.
Returns:
{
"found": bool,
"object": {
"id": "<ATT&CK ID>",
"name": "<object name>",
"stix_id": "<STIX object ID>",
"type": "<stix_type>",
"description": "<description or null>"
},
"formatted": "<human-readable formatted output>",
"message": "<status>"
}