<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Samuel Kolade</title>
    <description>The latest articles on DEV Community by Samuel Kolade (@samuel_kolade).</description>
    <link>https://dev.to/samuel_kolade</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4084117%2Fd9ecf6cb-8c86-4be6-9840-33cd602115d3.jpg</url>
      <title>DEV Community: Samuel Kolade</title>
      <link>https://dev.to/samuel_kolade</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/samuel_kolade"/>
    <language>en</language>
    <item>
      <title>Building a SOC Home Lab: Ingesting Windows &amp; Sysmon Logs into Splunk</title>
      <dc:creator>Samuel Kolade</dc:creator>
      <pubDate>Fri, 21 Aug 2026 09:23:44 +0000</pubDate>
      <link>https://dev.to/samuel_kolade/building-a-soc-home-lab-ingesting-windows-sysmon-logs-into-splunk-ej9</link>
      <guid>https://dev.to/samuel_kolade/building-a-soc-home-lab-ingesting-windows-sysmon-logs-into-splunk-ej9</guid>
      <description>&lt;p&gt;Building a SOC lab is more useful when the components are actually configured, tested, and troubleshot rather than simply installed.&lt;/p&gt;

&lt;p&gt;For this stage of the lab, I set up a small virtualized environment in VMware Workstation: a Windows 11 endpoint feeding telemetry into Splunk Enterprise running on Xubuntu, with Sysmon added on top for more useful endpoint data. Along the way, the Universal Forwarder ran into a configuration problem that traced back to something as small as a file extension. Chasing it down taught me more about how the pipeline actually fits together than the install itself did.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Lab Architecture
&lt;/h2&gt;

&lt;p&gt;The lab currently runs on two VMs.&lt;/p&gt;

&lt;h3&gt;
  
  
  SIEM
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Xubuntu&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hostname: &lt;code&gt;soc-siem&lt;/code&gt;&lt;br&gt;
IP address: &lt;code&gt;192.168.242.128&lt;/code&gt;&lt;br&gt;
Role: Splunk Enterprise&lt;/p&gt;

&lt;p&gt;Splunk Enterprise listens for forwarded data on TCP &lt;code&gt;9997&lt;/code&gt;.&lt;/p&gt;
&lt;h3&gt;
  
  
  Endpoint
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Windows 11&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hostname: &lt;code&gt;WIN11-TARGET&lt;/code&gt;&lt;br&gt;
IP address: &lt;code&gt;192.168.242.129&lt;/code&gt;&lt;br&gt;
Role: Windows endpoint&lt;/p&gt;

&lt;p&gt;This VM runs the Splunk Universal Forwarder and Sysmon. The Forwarder picks up selected Windows Event Log channels and ships them to the SIEM.&lt;/p&gt;
&lt;h3&gt;
  
  
  Architecture
&lt;/h3&gt;

&lt;p&gt;I mapped the actual data flow in draw.io rather than reusing a generic SOC diagram. It only has two boxes right now, but I wanted the diagram to represent the lab as it exists, not as it will eventually look.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fawiv2l3l00s0dvedtnrx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fawiv2l3l00s0dvedtnrx.png" alt="Architecture diagram showing a Windows 11 endpoint forwarding Windows Event Logs and Sysmon telemetry through the Splunk Universal Forwarder over TCP 9997 to a Splunk Enterprise instance on Xubuntu" width="800" height="520"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sysmon runs alongside the standard Windows Event Log channels on the endpoint, and the Forwarder collects from both.&lt;/p&gt;
&lt;h2&gt;
  
  
  2. Installing the Splunk Universal Forwarder
&lt;/h2&gt;

&lt;p&gt;Installing the Forwarder on the Windows 11 endpoint was the easy part. During setup, I pointed it at the SIEM directly:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;192.168.242.128
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;with the receiving port:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;9997
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;At this point I hadn't actually verified the network path. I'd just assumed that because the installer accepted the IP and port without complaint, the connection would work. That assumption turned out to be correct, but it's worth calling out because it's exactly the kind of thing you shouldn't take on faith once something isn't working later.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Configuring Windows Event Log Inputs
&lt;/h2&gt;

&lt;p&gt;Installing the Forwarder doesn't mean anything gets collected until you tell it what to watch. That's handled through &lt;code&gt;inputs.conf&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;On the endpoint, I opened Notepad as Administrator and edited:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;C:\Program Files\SplunkUniversalForwarder\etc\system\local\inputs.conf
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;with these inputs:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ini"&gt;&lt;code&gt;&lt;span class="nn"&gt;[WinEventLog://Application]&lt;/span&gt;
&lt;span class="py"&gt;disabled&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;0&lt;/span&gt;

