knowledge

Overview

The Cyber Kill Chain is a framework developed by Lockheed Martin that models the lifecycle of a cyberattack across seven sequential phases. It helps defenders understand how intrusions unfold, identify where detection and disruption are possible, and prioritize defensive investments accordingly. Attacks do not always progress linearly — adversaries frequently loop through earlier phases as they deepen their foothold or pivot to new systems.


Terminology

TermDefinition
Kill ChainA phase-based model describing the sequential stages of a cyberattack
DropperMalware that delivers and executes a payload on the target system
BackdoorPersistent remote access mechanism installed by an attacker after initial compromise
RootkitMalware that conceals attacker presence on a system and aids detection evasion
C2 (Command and Control)Infrastructure used by an attacker to remotely manage compromised systems
StagerLightweight initial payload that downloads or activates the full implant
PayloadMalicious code delivered to and executed on a target system
LOLBinLiving-off-the-Land Binary — a legitimate OS binary abused for malicious execution without dropping custom tools

Core Concepts

The Seven Phases

PhaseWhat Happens
1. ReconnaissanceAttacker gathers target information — passive OSINT, port scanning, employee enumeration, infrastructure mapping
2. WeaponizationAttacker builds or adapts a deliverable payload — malware embedded in an exploit or document; may research endpoint defenses to aid evasion
3. DeliveryPayload transferred to the target via any available means — phishing emails, malicious links, drive-by downloads, USB, or physical access
4. ExploitationExploit or payload is triggered — a click, opening a document, or visiting a page causes code execution on the target
5. InstallationAttacker establishes persistence — droppers deliver the full implant; backdoors provide ongoing access; rootkits conceal presence
6. Command and ControlAttacker establishes remote communication — outbound beacons, DNS tunneling, or other covert channels to a C2 server
7. Actions on ObjectivesAttacker achieves the goal — exfiltrate data, move laterally, deploy ransomware, escalate access, or cause disruption

Non-Linear Progression

The Kill Chain is often presented as sequential, but real intrusions are cyclic. Adversaries frequently repeat earlier phases to:

  • Enumerate new systems discovered during lateral movement
  • Re-weaponize or re-establish persistence after an implant is detected and removed
  • Pivot from one compromised network segment into another
  • Establish multiple footholds before moving to final objectives

Defensive Application

Defenders can disrupt an attack at any phase — earlier disruption limits adversary impact.

PhaseDefensive Opportunity
ReconnaissanceBlock external enumeration; monitor for scanning and OSINT activity
WeaponizationThreat intelligence on new exploits; AV/EDR signature updates
DeliveryEmail filtering, URL blocking, attachment sandboxing
ExploitationPatch management, application hardening, exploit protection (ASLR, DEP)
InstallationEndpoint detection, application whitelisting, file integrity monitoring
C2Egress filtering, DNS monitoring, network anomaly detection
Actions on ObjectivesData loss prevention, lateral movement alerts, immutable backups


References / Images