Skip to content

The Cyber Attack Lifecycle

The cyber attack lifecycle describes the sequence of phases an adversary moves through from initial reconnaissance to final impact or exfiltration. Frameworks such as the Unified Kill Chain and MITRE ATT&CK map each phase to specific attacker techniques and the investigative opportunities available to defenders.

Last updated:

Share

The cyber attack lifecycle is a structured model that maps the phases an adversary moves through from the first reconnaissance activity to the final objective, whether that is data exfiltration, ransomware deployment, or persistent access. The most widely used models are Lockheed Martin's seven-phase Cyber Kill Chain (2011), the 18-phase Unified Kill Chain (Paul Pols, 2017, updated 2021), and the MITRE ATT&CK framework, which organises observed attacker behaviours into 14 tactic categories and hundreds of sub-techniques. Together these models provide a common language for describing, investigating, and disrupting intrusions.

For a cyber forensic investigator, the lifecycle model serves two purposes. First, it provides a reconstruction scaffold: artefacts recovered from a compromised system can be placed on the timeline and matched to a lifecycle phase, which in turn suggests what artefacts to look for next. Second, it identifies defensive gaps. If an attacker reached the Exfiltration phase undetected, the investigator can determine which earlier phases produced no alert, and why. This feeds directly into post-incident remediation and future detection rule design.

The lifecycle concept predates digital forensics. Intelligence and military planning use similar phase models to describe adversary operations. The innovation of the Cyber Kill Chain was applying this thinking to network intrusions and showing that every phase offers an opportunity to detect or interrupt the attack. MITRE ATT&CK extended that by cataloguing the specific techniques adversaries use at each phase, drawing from real incident reports contributed by security teams worldwide, including those in the United States, Europe, and the Asia-Pacific region.

1. Recon2.Weaponise3. Delivery4. Exploit5. Install6. C27.ObjectivesFirewalllogs, IDSscan alertsMalwaresample,compiletimestampEmailheaders,proxy logs,USBregistryCrashdumps, appevent logsRegistryrun keys,scheduledtasksDNSbeaconing,firewalloutboundlogsStagingdirs,encryptedfileextensionsPhase row (top) and primary forensic artefact class (bottom)External phase: minimal victim-side evidenceInternal phase: rich endpoint and network artefactsArtefact class
Each Kill Chain phase produces a distinct artefact class: the phase where your logs go silent marks the detection gap to close.

By the end of this topic you will be able to:

  • Name and describe each phase of the Cyber Kill Chain and the Unified Kill Chain, and explain the difference between the two models.
  • Explain how MITRE ATT&CK tactics and techniques map onto the lifecycle phases, and use ATT&CK notation to describe a specific attacker behaviour.
  • Identify the forensic artefacts most likely to be present at each phase and explain why some phases leave minimal recoverable evidence.
  • Apply the lifecycle model to a breach scenario to reconstruct the sequence of events and identify missed detection opportunities.
  • Explain how lifecycle analysis informs the legal and evidentiary requirements of cyber investigations under Indian, US, UK, and EU legal frameworks.
Key terms
Cyber Kill Chain
A seven-phase linear model of an intrusion developed by Lockheed Martin in 2011. The phases are: Reconnaissance, Weaponisation, Delivery, Exploitation, Installation, Command and Control, and Actions on Objectives. Breaking the chain at any phase prevents the attacker from reaching their goal.
Unified Kill Chain
An 18-phase model by Paul Pols (2017, updated 2021) that extends the Cyber Kill Chain by integrating MITRE ATT&CK and adding coverage of insider threats, supply-chain attacks, and multi-stage campaigns. Organised into three macro-stages: In, Through, and Out.
MITRE ATT&CK
A publicly available, continuously updated knowledge base of adversary tactics, techniques, and procedures (TTPs) observed in real incidents. ATT&CK for Enterprise covers 14 tactic categories and hundreds of techniques and sub-techniques, each with real-world examples and detection guidance.
TTP (Tactics, Techniques, Procedures)
The three levels of specificity used to describe attacker behaviour. Tactics are the goal (e.g., persistence). Techniques are the method (e.g., scheduled task creation). Procedures are the specific implementation used by a particular threat actor or malware family.
Indicator of Compromise (IoC)
A forensic artefact that indicates a system or network has been compromised. Examples include malicious IP addresses, domain names, file hashes, registry keys, and unusual process names. IoCs are phase-specific: different lifecycle phases produce different IoC types.
Lateral movement
The phase in which an attacker who has gained an initial foothold moves through the network to reach higher-value systems. Techniques include pass-the-hash, pass-the-ticket, remote service exploitation, and abuse of legitimate remote management tools such as RDP or PSExec.