&lt;span class="nn"&gt;[WinEventLog://Security]&lt;/span&gt;
&lt;span class="py"&gt;disabled&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;0&lt;/span&gt;

&lt;span class="nn"&gt;[WinEventLog://System]&lt;/span&gt;
&lt;span class="py"&gt;disabled&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;0&lt;/span&gt;

&lt;span class="nn"&gt;[WinEventLog://Microsoft-Windows-PowerShell/Operational]&lt;/span&gt;
&lt;span class="py"&gt;disabled&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;0&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2heip3xq0f04k2s2txmy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2heip3xq0f04k2s2txmy.png" alt="Notepad window showing the contents of inputs.conf with four Windows Event Log channels enabled: Application, Security, System, and Microsoft-Windows-PowerShell/Operational" width="799" height="421"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I saved the file, restarted the Forwarder service, and moved on, expecting to see events in Splunk shortly after.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Troubleshooting the inputs.conf.txt Problem
&lt;/h2&gt;

&lt;p&gt;I didn't see anything. No Application logs, no Security logs, nothing.&lt;/p&gt;

&lt;p&gt;My first instinct was to assume the whole setup was broken somewhere. Maybe the Forwarder wasn't actually pointed at the right indexer, maybe the receiving port wasn't open on the Xubuntu side. Rather than start changing settings at random, I worked backward through the pipeline one layer at a time.&lt;/p&gt;

&lt;h3&gt;
  
  
  Checking the network first
&lt;/h3&gt;

&lt;p&gt;Before touching any Splunk configuration, I wanted to rule out the network entirely. From an elevated PowerShell session on Windows:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight powershell"&gt;&lt;code&gt;&lt;span class="n"&gt;Test-NetConnection&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;-ComputerName&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;192.168.242.128&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;-Port&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;9997&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;TcpTestSucceeded : True
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdjx584e00nwertk3m9de.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdjx584e00nwertk3m9de.png" alt="PowerShell window running Test-NetConnection against 192.168.242.128 on port 9997, with output showing TcpTestSucceeded: True" width="792" height="260"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The connection was fine. Whatever was wrong, it wasn't the network, so I stopped looking there and turned to the endpoint's own configuration.&lt;/p&gt;

&lt;h3&gt;
  
  
  Finding the actual problem
&lt;/h3&gt;

&lt;p&gt;I listed the contents of the Forwarder's local config directory:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight powershell"&gt;&lt;code&gt;&lt;span class="n"&gt;Get-ChildItem&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"C:\Program Files\SplunkUniversalForwarder\etc\system\local"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3lz3ucdzgf46or8ldgzy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3lz3ucdzgf46or8ldgzy.png" alt="Windows File Explorer showing the SplunkUniversalForwarder local configuration directory, with inputs.conf.txt visible instead of the expected inputs.conf" width="800" height="255"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There was no &lt;code&gt;inputs.conf&lt;/code&gt;. Instead there was &lt;code&gt;inputs.conf.txt&lt;/code&gt; (Notepad had quietly appended the extension when I saved), and, on top of that, a directory named &lt;code&gt;inputs.conf&lt;/code&gt; that had gotten created at some point, presumably from an earlier attempt where something tried to write to a path that didn't exist yet. Splunk had never actually been reading the file I thought I'd configured.&lt;/p&gt;

&lt;p&gt;It's a small mistake, but it's the kind that's easy to miss precisely because the file &lt;em&gt;looks&lt;/em&gt; right in the editor. Nothing about the content was wrong. The name was.&lt;/p&gt;

&lt;h3&gt;
  
  
  Fixing it
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight powershell"&gt;&lt;code&gt;&lt;span class="n"&gt;Remove-Item&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"C:\Program Files\SplunkUniversalForwarder\etc\system\local\inputs.conf"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;-Recurse&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;-Force&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="n"&gt;Rename-Item&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"C:\Program Files\SplunkUniversalForwarder\etc\system\local\inputs.conf.txt"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"inputs.conf"&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="n"&gt;Restart-Service&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;SplunkForwarder&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4e7p5r64gi60ffrhaks1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4e7p5r64gi60ffrhaks1.png" alt="PowerShell window showing the inputs.conf.txt file renamed to inputs.conf and the SplunkForwarder service being restarted with Restart-Service" width="703" height="423"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Removed the stray directory, renamed the real config file into place, restarted the service. The fix itself took seconds. Finding it was the actual work.&lt;/p&gt;

&lt;p&gt;What stuck with me from this wasn't the rename. It was the order I worked in: check the network before assuming the SIEM is broken, check the endpoint's local config before assuming Splunk itself is misbehaving. Isolating layers instead of guessing is the difference between a five-minute fix and an afternoon of randomly changing settings.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Verifying Windows Event Log Ingestion
&lt;/h2&gt;

&lt;p&gt;With the correct &lt;code&gt;inputs.conf&lt;/code&gt; in place, I generated some activity on the endpoint and went back to Splunk Web on the Xubuntu VM to check.&lt;/p&gt;

&lt;p&gt;In &lt;strong&gt;Search &amp;amp; Reporting&lt;/strong&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;index=*
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Windows Event Log data was there.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmvusq5sq27zq0ixp14ro.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmvusq5sq27zq0ixp14ro.png" alt="Splunk Search &amp;amp; Reporting on Xubuntu showing Windows Event Log data returned by an index=* search after correcting the inputs.conf issue" width="800" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Pipeline confirmed, end to end:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Windows Event Logs
       ↓
Splunk Universal Forwarder
       ↓
TCP 9997
       ↓
Splunk Enterprise
       ↓
Splunk Search
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  6. Expanding Endpoint Telemetry with Sysmon
&lt;/h2&gt;

&lt;p&gt;Standard Windows Event Logs get you a baseline, but they're limited for anything resembling real investigation work. Sysmon fills that gap: process creation, network connections, and more, depending on the config in use.&lt;/p&gt;

&lt;p&gt;I added the Sysmon Operational channel to &lt;code&gt;inputs.conf&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ini"&gt;&lt;code&gt;&lt;span class="nn"&gt;[WinEventLog://Microsoft-Windows-Sysmon/Operational]&lt;/span&gt;
&lt;span class="py"&gt;disabled&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;0&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Restarted the Forwarder:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight powershell"&gt;&lt;code&gt;&lt;span class="n"&gt;Restart-Service&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;SplunkForwarder&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Generated some activity, checked Splunk again.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9vk38i1s5cwd948r7lqv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9vk38i1s5cwd948r7lqv.png" alt="Splunk Search &amp;amp; Reporting on Xubuntu showing Sysmon event data, including process creation events, from the WIN11-TARGET endpoint" width="800" height="430"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sysmon Event ID 1 alone (process creation) already gives a lot more to work with than a generic Windows log entry. It's the difference between knowing &lt;em&gt;something&lt;/em&gt; happened and knowing &lt;em&gt;what process&lt;/em&gt; did it, &lt;em&gt;when&lt;/em&gt;, and &lt;em&gt;from where&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  7. What I Took Away From This
&lt;/h2&gt;

&lt;p&gt;The setup itself wasn't hard. The useful part was everything around the mistake.&lt;/p&gt;

&lt;p&gt;Configs can look correct and still be wrong. &lt;code&gt;inputs.conf&lt;/code&gt; became &lt;code&gt;inputs.conf.txt&lt;/code&gt; without any error, warning, or indication that something had gone sideways. The file looked fine in Notepad. It just wasn't the file Splunk was reading. That's a cheap lesson to learn on a home lab and a much more expensive one to learn on the job.&lt;/p&gt;

&lt;p&gt;Isolating the failure mattered more than fixing it. Checking network reachability before touching Splunk's config saved me from chasing the wrong problem. If &lt;code&gt;Test-NetConnection&lt;/code&gt; had failed, I'd have known immediately the issue was on the SIEM side or somewhere in between, not in a config file.&lt;/p&gt;

&lt;p&gt;And more logs isn't the same as more capability. Sysmon gives me a lot more raw material to work with, but a pile of events sitting in an index doesn't do anything on its own. That's the next problem to solve, not this one.&lt;/p&gt;

&lt;h2&gt;
  
  
  8. Current Lab State
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;SIEM&lt;/strong&gt;&lt;br&gt;
Xubuntu, Splunk Enterprise, receiving on TCP &lt;code&gt;9997&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Endpoint&lt;/strong&gt;&lt;br&gt;
Windows 11, Splunk Universal Forwarder, Windows Event Logs + Sysmon&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Telemetry flow&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Windows 11 -- Windows Event Logs -- Sysmon -- Splunk Universal Forwarder -- TCP 9997 -- Splunk Enterprise (Splunk Search &amp;amp; Reporting)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The pipeline works. Right now it's collecting logs, not doing anything with them. That's the actual gap to close next.&lt;/p&gt;

&lt;h2&gt;
  
  
  Next Steps
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Build SPL searches against the Windows and Sysmon data actually sitting in the index.&lt;/li&gt;
&lt;li&gt;Turn some of those searches into detections instead of one-off queries.&lt;/li&gt;
&lt;li&gt;Put together dashboards for endpoint activity.&lt;/li&gt;
&lt;li&gt;Bring Kali Linux into the lab as a controlled attack source.&lt;/li&gt;
&lt;li&gt;Generate activity against the Windows endpoint and see what it actually looks like in Splunk.&lt;/li&gt;
&lt;li&gt;Use that telemetry to investigate, not just observe.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Right now this is a working log pipeline. The next few articles are about turning it into something that behaves more like a SOC.&lt;/p&gt;

</description>
      <category>cybersecurity</category>
    </item>
  </channel>
</rss>
