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.
All containment actions are fully and accurately documented and accessible to authorized personnel for follow-up actions.
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.
Examples of host-level containment actions to document:
Examples of network containment actions:
abcxyz.bad
Examples of identity containment actions:
jsmith
due to confirmed credential compromisehrapp
service account temporarily$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.
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 |
NIST SP 800-61 Rev. 2 - Computer Security Incident Handling Guide
US-CERT Incident Handling Guidelines
Date | Version | Description | Author |
---|---|---|---|
2025-05-02 | 1.0 | Fully generated operator guide for documenting containment actions with format, checklist, and best practices | Leo |