Timeline Reconstruction

Timeline Reconstruction

Network evidence helps build accurate incident timelines:

Correlation Process:

  1. Normalize timestamps across sources
  2. Identify initial compromise indicators
  3. Track lateral movement
  4. Map data access and exfiltration
  5. Identify persistence mechanisms
  6. Document cleanup attempts

Timeline Integration:

# Combine multiple evidence sources
cat firewall.log | awk '{print $1, $2, "FW:", $0}' > timeline.txt
tshark -r capture.pcap -T fields -e frame.time -e ip.src -e ip.dst >> timeline.txt
sort timeline.txt > sorted_timeline.txt