The Cyber Kill Chain: seven phases

Lockheed Martin published the Cyber Kill Chain in 2011 as part of an intelligence-driven defence paper. The model borrowed the military concept of a kill chain, a sequence that, if broken at any point, prevents the adversary from achieving their objective. The seven phases describe a typical targeted intrusion from the attacker's perspective.

PhaseAttacker ActivityInvestigative Artefacts
1. ReconnaissancePassive or active information gathering: OSINT, port scanning, social engineeringExternal server logs, WHOIS query records, phishing email headers
2. WeaponisationCreating or adapting an exploit payload paired with a delivery mechanismMalware samples, exploit documents, compile timestamps
3. DeliveryTransmitting the weapon to the target via email, web, USB, or supply chainEmail server logs, web proxy logs, USB device registry entries
4. ExploitationExecuting the payload by triggering a vulnerability in software or user actionCrash dumps, application event logs, memory artefacts
5. InstallationEstablishing a persistent mechanism on the hostRegistry run keys, scheduled tasks, service installations, dropped files
6. Command and Control (C2)Opening an outbound channel to the attacker's infrastructure for remote controlFirewall/DNS logs, beaconing patterns, encrypted traffic anomalies
7. Actions on ObjectivesAchieving the goal: data theft, ransomware deployment, sabotage, espionageData staging directories, exfiltration logs, encrypted file extensions

The Kill Chain is deliberately linear. Critics note this underrepresents real intrusions, which often involve multiple delivery attempts, parallel lateral movement threads, and re-entry after partial remediation. The Unified Kill Chain addresses this. However, the linear model is still useful for briefing non-technical stakeholders and for teaching the basic logic of intrusion sequencing.

The Unified Kill Chain: 18 phases across three macro-stages

The Unified Kill Chain (UKC), published by Paul Pols in 2017 and updated in 2021, extends the original model by integrating MITRE ATT&CK and addressing scenarios the seven-phase model cannot represent: insider threats, supply-chain compromises, and multi-wave campaigns where the attacker re-enters after partial eviction. The 18 phases are grouped into three macro-stages.

Stage 1: In (establishing initial foothold). Phases include Reconnaissance, Resource Development, Delivery, Social Engineering, Exploitation, Persistence, Defence Evasion, and Command and Control. This stage ends when the attacker has a stable, hidden presence on at least one internal host.

Stage 2: Through (propagating within the network). Phases include Pivoting, Discovery, Privilege Escalation, Execution, and Credential Access. The attacker uses the initial foothold to map the network, acquire credentials, and move toward higher-value targets. This stage is where most dwell time accumulates. The average dwell time before detection was 16 days globally in 2023, according to Mandiant incident response data, though this varies significantly by region and sector.

Stage 3: Out (achieving objectives). Phases include Collection, Exfiltration, and Impact. In ransomware operations, attackers frequently complete both Exfiltration (for double-extortion pressure) and Impact (encrypting systems) within a short window once they reach this stage. The separation between these phases in a ransomware case can be as short as hours.

MITRE ATT&CK: tactics, techniques, and forensic mapping

MITRE ATT&CK (Adversarial Tactics, Techniques, and Common Knowledge) is maintained by the MITRE Corporation as a public knowledge base. ATT&CK for Enterprise currently covers 14 tactic categories: Reconnaissance, Resource Development, Initial Access, Execution, Persistence, Privilege Escalation, Defence Evasion, Credential Access, Discovery, Lateral Movement, Collection, Command and Control, Exfiltration, and Impact. Each tactic contains multiple techniques, and many techniques have sub-techniques.

