Lesson 1 of 5 · 20 min read

The NIST IR Lifecycle — Six Phases and SOC Ownership

The NIST IR lifecycle isn’t a checklist — it’s a mental model for knowing what phase you’re in, what decisions belong in that phase, and when to hand off to the next team. Every SOC analyst should be able to place any current incident in one of six phases at any moment.


The Six Phases

┌─────────────────────────────────────────────────────────┐
│                    1. PREPARATION                        │
│  Playbooks • Detection rules • Training • SOAR setup    │
│  Ownership: Security Eng + SOC leadership + IR team     │
└───────────────────────────┬─────────────────────────────┘


┌─────────────────────────────────────────────────────────┐
│              2. DETECTION & ANALYSIS                     │
│  Alert triage • Investigation • Classification           │
│  Ownership: SOC (L1 triage → L2 analysis)              │
└───────────────────────────┬─────────────────────────────┘

                   ┌────────┴────────┐
                   ▼                 ▼
        [False Positive]    [True Positive — escalate]
          Close ticket              │

┌─────────────────────────────────────────────────────────┐
│                  3. CONTAINMENT                          │
│  Short-term: isolate, block, revoke                      │
│  Preserve evidence BEFORE remediation                    │
│  Long-term: reimage, rotate creds, add detection        │
│  Ownership: SOC (short-term) + IR team (long-term)     │
└───────────────────────────┬─────────────────────────────┘


┌─────────────────────────────────────────────────────────┐
│                  4. ERADICATION                          │
│  Remove attacker artifacts, backdoors, persistence       │
│  Patch vulnerability used for initial access            │
│  Ownership: IR team + IT operations                     │
└───────────────────────────┬─────────────────────────────┘


┌─────────────────────────────────────────────────────────┐
│                   5. RECOVERY                            │
│  Restore systems • Monitor for recurrence               │
│  Verify normal operations restored                      │
│  Ownership: IT operations + IR team                     │
└───────────────────────────┬─────────────────────────────┘


┌─────────────────────────────────────────────────────────┐
│             6. POST-INCIDENT ACTIVITY                    │
│  Lessons learned • Incident report • Process improvement │
│  Ownership: SOC + IR team + security engineering        │
└─────────────────────────────────────────────────────────┘

Phase 2: Detection & Analysis — The SOC Core

This is where SOC analysts spend most of their time. The key outputs are:

  1. Alert disposition — FP or TP (or Benign-TP or escalate)
  2. Enriched investigation ticket — with all pivots and evidence
  3. Incident classification — severity, ATT&CK techniques, affected scope
  4. Escalation package — if TP, everything L2 and IR need to continue

The critical classification decisions:

QuestionAnswer determines
Is this a TP?Whether to contain or close
What is the blast radius?Severity level (P1-P4)
Is there active attacker presence?Speed of response (minutes vs. hours)
What phase of the attack is this?Which playbook drives next steps
Has data left the network?Whether breach notification is required

Phase 3: Containment — Two Modes

Short-term Containment (SOC Owns)

Immediate, reversible actions to stop the bleeding:

Evidence preservation happens BEFORE containment actions:

Preserve first (can't undo remediation):
  ✓ Export email headers and original email
  ✓ Collect Zeek pcap or conn.log segment for incident timeframe
  ✓ Export M365 UAL for affected accounts (time-bounded export)
  ✓ Export Sysmon events from affected host (before reimaging)
  ✓ Capture host memory dump if possible (volatile evidence)

Then contain:
  → Isolate host
  → Revoke sessions
  → Block network indicators

Long-term Containment (IR Team Owns)

After short-term containment and evidence collection:


Phase 6: Post-Incident Activity — The Improvement Loop

This phase is most often skipped under time pressure — and it’s the most valuable for long-term security improvement.

Three outputs:

  1. Incident report — for stakeholders, compliance, and historical record
  2. Lessons-learned document — what went right, wrong, and what to change
  3. Improvement actions — detection rule updates, playbook changes, training

SOC Severity Classification

Before escalating, classify incident severity to set response SLA:

PriorityCriteriaSOC Response Target
P1 — CriticalActive breach, confirmed data exfiltration, C-suite compromise, DC compromiseImmediate — IR declared within 15 min
P2 — HighConfirmed malware on endpoint, AiTM session compromise, lateral movementResponse within 1 hour
P3 — MediumPhishing email (no click), suspicious process (unconfirmed TP), policy violationResponse within 4 hours
P4 — LowInformational, generic phishing blocked, known-FP patternNext business day review