During a security incident, an organization's Security Operations Center (SOC) identifies a compromised containerized application actively scanning internal microservices for vulnerabilities. Place the following incident response actions in the correct sequential order from FIRST to LAST according to standard incident handling frameworks.
- 1Isolate the compromised container by applying microsegmentation network policies to block outbound traffic to internal services.
- 2Capture volatile memory artifacts and container runtime logs while preserving chain of custody.
- 3Terminate the compromised container instance and redeploy the microservice using a clean, verified image from a secure registry.
- 4Restore normal production routing to the microservice while actively monitoring network telemetry for anomalous activity.
- 5Conduct a post-mortem review with the DevOps team to update container security controls and CI/CD pipeline scanning rules.
Answer
The correct order of incident response actions is: 1) Isolate the compromised container using microsegmentation network policies; 2) Capture volatile memory artifacts and container runtime logs; 3) Terminate the compromised container instance and redeploy from a verified clean image; 4) Restore normal production routing while monitoring network telemetry; 5) Conduct a post-mortem review to update container security controls.
Standard incident handling frameworks (such as NIST SP 800-61) follow a strict lifecycle order: Containment (isolating network traffic) occurs first to stop active damage; Evidence Preservation collects volatile forensic artifacts before system modification; Eradication removes the root cause by destroying the compromised instance and deploying a trusted build; Recovery restores production operations under enhanced monitoring; Post-incident Activity reviews performance and updates playbooks to enhance future resiliency.
Step-by-Step Solution
Key Concept
NIST Incident Response Lifecycle (Containment, Evidence Preservation, Eradication, Recovery, Lessons Learned)