The 7 Phases of the Cyber Kill Chain

An intelligence-driven defense framework: the attacker's path from recon to objective, and where you break it.

Last updated

Download PDF

Free, no signup · 1 page · 21 scenarios · 210 KB

  1. 1Reconnaissance
  2. 2Weaponization
  3. 3Delivery
  4. 4Exploitation
  5. 5Installation
  6. 6Command & Control
  7. 7Actions on Objectives

Which phase is it? Scenario lookup

Work backwards from what happened. The boundary cases are where marks are lost, so each row says why it lands where it does.

What happenedPhaseWhy
Scraping employee names and job titles from LinkedInReconnaissanceNothing has been sent or built yet. Gathering target information is always phase 1.
Embedding a macro payload into a Word documentWeaponizationThe weapon is being assembled offline, on the attacker side. Nothing has touched the target.
Dropping malicious USB drives in the car parkDeliveryDelivery is the moment the payload is transmitted toward the target, whatever the medium.
Sending a spear-phishing email with a malicious linkDeliveryThe email is the transport. It becomes Exploitation only once the victim acts on it.
A compromised website triggers a browser vulnerabilityExploitationCode is now executing on the victim machine. That is the line between Delivery and Exploitation.
The victim opens the attachment and the macro runsExploitationSame rule: the payload has executed. The email that carried it was Delivery.
Malware creates a scheduled task so it survives rebootInstallationPersistence is the signature of Installation. Ask whether the access would survive a restart.
A backdoor is written into the registry Run keyInstallationEstablishing a foothold that outlives the initial exploit.
An infected host beacons to an external server every 60 secondsCommand & ControlThe attacker now has a remote channel. Beaconing and DNS tunnelling both live here.
Traffic is tunnelled out over DNS to an attacker domainCommand & ControlThe channel itself is C2, even when the goal is eventually exfiltration.
Customer records are copied to an external file-sharing serviceActions on ObjectivesExfiltration is the mission being accomplished, the final phase.
Files across the network are encrypted and a ransom note appearsActions on ObjectivesImpact on the target is the objective, not a step toward it.
1

Reconnaissance

Information gathering

Attackers research and identify targets, gathering intelligence about the organization, employees, and technical infrastructure.

Attacker tactics

  • OSINT collection
  • Social media profiling
  • DNS/WHOIS lookups
  • Email harvesting

Defenses

  • Monitor public information
  • Employee security awareness
  • Threat intelligence feeds
  • Attack surface management

Reconnaissance detection

ShodanGoogle AlertsHave I Been PwnedRiskIQ CommunityAlienVault OTX
2

Weaponization

Exploit + payload

Attackers combine exploits with malicious payloads to create weaponized deliverables tailored to the target environment.

Attacker tactics

  • Malicious document creation
  • RAT/Backdoor packaging
  • Zero-day exploit integration
  • Payload obfuscation

Defenses

  • Threat intelligence sharing
  • Signature development
  • Behavioral analysis
  • Malware sandboxing

Weaponization analysis

VirusTotalCAPE SandboxYARA rulesHybrid AnalysisJoe Sandbox
3

Delivery

Payload transport

The weaponized payload is transmitted to the target through various delivery mechanisms, with email being the most common vector.

Attacker tactics

  • Spear phishing emails
  • Malicious website hosting
  • USB/removable media drops
  • Watering hole attacks

Defenses

  • Email security gateways
  • Web content filtering
  • USB device controls
  • User awareness training

Delivery protection

Proofpoint TAPMicrosoft Defender for Office 365MimecastURLVoidPhishTank
4

Exploitation

Code execution

The attacker triggers the exploit, taking advantage of vulnerabilities in applications, operating systems, or human psychology.

Attacker tactics

  • Buffer overflow
  • Social engineering execution
  • Zero-day vulnerability abuse
  • Privilege escalation

Defenses

  • Patch management
  • Host-based IPS (HIPS)
  • Application sandboxing
  • Endpoint Detection & Response (EDR)

Exploitation prevention

Windows Defender Exploit GuardNessusOpenVASMetasploit (validation)Patch management tools
5

