Courseiva
CISMChapter 15 of 17Objective 4.3

Incident Response Execution and Containment

An organisation that discovers a security breach but fails to stop it fast enough can lose millions of dollars in data, fines, and customer trust within hours. That is why 'Incident Response Execution and Containment' exists: it is the life-saving moment in a cybersecurity crisis where you act to prevent the damage from spreading. For your CISM exam, understanding this topic means knowing exactly what steps to take — and in what order — when a real incident occurs, turning chaos into a controlled response.

12 min read
Intermediate
Updated Jul 23, 2026
Reviewed by Johnson Ajibi· Senior Network & Security Engineer · MSc IT Security

A simple way to picture Incident Response Execution and Containment

The Hospital Emergency Room Triage Nurse Analogy

A Hospital Emergency Room Triage Nurse is the person you meet first when you arrive at the ER. Their job is not to cure you — that comes later. Their job is to quickly figure out how bad your injury is and stop it from getting worse while you wait for a doctor.

When a patient with a severe bleed arrives, the triage nurse doesn't immediately perform surgery. Instead, they apply direct pressure to the wound to contain the blood loss, stabilise the patient, and prevent the situation from escalating into cardiac arrest. They also isolate infectious patients in separate rooms to prevent an outbreak from spreading through the waiting area.

