Incident Response, Explained: The Lifecycle, Digital Forensics, and the Order of Volatility

Chris Rees
25+ years in IT · Pluralsight author, 4.6/5 across 2,000+ ratings

www.skillthropic.comThe worst time to design your incident response is during an incident. At 3 a.m., with ransomware spreading and executives calling, the only thing standing between an organization and chaos is a process it rehearsed when things were calm. Security+ SY0-701 dedicates objective 4.8 to that process — a six-phase lifecycle straight out of the NIST playbook — and 4.9 to the forensic discipline underneath it. Here's both, deep enough to use.
An incident is a declaration, not a feeling
First, vocabulary the exam is picky about. An incident is not any alert; it's an event that violates (or imminently threatens) security policy — and declaring one is a formal act that starts clocks: regulatory notification windows, insurance requirements, evidence-handling duties. That's why mature programs define severity levels and declaration criteria in advance. Whether something is a nuisance event or a reportable breach is a decision you want made by a policy, not by whoever is on shift.
Where the lifecycle comes from
The process Security+ tests has a lineage worth knowing. NIST Special Publication 800-61, the federal incident-handling guide, defines four phases — preparation; detection and analysis; containment, eradication, and recovery; and post-incident activity. The long-running SANS incident-handling curriculum teaches the same material as six steps, unrolling that bundled middle phase. SY0-701's list — preparation, detection, analysis, containment, eradication, recovery, lessons learned — is that same consensus process; different frameworks just draw the boxes at different resolutions. The order, and the discipline of not skipping ahead, is what every version agrees on.
The lifecycle
SY0-701 tests a six-phase process. Know the order cold, and know what belongs in each phase — the exam's favorite trick is describing an activity and asking which phase it lives in.
Preparation is where incidents are actually won. It means an IR plan with roles and contacts, playbooks per scenario, a communication plan (including out-of-band channels, because the attacker may be reading your email), retainers with forensic firms, and tooling staged in advance. Preparation is also where you practice: a tabletop exercise walks the team through a scenario in a conference room, while a simulation makes them do it for real. The difference between the two is a classic exam distinction.
Detection and analysis turns noise into a decision. The signals arrive from everywhere at once: SIEM correlations, endpoint detection alerts, network anomalies, threat-intel matches against your logs — and, humblingly often, a user or an outsider simply telling you something is wrong. Analysts triage against four questions: is it real (not a false positive), what's the scope (how many systems, which accounts, what data), is it active (an attacker still moving beats malware found dormant), and does it meet the declaration bar? Correlating IoCs across sources is what turns one weird login into a mapped intrusion. Two failure modes matter: alert fatigue burying the true positive in ten thousand false ones, and premature action that tips off the attacker or destroys evidence. The stake is dwell time: intrusions routinely run for weeks before anyone notices, and every day of it compounds the damage.
Containment stops the bleeding without burning the crime scene: isolating hosts from the network (while keeping them powered — more on volatility below), disabling compromised accounts, blocking C2 traffic at the egress. Responders distinguish short-term containment — the immediate tourniquet, minutes to hours — from long-term containment: the hardened holding pattern (tightened segmentation, rebuilt jump paths, credentials rotated) that keeps business running while eradication is planned. Containment strategy is a business decision too — pulling a revenue system offline has a cost, and the plan should say in advance who gets to make that call. It's also an intelligence decision: block the attacker's C2 domain too early and you've announced you found them; they'll switch infrastructure and go quieter.
Eradication removes the attacker's presence — malware, persistence mechanisms, rogue accounts — and closes the door they used, because eradicating without fixing the entry point schedules a rematch. Recovery restores systems from known-good state, resets credentials, and watches intently: re-compromise attempts within days are common.
Lessons learned is the phase everyone skips and auditors love: a blameless after-action review, held promptly, producing concrete changes — new detections, patched playbooks, closed gaps. Its formal partner is root cause analysis: not "who clicked the link" but "why did one click reach a domain controller."
Forensics: evidence that survives a courtroom
Objective 4.9 runs underneath every phase: the moment an incident might involve crime, litigation, or regulators, response work becomes evidence handling, and sloppy handling can render everything you found unusable.
Three legal-procedural terms come first. A legal hold freezes deletion the moment litigation is reasonably anticipated — including the log rotation and mailbox auto-purge that would otherwise quietly destroy evidence. Chain of custody is the unbroken paper trail proving evidence integrity from collection to courtroom; one undocumented handoff and the defense moves to exclude. E-discovery is the production side — finding and handing over electronically stored information under legal process.
Then the technical discipline. Digital evidence dies in a specific order, so you collect in that order — the order of volatility:
Acquisition follows: capture a forensic image of storage (bit-for-bit, through a write blocker), then hash both original and copy. Matching hashes prove the copy is faithful; analysts work only on copies, and the hash gets re-verified whenever integrity is questioned — the same integrity math from our PKI deep dive, pointed at evidence instead of certificates. Preservation keeps originals sealed, labeled, and stored with documented access. Reporting closes the loop: findings a non-technical audience can follow, methods a technical peer could reproduce — because admissibility rests on exactly that reproducibility. Validated tools, documented procedure, contemporaneous notes: the examiner's work has to survive a hostile cross-examination, not just a status meeting.
One incident, six phases
Run the vocabulary through a single night and it stops being a list. 2:47 a.m.: EDR flags mass file renames on a file server — analysis correlates it with a service account authenticating from a workstation it's never touched (detection & analysis; IoCs; scope). The on-call lead checks the criteria in the ransomware playbook and declares a severity-1 incident, which starts the notification clock and pages the team over the out-of-band channel (declaration; preparation paying off). 3:10: affected segments are isolated at the switch, the service account is disabled, but machines stay powered and a memory capture starts on the patient-zero workstation (short-term containment; order of volatility). 4:30: with images taken and hashes logged (acquisition; chain of custody), eradication begins — the persistence mechanism and web shell are removed, and the unpatched VPN appliance the attacker came through is taken offline (eradication; entry point closed). Day 2–3: servers restore from offline backups, credentials rotate, monitoring watches for re-entry (recovery). Day 10: the blameless after-action lands three fixes — MFA on the VPN, service-account logon restrictions, and a new detection for anomalous service-account logons — and the root cause is recorded not as "ransomware" but as "remote access without MFA plus flat internal segments" (lessons learned; root cause analysis). Every phase, one incident, in order.
The metrics that make it a program
Two operational numbers turn IR from anecdotes into a managed capability: mean time to detect (MTTD) — how long intruders dwell before you notice — and mean time to respond (MTTR) — how fast detection becomes containment. Every lessons-learned action should move one of them. They're also the honest scoreboard for the whole vulnerability management and detection stack feeding your SOC: dashboards are opinions; dwell time is a fact.
Key takeaways
- Six phases, fixed order: preparation → detection & analysis → containment → eradication → recovery → lessons learned, looping back into preparation.
- Tabletop = discuss, simulation = do — both are preparation-phase activities, and the distinction is tested.
- Declaring an incident is formal: it starts notification clocks and evidence duties, so criteria belong in policy, not in the moment.
- Forensics 101: legal hold freezes deletion, chain of custody proves integrity, and collection follows the order of volatility — RAM before disk, always.
- Image, hash, work on copies; root cause analysis fixes the class of failure, and MTTD/MTTR measure whether any of it is improving.
Incident response caps the operations story that runs through Security+ Domain 4 — detection feeds it, vulnerability management shrinks what it has to handle, and the evidence discipline leans on the hashing covered in our PKI deep dive. Master all nine Domain 4 objectives — the biggest domain on the exam at 28% — with our Security+ Domain 4 study guide.
#SecurityPlus #SY0701 #IncidentResponse #DigitalForensics #ChainOfCustody #OrderOfVolatility #DFIR #SecOps #BlueTeam #CompTIA #CyberSecurity
Keep reading
PKI & Digital Certificates Explained: Chains of Trust, Revocation, and the TLS Handshake
The padlock in your browser rests on a global trust machine. PKI for Security+ SY0-701: key pairs and digital signatures, X.509 certificates and CSRs, root vs. intermediate CAs, wildcard and SAN certs, CRL vs. OCSP, and what actually happens in a TLS handshake.
Read Security+ deep divesZero Trust Architecture Explained: Control Plane, Data Plane, and the End of the Perimeter
Never trust, always verify — but what does that actually mean in an architecture? Zero Trust for Security+ SY0-701: the control plane and data plane, Policy Engine, PEP, adaptive identity, microsegmentation, and the CISA maturity model.
Read Security+ deep divesRisk Management by the Numbers: SLE, ALE, ARO & the Risk Register
The quantitative risk toolkit on Security+ — single loss expectancy, annualized loss expectancy, and annualized rate of occurrence, with a worked example, plus risk registers, appetite vs. tolerance, and the four risk responses. Core SY0-701 Domain 5 material.
ReadEnjoyed this? Get the AI security news that matters.
Join The AI Security Brief — the top AI security news, plus what's important to the C-suite. Free, straight to your inbox.
No spam. Unsubscribe anytime.
This is the biggest domain on your exam
Security Operations is 28% of Security+ — more than any other domain. Master all 9 objectives, from hardening to incident response, with our Domain 4 guide.
Get the Domain 4 guide