Each technique entry in ATT&CK includes: a unique identifier (e.g., T1566 for Phishing), a description of how the technique works, real-world procedure examples from attributed threat actor groups, detection guidance, and mitigation recommendations. Investigators use this to answer two questions: given this artefact, what technique was used; and given this technique, what other artefacts should I look for.

ATT&CK is also the basis for threat intelligence sharing. When a CERT (Computer Emergency Response Team) publishes a report on a threat actor group such as APT29 (attributed to Russian state actors) or Lazarus Group (attributed to North Korean state actors), the reported behaviours are cross-referenced to ATT&CK identifiers. An investigator who finds artefacts matching APT29's known ATT&CK profile can use that profile to guide hunting for other techniques the same group typically uses.

Forensic evidence at each lifecycle phase

The type and quantity of forensic evidence produced varies significantly across lifecycle phases. Early phases often leave little or no evidence on victim systems because the attacker is operating from outside. Later phases typically leave richer artefacts because the attacker is active inside the environment.

Reconnaissance leaves almost no artefacts on the victim's systems if the attacker uses passive OSINT techniques: browsing public websites, querying WHOIS databases, scraping LinkedIn. Active reconnaissance, such as port scanning, does leave entries in firewall logs and intrusion detection system (IDS) alerts, but these are often dismissed as noise without correlation to subsequent events.

Delivery and Exploitation produce the most time-sensitive artefacts. A phishing email leaves headers in the mail server and a copy in the recipient's mailbox. An exploit executed against a web application leaves entries in web server access logs and potentially a crash dump or application error log on the server. These artefacts are time-bound: mail servers may purge old messages, and web logs may roll over. Forensic preservation at this phase requires prompt action.

Installation and Persistence are the phases best represented in endpoint forensics. Dropped files, registry modifications, new scheduled tasks, new services, and modified startup scripts all leave artefacts in the Windows registry, the filesystem (with MFT timestamps), and event logs (Event IDs 4697 for service installation, 4702 for scheduled task modification, among others). These artefacts survive reboot and are recoverable even from offline forensic images.

Command and Control (C2) evidence lives primarily in network logs: DNS queries to unusual domains, outbound connections on non-standard ports, regular beaconing intervals visible in firewall logs, and SSL certificate anomalies. Memory forensics can recover the injected C2 shellcode or the process tree that shows a browser spawning a command shell (a common sign of exploitation). Fileless malware operating entirely in memory is recoverable only while the system is running, making live forensics critical.

Exfiltration evidence includes unusually large outbound data transfers in flow logs, archived staging directories in temp folders or on a network share, and cloud storage API calls in proxy logs. Ransomware deployment at the Impact phase leaves encrypted files, a ransom note, and Volume Shadow Copy deletion events (Event ID 524 or the execution of vssadmin.exe or wmic.exe with delete arguments), all of which are highly characteristic and recoverable.

Investigative opportunities and disruption points

The central insight of the Kill Chain model is that disrupting any phase prevents the attacker from advancing. For an investigator engaged in post-breach analysis, this translates into a different question: at which phases did we have an opportunity to detect the attack, and why did we not act on it? This analysis drives remediation and future detection investment.

Detecting at the Reconnaissance phase is rare but possible for active scanning. Rate-limiting or blocking scanning IP ranges, monitoring for credential stuffing attempts against external portals, and reviewing third-party data breach notifications are all early-phase detection opportunities. The threat intelligence feed from a sector-specific ISAC (Information Sharing and Analysis Center) may flag known reconnaissance infrastructure before it is used against a specific target.

Detection at Delivery and Exploitation depends on email gateway filtering, web application firewalls, and endpoint detection tools. These are the most commonly deployed detection layers. However, sophisticated attackers use living-off-the-land techniques (using built-in OS tools such as PowerShell, WMI, or certutil) specifically to evade signature-based detection at these layers.

Detection at Lateral Movement is increasingly the focus of modern detection strategy because it is the phase where most attackers spend time and leave the most varied artefacts. Anomalous authentication events, service account logins at unusual hours, and pass-the-hash artefacts in Windows Security logs are all detectable with properly configured SIEM rules. The network protocols and traffic analysis perspective is essential here: east-west traffic anomalies within a network are often the clearest signal of lateral movement.

