Evidence Collection During Initial Response
Evidence Collection During Initial Response
Proper evidence collection during initial response supports both immediate remediation and potential legal action:
Volatile Data Collection Priority:
- Network connections and ports
- Running processes and services
- Logged-in users
- Open files and registry handles
- System memory
- Temporary files
Collection Tools and Commands:
Windows:
netstat -anob > connections.txt
tasklist /v > processes.txt
wmic process list full > detailed_processes.txt
Linux:
netstat -plant > connections.txt
ps auxfww > processes.txt
lsof -n > open_files.txt