Incident Response
Detecting a threat is only half the job. Once something is confirmed as a real incident, you need to respond โ and how you respond in the first few minutes can be the difference between a minor disruption and a catastrophic breach. This module walks through the incident response process every SOC follows.
What is an incident?
Not every alert is an incident. An incident is a confirmed security event that has actually impacted or has the potential to impact the confidentiality, integrity, or availability of an organization's systems or data.
A failed login attempt from a strange IP is an alert. That same IP successfully logging in and accessing the HR database at 2am is an incident.
The IR Process (PICERL)
The most widely used incident response framework is NIST's six-phase process, often remembered as PICERL:
Containment strategies
Containment is often the most urgent phase. The faster you contain, the less damage. Common containment actions:
- Network isolation โ Disconnect the affected machine from the network so the attacker can't receive commands or send data out. Most EDR tools can do this remotely with one click.
- Account disabling โ Disable any compromised user accounts immediately so the attacker can't use them again.
- IP blocking โ Add malicious IPs to the firewall blocklist to stop further communication.
- DNS sinkholing โ Redirect malicious domain lookups to a harmless server so malware can't reach its C2.
- Password resets โ Force password changes for affected accounts and any accounts that may have been exposed.
Severity levels
Not all incidents are equal. Most SOCs use a severity scale to prioritize response:
Writing an incident report
Every incident gets documented. A good incident report answers:
- What happened? โ A concise description of the incident
- When did it start? โ The earliest evidence of the attack
- What systems were affected? โ Hostnames, IPs, user accounts
- How did the attacker get in? โ The initial entry point
- What did the attacker do? โ Their actions once inside
- How was it detected? โ Which alert or tool caught it
- What was the response? โ Every action taken, with timestamps
- What's the impact? โ Data accessed, systems down, users affected
Playbooks
A playbook is a documented, step-by-step procedure for responding to a specific type of incident. Instead of figuring out what to do in the middle of a crisis, you follow the playbook. Common playbooks include:
- Ransomware response
- Phishing investigation
- Compromised user account
- Data exfiltration detection
- DDoS response
As a new analyst, you'll use playbooks constantly. As you gain experience, you'll help write and improve them.