← Glossary

Techniques & Tradecraft

Cyber Kill Chain

Also: kill chain · Lockheed Martin Kill Chain · intrusion kill chain · unified kill chain

Last reviewed:

In one sentence

The Cyber Kill Chain is a seven-stage model of an intrusion's lifecycle — Reconnaissance, Weaponization, Delivery, Exploitation, Installation, Command & Control, Actions on Objectives — published by Lockheed Martin in 2011 to frame where in the chain to break an attack.

Why it matters

It predates MITRE ATT&CK by two years and is still widely referenced, especially in vendor material, board decks and incident reports, so it is worth recognising even if your day-to-day tagging uses ATT&CK technique IDs. Its central idea has aged well: an attacker must complete every stage to succeed, so the defender only has to break one — and the earlier the better, because each later stage costs more to unwind.

The seven stages, and how it differs from ATT&CK

  1. Reconnaissance — research the target: staff on LinkedIn, exposed services, technology in job ads.
  2. Weaponization — build the payload: a macro document, an exploit bundled with a backdoor. Happens on the attacker's side; invisible to you.
  3. Delivery — get it there: phishing e-mail, USB drop, watering-hole site.
  4. Exploitation — trigger it: the macro runs, the vulnerability is exploited.
  5. Installation — establish persistence: a service, a scheduled task, a web shell.
  6. Command & Control — open the channel home (see C2).
  7. Actions on Objectives — the actual goal: exfiltration, encryption, fraud.

The Kill Chain and ATT&CK get used interchangeably and they are not the same tool. The Kill Chain is a linear seven-stage narrative — good for explaining an incident's overall shape to a non-technical audience and for asking "where could we have stopped this?". ATT&CK is a much larger, non-linear catalogue of specific techniques within tactics roughly analogous to the Kill Chain's stages — good for precise detection engineering. Kill Chain for the story, ATT&CK for the detail.

The standard critiques: it is perimeter- and malware-centric (an insider or a stolen credential skips the first five stages), real intrusions loop and branch rather than proceeding in order, and it says nothing about what happens after the first objective (lateral movement, second objectives). The Unified Kill Chain (2017) merges it with ATT&CK into 18 phases to answer those.

Try it yourself hands-on

Writing up the same incident for a management summary and for a SOC handoff:

  1. For the management summary, frame the incident's shape in the seven stages in plain terms: how they got in (Delivery: invoice e-mail / Exploitation: macro), what they installed (Installation: scheduled task), how they kept control (C2: HTTPS beacon to a rented server), what they were after (Actions on Objectives: file-share encryption) — and at which stage it was stopped. The Incident Report Generator gives that narrative its structure.
  2. For the technical handoff, use the Incident Timeline Builder to lay out the same incident with actual timestamps and, for each entry, the matching ATT&CK technique ID from the MITRE ATT&CK Search: T1566.001 for the attachment, T1059.001 for the macro's PowerShell, T1053 for the task, T1071.001 for the beacon, T1486 for the encryption.
  3. Read the two side by side. The stage where the timeline shows the longest gap between attacker action and your first detection is the stage to invest in — that is the Kill Chain's actual use.