Simulate basic endpoint detection by monitoring process execution using Sysmon logs and analyzing them in Splunk. Focused on process-level monitoring and basic threat detection.
- Windows 11 (Endpoint)
- Sysmon for process logging (Event ID 1 – Process Creation)
- Splunk Universal Forwarder (log forwarding)
- Splunk Enterprise (analysis)
-
Monitored Sysmon Event ID 1 (Process Creation)
-
Focus on:
cmd.exepowershell.exe
-
Extracted:
- Process path (Image)
- CommandLine
- Parent process
- User
index=main EventCode=1 earliest=-24h
(Image="*\\cmd.exe" OR Image="*\\powershell.exe")
| table _time ComputerName Image CommandLine ParentImage User
index=main EventCode=1 earliest=-24h
(Image="*\\cmd.exe" OR Image="*\\powershell.exe")
| timechart count by Image
- Successfully ingested Sysmon logs into Splunk
- Detected and analyzed command-line activity
- Visualized process execution trends over time



