
Lab Setup & Telemetry Guide — Sysmon + Chainsaw + Sigma
Goal: A reproducible DFIR lab pipeline: Sysmon emits clean telemetry → Chainsaw hunts EVTX with Sigma → JSON detections flow into ForenSynth AI. 1) Lab Topology (Minimal Viable Setup) Host: Your workstation (analysis + Git operations) Windows 10/11 VM (Target): Generates events, runs Sysmon (Optional) Kali/Ubuntu VM: Auxiliary analysis tools Network: Host-only or NAT. Keep the Windows VM reachable via shared folders for exporting EVTX. 2) Sysmon Installation (SwiftOnSecurity config) Copy Sysmon64.exe and the SwiftOnSecurity config (e.g., sysmonconfig-export.xml) to the Windows VM. Install: Sysmon64.exe -accepteula -i sysmonconfig-export.xml Verify service: Get-Service Sysmon64 Confirm logs are flowing: Windows Event Viewer → Applications and Services Logs → Microsoft → Windows → Sysmon → Operational You should see Event IDs like 1 (Process Creation), 3 (Network), 7 (Image Load), 10 (Process Access), 11 (File Create). Tip: Keep a copy of the exact Sysmon XML you used in your repo for reproducibility. ...