What Is the Cyber Kill Chain?

On this page
  1. What are the seven stages?
  2. How do defenders use the Kill Chain?

The Cyber Kill Chain is a model, created by Lockheed Martin, that breaks a targeted intrusion into seven sequential stages — from an attacker’s first research to their final goal. Its value to defenders is simple: an attack that must pass through seven stages can be detected or stopped at any one of them, and the earlier the better.

What are the seven stages?#

Each stage is an opportunity to intervene:

  1. Reconnaissance — researching the target (OSINT, scanning).
  2. Weaponization — pairing an exploit with a payload.
  3. Delivery — getting the weapon to the target (email, web, USB).
  4. Exploitation — triggering the vulnerability.
  5. Installation — establishing persistence (a backdoor, implant).
  6. Command and control (C2) — opening a channel to steer the compromised host.
  7. Actions on objectives — the actual goal: exfiltration, encryption, destruction.

Notice how the vulnerability, exploit, and payload distinction maps onto stages 1–4.

How do defenders use the Kill Chain?#

By assigning detections and controls to each stage, so a miss at one is caught at another — defense in depth expressed as a timeline:

StageDefensive action
ReconnaissanceReduce attack surface, monitor for scanning
DeliveryEmail filtering, web proxy, user training
ExploitationPatching, exploit mitigations
InstallationEDR, application allowlisting
Command and controlEgress filtering, DNS monitoring
Actions on objectivesDLP, segmentation, anomaly detection

The Kill Chain sits alongside threat modeling as a way to reason about attacks systematically. Continue at the Security Fundamentals hub.

Frequently asked questions#

What are the stages of the Cyber Kill Chain?

Lockheed Martin defines seven: reconnaissance, weaponization, delivery, exploitation, installation, command and control, and actions on objectives. The model frames an intrusion as a sequence, so defenders can aim to detect or disrupt the attacker at any single stage rather than only at the final one.

How is the Kill Chain different from MITRE ATT&CK?

The Kill Chain is a high-level, linear model of an intrusion in seven phases. MITRE ATT&CK is a detailed, non-linear matrix of specific tactics and techniques observed in the wild. The Kill Chain tells the story; ATT&CK catalogs the moves. Many teams map ATT&CK techniques onto Kill Chain phases.

Sources & further reading