IncidentResponsev2

Document Containment Actions

Task Document All Containment Actions Taken During Incident Response

Conditions

Given access to incident response records, the operator will ensure all containment actions are documented in detail. Documentation should reflect who performed the action, when it occurred, what was done, and why it was necessary.

Operator Note: Accurate documentation of containment activities is critical for post-incident analysis, lessons learned, recovery coordination, and legal or regulatory reporting requirements.

Standards

End State

All containment actions are fully and accurately documented and accessible to authorized personnel for follow-up actions.


Notes


Manual Steps

Step 1: Define the Documentation Format (Preferred Template)

Date/Time Operator Action Taken Host/System Justification Approval (If Required)
2025-05-02 09:13 L. Jones Disabled malicious service “strsvc1” Workstation-014 Service identified running from AppData, persistence attempt Approved by IR Lead

Operator Note: Use this format to track every action taken during containment.


Step 2: Record Host-Based Actions

Examples of host-level containment actions to document:


Step 3: Record Network-Level Actions

Examples of network containment actions:


Step 4: Record Account and Identity Actions

Examples of identity containment actions:


Step 5: Record Validation and Review


Running Script (Windows Example to Export Containment Log)

$containmentLog = @()

$containmentLog += [PSCustomObject]@{
    DateTime = Get-Date
    Operator = "Leo"
    Action = "Disabled suspicious service strsvc1"
    Host = "Workstation-014"
    Justification = "AppData execution path - possible persistence"
    Approval = "IR Lead"
}

$containmentLog | Export-Csv -Path .\ContainmentLog.csv -NoTypeInformation

Operator Note: Customize and use PowerShell to automate log capture if preferred.


Dependencies


Other Available Tools

Tool Platform Use Case
Markdown (.md) or Text files Cross-platform Quick and portable log format
Ticketing Systems (Jira, ServiceNow) Enterprise Official incident recordkeeping
SharePoint / OneDrive Enterprise Shared team documentation
OneNote / Word Cross-platform IR team notes and logbooks
PowerShell Export / Scripts Windows Automated log creation

Operator Recommendations and Additional Tools

Operator Checklist

Best Practices


References

NIST SP 800-61 Rev. 2 - Computer Security Incident Handling Guide
US-CERT Incident Handling Guidelines


Revision History

Date Version Description Author
2025-05-02 1.0 Fully generated operator guide for documenting containment actions with format, checklist, and best practices Leo