Check your understanding
Question 1 of 4· 0 answered

An attacker sends a phishing email with a malicious attachment. Which phase of the Cyber Kill Chain does this represent?

Key Takeaways

  • The Cyber Kill Chain (Lockheed Martin, 2011) provides a seven-phase linear model of an intrusion; the Unified Kill Chain (2017, updated 2021) extends this to 18 phases across three macro-stages (In, Through, Out) and integrates MITRE ATT&CK.
  • MITRE ATT&CK maps specific attacker behaviours (techniques and sub-techniques) to 14 tactic categories, giving investigators a common vocabulary and a reference for cross-referencing threat actor profiles and detecting related behaviours in the same environment.
  • Forensic evidence density varies by phase: Reconnaissance often leaves no victim-side artefacts; Installation and Lateral Movement produce the richest endpoint and network log evidence; Exfiltration and Impact artefacts are characteristic but indicate the attack was not detected early enough.
  • Post-breach lifecycle analysis serves two purposes: reconstructing what happened and identifying missed detection opportunities, which feeds directly into SIEM rule development and security control investment.
  • Legal treatment of cyber attack evidence requires phase-by-phase documentation with verified chain of custody. India's IT Act 2000 and Bharatiya Sakshya Adhiniyam 2023, the US CFAA, the UK Computer Misuse Act 1990, and the EU NIS2 Directive all have specific admissibility and reporting requirements that lifecycle analysis helps satisfy.
What is the cyber attack lifecycle?
The cyber attack lifecycle is a model that describes the sequential phases an adversary follows from initial reconnaissance through to achieving their objective, which may be data theft, disruption, or ransom. Common models include Lockheed Martin's Cyber Kill Chain (seven phases), the Unified Kill Chain (18 phases), and the MITRE ATT&CK framework with 14 tactic categories. These models help investigators reconstruct what happened and at what stage a defender could have disrupted the attack.
What is the difference between the Cyber Kill Chain and MITRE ATT&CK?
The Cyber Kill Chain (Lockheed Martin, 2011) is a linear seven-phase model suited to understanding the overall shape of an intrusion. MITRE ATT&CK is a detailed, continuously updated matrix of attacker tactics and techniques observed in real incidents. ATT&CK is more granular: it maps specific tools and behaviours (e.g., spearphishing attachment, credential dumping) to each tactic category. Investigators typically use the Kill Chain or Unified Kill Chain for framing and ATT&CK for technical detail.
What is the Unified Kill Chain?
The Unified Kill Chain (Paul Pols, 2017, updated 2021) merges the Lockheed Kill Chain with MITRE ATT&CK into an 18-phase model covering three main stages: In (initial foothold), Through (network propagation), and Out (action on objectives). It addresses weaknesses of the original Kill Chain by covering insider threats, lateral movement, and multiple intrusion paths in the same campaign.
How does MITRE ATT&CK help a cyber forensic investigator?
MITRE ATT&CK gives investigators a common vocabulary and reference database for observed attacker behaviours. When an investigator finds a specific artefact, such as a registry run key added for persistence, they can map it to ATT&CK technique T1547.001 (Boot or Logon Autostart Execution: Registry Run Keys). This lets them query whether known threat actor groups use that technique, cross-reference with indicators of compromise, and identify other ATT&CK techniques the same actor is likely to have used elsewhere in the environment.
At which phase of the attack lifecycle is evidence most commonly preserved?
Evidence is most reliably preserved during the Installation, Command and Control, and Lateral Movement phases because each leaves persistent artefacts: dropped executables, registry modifications, scheduled tasks, network connection logs, and authentication events. Reconnaissance activity against external systems is often the hardest to recover because it takes place entirely outside the victim environment. Early internal phases such as exploitation may leave minimal traces if the attacker used fileless techniques, making log and memory forensics critical.

Test yourself on Cyber Forensics with free, timed mocks.

Practice Cyber Forensics questions

Found this useful? Pass it along.

Share

Spotted an error in this page? Report a correction or read our editorial standards.

Your journey to becoming a forensic professional starts here.

Practice with mock tests, learn from structured notes, and get your questions answered by a global forensic community, all in one place.