The kill chain and MITRE ATT&CK
Two shared languages for describing how an intrusion unfolds: the linear kill chain for the arc of an attack, and the ATT&CK matrix for the catalogue of techniques along it.
On this page
Learning objectives
- Describe the seven stages of the Cyber Kill Chain and why breaking one link stops an attack.
- Explain the structure of MITRE ATT&CK in terms of tactics, techniques, and sub-techniques.
- Choose the right framework for the executive story versus the technical finding tags.
- Use AI safely to map findings to ATT&CK without inventing technique IDs.
An intrusion is a sequence of actions, and everyone involved (attacker, defender, report reader) benefits from a common vocabulary for those actions. Two frameworks dominate. They are complementary, not competing: the kill chain describes the arc of an attack, and MITRE ATT&CK catalogues the techniques used at each stage.
The Cyber Kill Chain: the arc
Lockheed Martin's Cyber Kill Chain models an intrusion as seven ordered stages:
- Reconnaissance: research the target.
- Weaponisation: build the payload, for example a malicious document.
- Delivery: get it to the target (phish, USB, exposed service).
- Exploitation: trigger the vulnerability.
- Installation: establish a foothold.
- Command and Control (C2): establish remote control.
- Actions on Objectives: do the actual damage (exfiltration, ransomware).
The value of the linear model is interruption: a defender only has to break the chain at one link to stop the attack. It maps cleanly onto defense in depth, where each layer is a chance to break a link.
Its limitation is that real intrusions are not tidy lines. Attackers loop, they recon, move, escalate, and recon again. That is where ATT&CK comes in.
MITRE ATT&CK: the catalogue
ATT&CK (Adversarial Tactics, Techniques, and Common Knowledge) is a large, community-maintained knowledge base of real-world adversary behaviour. It is structured as a matrix:
- Tactics: the attacker's goal at a moment (the "why"), such as Initial Access, Execution, Persistence, Privilege Escalation, Defense Evasion, Credential Access, Discovery, Lateral Movement, Collection, Command and Control, Exfiltration, and Impact.
- Techniques: how they achieve a tactic (the "what"). Under Credential Access, for example, T1557 Adversary-in-the-Middle, T1110 Brute Force, and T1003 OS Credential Dumping.
- Sub-techniques: specific variants of a technique.
Crucially, ATT&CK is overwhelmingly about post-compromise behaviour, the interior of the assumed-breach world. That is why it is the lingua franca of modern offensive and detection engineering.
Kill chain versus ATT&CK: when to reach for which
| Cyber Kill Chain | MITRE ATT&CK | |
|---|---|---|
| Shape | Linear, 7 stages | Matrix, many techniques |
| Best for | Explaining the arc of an attack to a non-specialist | Precisely tagging what was done |
| Granularity | Coarse | Fine (technique IDs) |
| In a report | The executive walkthrough | The technical finding tags |
A good report uses both: the kill chain (or a simple attack-path diagram) to tell the story to executives, and ATT&CK technique IDs on individual findings so blue teams can map them straight to detections.
Using AI to speak the defender's language
Tagging findings with ATT&CK techniques is a natural place to lean on an AI assistant. Given a description of what you did (poisoned a name-resolution response, dumped a credential store), a model can propose the matching tactic and technique and draft the attack narrative that stitches your evidence into a story. That saves real time on a report.
The catch is that models invent technique IDs. An AI will happily produce a plausible-looking "T1557.004" that does not exist, or attach a real ID to the wrong behaviour. Treat every suggested identifier as a lookup to verify against the official ATT&CK matrix, not a fact. Let AI draft the mapping and the narrative, then confirm each technique ID yourself so the report a blue team relies on is accurate.
Related reading
- Defense in depth: breaking links in the chain.
- Risk, impact and CVSS: scoring what you found.
Knowledge check
Answer without AI. This is your own recall. 70% to pass.
1.What is the defensive value of the linear kill-chain model?
2.In MITRE ATT&CK, what is the relationship between a tactic and a technique?
3.ATT&CK is overwhelmingly focused on which part of an intrusion?