Installation

Persistence setup

Attackers install backdoors, remote access trojans, or other persistence mechanisms to maintain access to the compromised system.

Attacker tactics

  • RAT installation
  • Registry modification
  • Service creation
  • Scheduled task setup

Defenses

  • Anti-malware solutions
  • File integrity monitoring
  • Registry monitoring
  • Application whitelisting

Installation detection

OSSEC/WazuhTripwireSysmonVMware Carbon BlackProcess Monitor
6

Command & Control

Remote communication

The compromised system establishes communication with external command-and-control (C2) servers, giving attackers remote access.

Attacker tactics

  • HTTP/HTTPS beaconing
  • DNS tunneling
  • Social media C2 channels
  • Encrypted communications

Defenses

  • Network traffic monitoring
  • DNS analysis & filtering
  • Proxy log analysis
  • Firewall egress filtering

C2 monitoring

WiresharkZeekSuricataPi-holeRITA
7

Actions on Objectives

Mission accomplishment

With full access established, attackers execute their ultimate goals: data theft, destruction, or further compromise.

Attacker tactics

  • Data exfiltration
  • Lateral movement
  • Privilege escalation
  • Data destruction/encryption

Defenses

  • Data Loss Prevention (DLP)
  • Network segmentation
  • Privileged access monitoring
  • Incident response activation

Actions prevention

VaronisForcepoint DLPSymantec DLP (Broadcom)Microsoft PurviewNetwork segmentation

Frequently asked questions

What are the 7 phases of the Cyber Kill Chain?

In order: Reconnaissance, Weaponization, Delivery, Exploitation, Installation, Command and Control, and Actions on Objectives. The model is sequential by design. The defensive point is that breaking any single link stops the chain, so you do not need to catch an intrusion at phase one to stop it.

What is the difference between Delivery and Exploitation?

Delivery is the payload being transmitted to the target: the phishing email sent, the USB drive dropped, the malicious page hosted. Exploitation is the moment code actually executes on the victim system, which usually requires the victim to act or a vulnerability to be triggered. A phishing email sitting unopened in an inbox is Delivery. The macro running when the attachment is opened is Exploitation. Exam questions test this boundary more than any other.

What is the difference between Installation and Command and Control?

Installation is establishing persistence on the host so that access survives a reboot, such as a registry Run key, a scheduled task or a new service. Command and Control is the outbound channel back to the attacker, such as HTTP beaconing or DNS tunnelling. Installation is about staying in; C2 is about being reachable. An intrusion can have one without the other.

Who created the Cyber Kill Chain?

Lockheed Martin, in a 2011 paper by Hutchins, Cloppert and Amin titled "Intelligence-Driven Computer Network Defense". It adapts a military targeting concept to network intrusions. This origin is why it is attacker-centric and linear, and why later models were proposed to address those limits.

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

The Kill Chain is a linear seven-phase narrative of an intrusion, useful for teaching and for deciding where to place defences. MITRE ATT&CK is a much larger matrix of specific observed techniques mapped to tactics, and it does not assume a fixed order. In practice they are complementary: the Kill Chain gives you the shape of an attack, ATT&CK gives you the detail of how each step is actually carried out.

What are the criticisms of the Cyber Kill Chain?

It is perimeter and malware focused, so it fits an external intrusion better than an insider threat, a stolen credential used at the front door, or a supply chain compromise. It is also strictly linear, while real intrusions loop and run steps in parallel. Most teams therefore use it as a teaching and coverage-checking model rather than a literal description of every attack.

About this cheat sheet

Source
The model follows Lockheed Martin's original 2011 paper, Intelligence-Driven Computer Network Defense by Hutchins, Cloppert and Amin.
Scope
All seven phases with attacker tactics, defences and tooling, plus a scenario table for classifying an attack. Tool names are examples, not endorsements, and are reviewed for products that have been renamed or retired.
Comparing frameworks?
Kill Chain vs ATT&CK vs D3FEND covers how the three models differ and when to reach for each.
Corrections
Spotted something wrong? Tell us and we will fix it. Compiled and maintained by CyberQuizzer.