Skip to content
Athenian Tech

Threat Analysis

The Cyber Kill Chain: How Attacks Unfold and Where to Break Them

6 min read1,314 words

Most people imagine a cyberattack as a single dramatic moment: a hacker hits enter, and suddenly the data is gone. The reality is far less cinematic and far more useful to understand. A serious intrusion is almost never one event. It is a sequence of small, connected steps that stretch over hours, days, or months, and each of those steps is a chance for a defender to notice something is wrong and shut it down. The Cyber Kill Chain is a way of naming those steps so that defense stops being reactive guesswork and starts being a deliberate, staged effort.

Where the Idea Comes From

The framework was introduced by defense contractor Lockheed Martin around 2011, borrowing the military concept of a “kill chain,” the ordered stages an attacker must complete to hit a target. The insight was simple but powerful: because an intruder has to move through these stages in roughly this order, the defender does not need to be perfect. They only need to detect and disrupt the attacker at any single link. Break one link and the whole chain fails. That reframing is the reason the model has stuck around, even as newer approaches have refined it.

The Seven Stages

The classic model describes seven phases. It helps to read them as a story, because that is how an attacker experiences them.

  • Reconnaissance — The attacker studies the target before touching it. This means harvesting employee names and email addresses, mapping public-facing infrastructure, scanning for open ports, and combing social media and leaked credential dumps. Much of this is passive and leaves almost no trace on the victim’s systems.
  • Weaponization — Using what they learned, the attacker builds the payload: a malicious document, a trojanized installer, or an exploit paired with a backdoor. This happens entirely on the attacker’s side, so the defender cannot observe it directly.
  • Delivery — The weapon is transmitted to the target. The most common vehicles are phishing emails, malicious links, compromised websites, or infected USB drives. This is the first moment the attack actually touches the victim’s environment.
  • Exploitation — The payload triggers. A user opens the attachment, a vulnerable service parses malformed input, and the attacker’s code begins executing on the target machine.
  • Installation — The attacker establishes persistence, dropping a remote-access trojan, creating a scheduled task, or planting a web shell so that a reboot or a closed session does not evict them.
  • Command and Control (C2) — The compromised host phones home to a server the attacker controls, opening a channel for remote instructions. This is the point where a single infected machine becomes a controllable foothold.
  • Actions on Objectives — Only now does the attacker do what they came to do: exfiltrate data, encrypt files for ransom, tamper with records, or pivot deeper into the network toward higher-value systems.

The important takeaway is that the loud, damaging final stage is preceded by six quieter ones. By the time ransomware detonates, the intruder has usually been inside for a while.

Reconnaissance in Practice

Because reconnaissance is the earliest stage, it is worth seeing what it actually looks like. A defender who understands these techniques can better spot them and reduce their own exposed footprint. Much of it uses ordinary, legal tools.

A port and service scan with nmap reveals what a target exposes to the internet:

Shell
# Service/version detection on the top 1000 ports
nmap -sV -T4 target.example.com

The -sV flag probes open ports to fingerprint the software and version behind them, which tells an attacker exactly which exploits might work.

Search engines are a reconnaissance tool in their own right. “Google dorks” are crafted queries that surface things organizations never meant to publish:

Text
site:example.com filetype:pdf confidential
intitle:"index of" "backup"

The first finds PDFs on a domain containing the word “confidential”; the second looks for exposed directory listings holding backups.

DNS enumeration maps an organization’s subdomains and infrastructure without ever sending a packet to the main servers:

Shell
# Enumerate name servers and mail servers for a domain
dig example.com NS +short
dig example.com MX +short

The lesson for defenders is that the attack surface visible from the outside is often larger than teams realize. Minimizing exposed services, scrubbing metadata from published documents, and monitoring for scanning activity all raise the cost of stage one.

Turning the Model Into Defense

The framework’s real value is that it maps cleanly onto defensive actions. For each stage, a defender can ask: how do I detect, deny, disrupt, degrade, or deceive the attacker here? This produces a layered strategy where no single control has to carry the whole load.

  • Against reconnaissance: reduce your public footprint, use rate limiting and web application firewalls, and watch logs for scanning patterns.
  • Against delivery: filter email attachments, sandbox suspicious files, block known-malicious domains, and train people to recognize phishing.
  • Against exploitation: patch aggressively, disable unnecessary macros and services, and deploy endpoint protection that catches exploit behavior.
  • Against installation: use application allowlisting and endpoint detection and response (EDR) tools that flag unusual persistence mechanisms.
  • Against command and control: inspect outbound traffic, block connections to suspicious infrastructure, and monitor DNS for beaconing patterns.
  • Against actions on objectives: segment networks so a single foothold cannot reach everything, encrypt sensitive data, and alert on large or unusual data transfers.

Laid out this way, the kill chain becomes a checklist for where your controls are strong and where they are thin.

Why It Still Matters

The enduring appeal of the model is conceptual clarity. It gives security teams, executives, and incident responders a shared vocabulary for talking about an intrusion. When an analyst says an attacker “made it to C2 but was stopped before actions on objectives,” everyone understands both the severity and the near-miss. It also reinforces defense in depth: since you can win by breaking any one link, investing in multiple imperfect layers is rational rather than redundant. And during incident response, mapping observed evidence onto the stages helps teams reconstruct how far an intruder got and what to check next.

The Limits, and What Came After

The original model is not without weaknesses, and honest use means knowing them. Its linear, perimeter-focused shape reflects a 2011 world of malware-laden email attachments. It handles insider threats poorly, since a malicious employee skips the early external stages entirely. It underweights credential theft and “living off the land” attacks, where intruders abuse legitimate tools like PowerShell rather than dropping obvious malware. And it says little about what an attacker does laterally once inside.

This is why the field has broadened. The MITRE ATT&CK framework catalogs the specific tactics and techniques adversaries use in the real world, in far more granular and non-linear detail, and has become the dominant reference for threat detection engineering. The Unified Kill Chain stitches together the Lockheed model and ATT&CK into eighteen phases that better capture modern, multi-stage campaigns including lateral movement and internal reconnaissance. None of these replaces the original so much as extends it.

The Takeaway

Treat the Cyber Kill Chain as a mental model, not a rulebook. Its lasting contribution is the idea that an attack is a process with observable stages, and that a defender’s job is to break the chain as early and as often as possible. Real attackers do not always march through the steps in tidy order, and modern threats stretch the model to its limits. But the core discipline it teaches, thinking in stages, layering defenses, and hunting for the quiet early signals rather than waiting for the loud final blow, remains one of the most useful habits a security team can build. Pair it with more granular frameworks like ATT&CK, and you get both the big-picture narrative and the operational detail you need to defend a network.