Digital Evidence Collection for Host-Based Analysis
SOC analysts and forensic investigators work with different types of digital evidence when investigating host-based incidents.
Running processes, network connections, encryption keys, malware in memory. Lost when power is removed.
File systems, deleted files, slack space, registry hives, logs. Persists without power.
Windows Event Logs, application logs, security logs, web server logs.
Packet captures (PCAP), NetFlow data, DNS queries, connection logs.
Windows configuration, user activity, installed software, persistence mechanisms.
File MACB times (Modified, Accessed, Changed, Born), event timestamps.
Full incident response lifecycle, forensic phases, and volatility order.
When collecting evidence, always collect the most volatile data first. Once lost, it cannot be recovered.
| Evidence Type | Tool | Command/Notes |
|---|---|---|
| Memory Dump | WinPmem / DumpIt | winpmem_mini.exe memdump.raw |
| Memory Analysis | Volatility | vol.py -f memdump.raw --profile=Win10 pslist |
| Disk Image | FTK Imager / dd | dcfldd if=/dev/sda of=disk.dd hash=sha256 |
| Network Capture | Wireshark / tcpdump | tcpdump -i eth0 -w capture.pcap |
| Registry | RegRipper | rip.pl -r NTUSER.DAT -p all |
| Event Logs | wevtutil / Log Parser | wevtutil epl Security security.evtx |
Test your understanding. You need 80% (4/5) to pass.