In the same way, an incident response team's first priority during 'containment' is to stop a security incident from causing more damage. Just as the nurse doesn't yet know whether the patient needs stitches, a blood transfusion, or surgery, the response team often doesn't know the full extent of the attack. But they know enough to act: they disconnect the infected computer from the network (like applying pressure to a wound), block the attacker's IP address (like isolating an infectious patient), and preserve evidence (like taking a patient's vital signs before treatment).

The triage nurse's role ends when the patient is stable enough to be handed off to a specialist surgeon. Similarly, once the incident is contained, the response team hands over to the eradication and recovery teams. The analogy holds because both roles are about rapid, decisive action under uncertainty — not perfection, but stopping the bleeding first.

How It Actually Works

Let us start with what an 'incident' actually is. In cybersecurity, an incident is any event that threatens the confidentiality, integrity, or availability of information. 'Confidentiality' means keeping data secret from unauthorised people. 'Integrity' means ensuring data has not been tampered with. 'Availability' means systems and data are accessible when needed. A virus, a hacker breaking into a server, or an employee accidentally deleting critical files — all are examples of incidents.

The 'Incident Response Execution' phase is the moment when the plan you wrote on paper becomes real action. You have detected something suspicious — perhaps through an alert from an intrusion detection system (IDS), a tool that monitors network traffic for malicious activity. Now you must 'execute' the response. This means following a pre-defined set of procedures to confirm the incident, assess its scope, and begin containment.

Containment is the most critical sub-phase. Its purpose is to stop the incident from spreading to other systems or data. Think of it like a fire door slamming shut to stop a blaze from consuming the entire building. Containment can be divided into two types: 'short-term containment' and 'long-term containment'. Short-term containment is the immediate action you take to stop the bleeding — for example, disconnecting a compromised server from the network by unplugging its cable or disabling a user account that has been taken over by an attacker. Long-term containment involves more deliberate steps, such as applying temporary security patches or creating a separate network segment (a 'sandbox') to isolate the affected system while you investigate further.

After containment comes 'eradication'. This is the step where you remove the root cause of the incident. If containment is putting out the fire, eradication is removing the faulty wiring that caused it. Eradication might involve deleting malware from an infected machine, rebuilding a compromised server from a clean backup, or resetting all passwords of affected user accounts. The key point is that you cannot skip containment and go straight to eradication — if you try to clean a system while it is still actively under attack, the attacker will simply reinfect it.

Now, why does the order matter so much? The CISM exam tests your knowledge of the 'Incident Response Cycle', which is a structured process with six phases: Preparation, Detection and Analysis, Containment, Eradication, Recovery, and Lessons Learned. Execution and Containment fall specifically within phases 3 and 4. The exam expects you to know that containment must happen before eradication, and eradication before recovery.

Let us look at a concrete example. Suppose a company employee clicks a link in a phishing email. The link installs 'ransomware', a type of malware that encrypts all files on the computer and demands payment to unlock them. The incident response team is alerted. - First, they confirm the incident: they check the alert from the anti-malware tool and see that files are being encrypted. - Second, they contain it: they immediately disconnect the employee's computer from the network by instructing the network switch to disable that port. They also block the internet protocol (IP) address of the command-and-control server that the ransomware is talking to. IP addresses are unique numerical labels assigned to each device on a network. - Third, they eradicate: they wipe the infected computer's hard drive completely and reinstall the operating system from a clean image. - Fourth, they recover: they restore the employee's files from the most recent backup.

Notice what would happen if they skipped containment: while they were wiping the first computer, the ransomware might have already spread to a shared network drive, encrypting thousands of other files. That is why containment saves the day.

The CISM exam also covers different 'containment strategies'. The choice depends on the type of incident. For example:

'Disconnection' is pulling the plug — physically or logically removing a device from the network. It is fast and effective but destroys evidence because volatile memory (RAM data) is lost when power is cut.

'Network segmentation' is rerouting traffic so the infected system can only talk to a safe, monitored environment. This preserves evidence better.

'Kill-switch activation' is using a security tool to remotely shut down a malicious process across many computers at once.

Finally, you need to understand 'evidence preservation'. During containment, you must be careful not to destroy forensic evidence that could be used to prosecute the attacker or understand what happened. For example, if you simply pull the power cord, you lose the contents of the computer's memory (RAM), which might contain the attacker's encryption keys or active connections. A better practice is to capture a 'forensic image' — a bit-for-bit copy of the hard drive — before taking containment actions that alter the system. The CISM exam will test whether you know that preserving evidence is a balancing act with the need to contain quickly.

The sequence of steps in incident response execution and containment, showing the order from detection through to lessons learned.

Walk-Through

1

Confirm the Incident

Verify that the alert is not a false positive by checking multiple data sources, such as logs from an intrusion detection system or a user report. Do not act on unconfirmed alerts.

2

Perform Short-term Containment

Take immediate action to stop the incident from spreading. This could mean isolating the affected system from the network, disabling a compromised user account, or blocking a malicious IP address at the firewall.

3

Preserve Forensic Evidence

Before making any changes that could alter the system (like deleting files), capture a forensic image of the hard drive and memory. Document the chain of custody for each piece of evidence.

4

Perform Long-term Containment

Apply more durable containment measures, such as moving the affected system to a separate network segment (VLAN), applying a temporary security patch, or implementing additional monitoring.

5

Eradicate the Root Cause

Remove the underlying cause of the incident, for example by deleting malware, rebuilding the system from a clean image, and resetting all compromised passwords.

What This Looks Like on the Job

Meet Priya, an IT Security Analyst at a mid-sized accounting firm with 500 employees. On a Tuesday morning, she receives an automated alert from the company's endpoint detection and response (EDR) tool. EDR is software installed on each computer that watches for suspicious behaviour. The alert says that a user named James in the finance department has run an unusual script that is trying to connect to an external server in a country where the company does no business.

Priya does not panic. She follows the incident response plan (IRP) — a written document that tells everyone exactly what to do during an incident. Her first step is to confirm the alert is not a false positive. She opens the EDR dashboard and sees that James's computer has been making outbound connections every five seconds to the suspicious IP address. The script is named 'payroll_update.exe', but the finance department did not authorise any payroll software update. Priya marks this as a confirmed incident.

Now comes containment. Priya's IRP says that for any confirmed malware incident, the first containment action is to isolate the affected system from the network. She clicks the 'isolate' button in the EDR tool, which applies a firewall rule to block all inbound and outbound traffic from James's computer except to the EDR tool itself for monitoring. This is short-term containment — it stops the script from exfiltrating (stealing and sending out) company data. She also emails the IT helpdesk and asks them to physically verify that James's network cable is disconnected as a backup.

Next, Priya assesses the scope. She checks the EDR logs to see if any other computers have touched the same malicious file or IP address. She finds that three other computers on the same floor have communicated with the same IP in the past hour. She isolates all four computers simultaneously using the EDR tool's group action feature. This is long-term containment — creating a separate virtual local area network (VLAN) segment where the infected machines can be monitored without risking the rest of the company.

Priya then calls the incident response team leader. Together, they decide to preserve evidence before doing anything else. Priya triggers the EDR tool to take a forensic snapshot of each infected computer's memory and hard drive. The tool copies all the data to a secure storage location called a 'forensic evidence locker'. Only then does she proceed to eradication.

For eradication, the team decides to rebuild the four computers from a clean operating system image. They wipe the hard drives and reinstall Windows from a trusted backup. The finance department's data had been backed up to a separate server that was not compromised, so after rebuilding, they restore James's files from the previous night's backup.

Throughout this process, Priya documents every action in the incident management system. She records the time of containment, the tools used, the IP addresses blocked, and the evidence captured. This documentation becomes critical later during the 'Lessons Learned' phase, where the team will review what went well and what could be improved. It is also essential for any legal or regulatory investigation, since the company must prove it took 'reasonable care' to protect client data.

The real-world lesson? Priya did not wait for perfect information. She contained first, investigated second. That is the heart of incident response execution.

How CISM Actually Tests This

The CISM exam tests 'Incident Response Execution and Containment' (Objective 4.3) through scenario-based multiple-choice questions. You will be given a brief description of a security incident and asked to select the correct next action. The exam is not testing your ability to perform the technical steps — it is testing your ability to apply the correct framework and prioritisation.

Here are the specific concepts that appear repeatedly:

The order of operations: containment must come before eradication. The exam loves to present a scenario where a team attempts eradication first, and the correct answer is 'they should not have done that — contain first'.

Short-term vs. long-term containment: you must know that short-term containment is the immediate action (e.g., disconnect the cable) while long-term containment is more deliberate (e.g., apply a patch or segment the network). A common question asks which is the first action when a server is actively spreading malware. The correct answer is short-term containment.

Evidence preservation vs. speed: the exam tests the tension between containing fast (pull the plug) and preserving evidence (take a forensic image first). The correct answer usually depends on the severity. If the attacker is actively stealing data, contain first. If the incident is under control, preserve evidence first.

The traps CISM sets include:

Trap 1: 'Eradicate immediately.' Wrong. You must contain first. The exam will offer an answer that sounds urgent (stop the attack permanently by deleting the malware) but is incorrect because the system is still online and the attacker could reinfect.

Trap 2: 'Ignore the incident and continue monitoring.' Wrong. Once an incident is confirmed, you must act. Monitoring alone is not a response. The exam calls this 'passive monitoring', and it is always a distractor.

Trap 3: 'Notify law enforcement before containing.' Wrong. While notification may be required legally, containment is always the immediate priority. The correct sequence is contain, preserve evidence, notify stakeholders, then notify law enforcement if needed.

Trap 4: 'Conduct a full root-cause analysis before containing.' Wrong. Do not investigate the cause until the threat is contained. The exam calls this 'analysis paralysis'.

Key definitions to memorise for the exam:

Incident: any event that threatens the confidentiality, integrity, or availability of information.

Containment: the process of stopping an incident from spreading or causing further damage.

Eradication: the process of removing the root cause of the incident (e.g., deleting malware, rebuilding systems).

Recovery: the process of returning affected systems to normal operation.

Sanitisation: securely wiping data from a device before disposal or reuse — not the same as eradication.

Chain of custody: the documented trail of who handled evidence and when. You must know that breaking the chain of custody can make evidence inadmissible in court.

Finally, the exam expects you to know that the 'Incident Response Plan' (IRP) must be approved by senior management and tested regularly. Questions about who approves the plan often have 'senior management' as the correct answer, not the IT team. Also, remember that the 'Lessons Learned' phase happens after recovery, and its goal is to improve future response — not to assign blame.

Key Takeaways

Containment must always come before eradication — you cannot clean a system that is still under active attack.

Short-term containment is immediate (e.g., disconnecting a network cable), while long-term containment is a more deliberate isolation strategy.

Preserving forensic evidence is a critical concern during containment; pulling the power cord loses volatile memory data.

The incident response plan must be formally approved by senior management and tested through drills.

Documentation of every action taken during containment is essential for legal defence and regulatory compliance.

The 'Lessons Learned' phase occurs after recovery and focuses on improving future response, not on blaming individuals.

Easy to Mix Up

These come up on the exam all the time. Here's how to tell them apart.

Containment

Stops the incident from spreading

Is always performed first

May be temporary (short-term) or more permanent (long-term)

Eradication

Removes the root cause of the incident

Is performed only after containment is complete

Often involves rebuilding systems from clean images

Short-term Containment

Immediate action taken within minutes

Often involves disconnecting from the network or disabling accounts

May sacrifice evidence preservation for speed

Long-term Containment

Deliberate action taken after initial containment

Often involves network segmentation or applying temporary patches

Designed to allow safe investigation and eradication

Incident Response Plan (IRP)

Focused on responding to security incidents

Includes containment, eradication, and recovery steps

Tested through tabletop exercises and drills

Business Continuity Plan (BCP)

Focused on keeping the business running during any disruption

Includes disaster recovery and alternate site operations

Tested through business continuity exercises

Watch Out for These

Mistake

Containment and eradication are the same step and can be done simultaneously.

Correct

Containment must happen first to stop the spread; eradication follows only after the threat is contained. Doing both at once risks reinfection.

Beginners see both as 'fixing the problem' and do not realise containment is about stopping the bleeding while eradication is about healing the wound.

Mistake

The first thing to do in any incident is to disconnect the power cable to the affected computer.

Correct

Pulling the power cable destroys volatile evidence (RAM) that might contain the attacker's encryption keys or active connections. The correct first action depends on the situation; often isolating the network connection is better.

Movies and TV shows always show someone ripping out a plug, so people assume that is the gold standard. In reality, it is a drastic step that should only be used when there is no alternative.

Mistake

If the incident is caused by malware, you should immediately run an antivirus scan and delete the infected files.

Correct

Running a scan or deleting files before containment can alert the attacker and cause them to destroy evidence or trigger further damage. You must contain first by disconnecting the system from the network.

People treat malware like a biological virus: they want to 'cure' it immediately. But in cybersecurity, the attacker may be actively watching and can escalate the attack if they detect your actions.

Mistake

Incident response is only about technical steps; documentation and communication are optional.

Correct

Documenting every action, preserving the chain of custody, and notifying stakeholders (management, legal, possibly law enforcement) are mandatory parts of a proper response. Without documentation, you cannot prove you acted responsibly.

Beginners focus on the 'exciting' part — stopping the attack — and overlook the legal and procedural side. CISM treats incident response as a governance process, not just a technical one.

Do You Actually Know This?

Reveal each answer, then mark whether you got it right. Score 60%+ to unlock the next chapter.

Frequently Asked Questions

What is the difference between containment and eradication?

Containment stops the incident from spreading (like putting a fire door down), while eradication removes the root cause (like fixing the faulty wiring that started the fire). You must contain first.

Should I pull the power plug on an infected computer?

Only as a last resort if there is a fire or immediate physical danger. Normally, you should isolate the computer from the network instead, because pulling the plug destroys evidence in the computer's memory.

When should I notify law enforcement about a security incident?

Notify law enforcement only after you have contained the incident and preserved evidence. Always check your organisation's incident response plan and legal requirements first.

Can I skip containment and just delete the malware?

No. If you delete malware without containing the system first, the attacker could reinfect it or the malware might have already spread to other systems. Containment ensures the attack is stopped completely.

What is a 'forensic image' and why is it important?

A forensic image is an exact bit-for-bit copy of a hard drive or memory. It preserves evidence exactly as it was at the time of the incident, so investigators can analyse it later without altering the original.

What does 'chain of custody' mean in incident response?

Chain of custody is a documented record of who handled evidence, when, and what was done to it. It proves the evidence has not been tampered with, which is essential if it is used in court.

Terms Worth Knowing

Keep going

You've finished Incident Response Execution and Containment. Continue through the CISM study guide to build a complete picture of the exam.

Done with this chapter?