<?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: colin monroe</title>
    <description>The latest articles on DEV Community by colin monroe (@colin_monroe_007).</description>
    <link>https://dev.to/colin_monroe_007</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%2F4118198%2Fa886dce2-e402-44f5-a883-a86ff00846d8.png</url>
      <title>DEV Community: colin monroe</title>
      <link>https://dev.to/colin_monroe_007</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/colin_monroe_007"/>
    <language>en</language>
    <item>
      <title>What Can Sysmon Actually See? My First Dive into SIEM Detection with Sysmon and Wazuh</title>
      <dc:creator>colin monroe</dc:creator>
      <pubDate>Wed, 09 Sep 2026 21:10:29 +0000</pubDate>
      <link>https://dev.to/colin_monroe_007/what-can-sysmon-actually-see-my-first-dive-into-siem-detection-with-sysmon-and-wazuh-5h34</link>
      <guid>https://dev.to/colin_monroe_007/what-can-sysmon-actually-see-my-first-dive-into-siem-detection-with-sysmon-and-wazuh-5h34</guid>
      <description>&lt;h2&gt;
  
  
  1. Introduction
&lt;/h2&gt;

&lt;p&gt;I wanted to answer a pretty simple question: &lt;strong&gt;what can Sysmon actually see?&lt;/strong&gt; The answer, as I quickly learned, was basically, “a lot more than I expected.” My plan sounded simple enough: tune Sysmon on a Windows endpoint, generate some suspicious-looking activity, and then follow the evidence into Wazuh. Easy, right? Well... not exactly. Along the way, I learned that collecting logs is only half the battle. You also have to figure out what you're looking for, where you're supposed to look for it, and whether the logs are actually missing or you just ran your test on the wrong computer. Spoiler alert: I managed to do that last one. I'm still fairly new to cybersecurity, which is part of what made this project interesting. Before starting, I understood the basic idea behind Sysmon and SIEMs, but I had never really followed an event from the command line, into an endpoint log, and finally into a SIEM alert. That investigative side of cybersecurity is what keeps pulling me in. It feels a little like being a detective: create some activity, hunt down the evidence, and figure out what the logs are trying to tell you. Sometimes the mystery is suspicious activity. Sometimes the mystery is just, &lt;strong&gt;“Why is my event not showing up?”&lt;/strong&gt; This project gave me a much better understanding of Sysmon and Wazuh, but it also taught me something I wasn't expecting: troubleshooting your own mistakes can sometimes teach you more than when everything works perfectly the first time.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Setup
&lt;/h2&gt;

&lt;p&gt;For my modification, I decided to tune the existing Sysmon configuration on the Windows server &lt;code&gt;ad01&lt;/code&gt;. Sysmon was already installed and collecting security telemetry, so instead of installing another tool, I wanted to understand how changing the configuration could affect what Sysmon records.&lt;/p&gt;

&lt;p&gt;I started by confirming that Sysmon was running and checking its current configuration. The Sysmon executable was located at:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;C:\Windows\Sysmon64.exe&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The configuration file I worked with was:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;C:\Users\Administrator\Downloads\sysmonconfig-export.xml&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Before changing anything, I created a backup of the configuration. I also used the following command to review the active Sysmon configuration:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;C:\Windows\Sysmon64.exe -c&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;While reviewing &lt;code&gt;sysmonconfig-export.xml&lt;/code&gt;, I noticed that the &lt;code&gt;ProcessCreate&lt;/code&gt; section used an exclusion-based configuration:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;ProcessCreate onmatch="exclude"&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;One of the exclusions caught my attention:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;Image condition="is"&amp;gt;C:\Windows\system32\conhost.exe&amp;lt;/Image&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Because &lt;code&gt;conhost.exe&lt;/code&gt; was being excluded, I decided to remove that exclusion to see whether I could increase the process telemetry available to me. I documented my change directly in the XML file with the following comment:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;!-- PROJECT MODIFICATION: Removed conhost.exe ProcessCreate exclusion to enable conhost.exe telemetry --&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  A Result I Wasn't Expecting
&lt;/h3&gt;

&lt;p&gt;This modification also gave me my first troubleshooting lesson. Before making the change, I ran:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;cmd.exe /c "echo Sysmon pre-modification test"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Sysmon recorded the &lt;code&gt;cmd.exe&lt;/code&gt; Process Create event, but I did not find a new &lt;code&gt;conhost.exe&lt;/code&gt; event. I expected that removing the exclusion and repeating the test would cause &lt;code&gt;conhost.exe&lt;/code&gt; telemetry to appear.&lt;/p&gt;

&lt;p&gt;After modifying the configuration, I ran another test:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;cmd.exe /c "echo Sysmon post-modification test"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;I could still see the &lt;code&gt;cmd.exe&lt;/code&gt; activity, but there was no new &lt;code&gt;conhost.exe&lt;/code&gt; Process Create event. I checked the running processes and confirmed that several instances of &lt;code&gt;conhost.exe&lt;/code&gt; already existed, but searching the recent Sysmon Event ID 1 records still did not produce the new event I expected.&lt;/p&gt;

&lt;p&gt;This taught me to be more careful about how I interpret logging results. Sysmon Event ID 1 records process creation, so changing an exclusion does not retroactively create Process Create events for processes that were already running. My test also did not prove that a fresh &lt;code&gt;conhost.exe&lt;/code&gt; process had been created. Instead of immediately assuming Sysmon was broken, I learned to check the configuration, process state, time range, and activity that actually occurred before reaching a conclusion.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Experiment Time!
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Experiment #1: T1082 – System Information Discovery
&lt;/h3&gt;

&lt;p&gt;For my first experiment, I tested MITRE ATT&amp;amp;CK T1082 – System Information Discovery. I wanted to see what Sysmon would record when Windows commands were used to gather information about the system.&lt;/p&gt;

&lt;p&gt;I reviewed the Atomic Red Team T1082 test, which included commands such as:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;systeminfo&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;and:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;reg query HKLM\SYSTEM\CurrentControlSet\Services\Disk\Enum&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;After generating the activity on &lt;code&gt;ad01&lt;/code&gt;, I searched the Sysmon Operational log. Sysmon Event ID 1 recorded Process Create events for &lt;code&gt;systeminfo.exe&lt;/code&gt; and &lt;code&gt;reg.exe&lt;/code&gt;. The events included information such as the command line, parent process, and user that executed the commands.&lt;/p&gt;

&lt;p&gt;Finding the same activity in Wazuh was more difficult than I expected. My first searches for &lt;code&gt;systeminfo.exe&lt;/code&gt; and &lt;code&gt;reg.exe&lt;/code&gt; did not return the results I was looking for. This showed me that seeing an event locally in Sysmon does not always mean it will be easy to find in the SIEM with a simple search.&lt;/p&gt;

&lt;h3&gt;
  
  
  Experiment #2: T1057 – Process Discovery
&lt;/h3&gt;

&lt;p&gt;For my second experiment, I tested MITRE ATT&amp;amp;CK T1057 – Process Discovery. &lt;/p&gt;

&lt;p&gt;I selected an Atomic Red Team test that searches the Windows process list for &lt;code&gt;lsass.exe&lt;/code&gt;. The test uses: &lt;code&gt;tasklist | findstr lsass&lt;/code&gt; ### The Case of the Missing Logs This experiment gave me one of those troubleshooting moments that is funny after you figure it out. I ran the Atomic Red Team test, opened the Sysmon logs on &lt;code&gt;ad01&lt;/code&gt;, and started searching. Nothing. So I widened the time range. Still nothing. I changed my searches. Nothing. For a minute, I was convinced something was wrong with the logging. Then I ran one extremely advanced cybersecurity command: &lt;code&gt;hostname&lt;/code&gt; Mystery solved.&lt;/p&gt;

&lt;p&gt;I had executed the Atomic Red Team test on &lt;code&gt;student-host-windows&lt;/code&gt; and was searching for the evidence on &lt;code&gt;ad01&lt;/code&gt;. Sysmon wasn't broken. Wazuh wasn't broken. &lt;strong&gt;I was just looking at the wrong computer.&lt;/strong&gt; That mistake ended up teaching me one of the most useful lessons from the entire project: before diving into complicated troubleshooting, check the simple stuff first. Because Atomic Red Team was not installed directly on &lt;code&gt;ad01&lt;/code&gt;, I reproduced the approved test command on the monitored endpoint: &lt;code&gt;cmd.exe /c "tasklist | findstr lsass"&lt;/code&gt; &lt;/p&gt;

&lt;p&gt;The command successfully located the running &lt;code&gt;lsass.exe&lt;/code&gt; process. Sysmon Event ID 1 recorded Process Create events for both &lt;code&gt;tasklist.exe&lt;/code&gt; and &lt;code&gt;findstr.exe&lt;/code&gt;. The events also showed &lt;code&gt;cmd.exe&lt;/code&gt; as the parent process and contained the command-line information from the experiment. I then searched Wazuh. Searching for &lt;code&gt;tasklist&lt;/code&gt; and &lt;code&gt;findstr&lt;/code&gt; alone did not initially return the event, so I used: &lt;code&gt;data.win.system.providerName:"Microsoft-Windows-Sysmon"&lt;/code&gt; along with the &lt;code&gt;agent.name: ad01&lt;/code&gt; filter. This allowed me to locate the corresponding Wazuh telemetry. The event details showed &lt;code&gt;findstr.exe&lt;/code&gt;, the command &lt;code&gt;findstr lsass&lt;/code&gt;, and the parent command containing &lt;code&gt;tasklist | findstr lsass&lt;/code&gt;. In the end, I found exactly what I was looking for—I just had to make sure I was looking on the right computer first.&lt;/p&gt;

&lt;h3&gt;
  
  
  Experiment #3: T1083 – File and Directory Discovery
&lt;/h3&gt;

&lt;p&gt;For my third experiment, I tested MITRE ATT&amp;amp;CK T1083 – File and Directory Discovery. I reviewed Atomic Red Team test T1083-1, which uses Windows &lt;code&gt;dir&lt;/code&gt; and &lt;code&gt;tree&lt;/code&gt; commands to discover files and directories.&lt;/p&gt;

&lt;p&gt;The commands searched several locations on the system and redirected the results to:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;%temp%\T1083Test1.txt&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;When I generated the activity on &lt;code&gt;ad01&lt;/code&gt;, I received a &lt;code&gt;File Not Found&lt;/code&gt; message. At first, I thought the experiment might have failed. Instead of assuming it had failed completely, I checked for the output file.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;T1083Test1.txt&lt;/code&gt; had actually been created and contained file and directory information collected from the Windows system. This showed that the command sequence still produced substantial discovery output even though part of it returned an error.&lt;/p&gt;

&lt;p&gt;I then searched the Sysmon Operational log. Sysmon Event ID 1 recorded Process Create events for &lt;code&gt;cmd.exe&lt;/code&gt; and &lt;code&gt;tree.com&lt;/code&gt;. The &lt;code&gt;cmd.exe&lt;/code&gt; event contained the discovery commands and the reference to &lt;code&gt;T1083Test1.txt&lt;/code&gt;, while the &lt;code&gt;tree.com&lt;/code&gt; event showed the &lt;code&gt;tree /F&lt;/code&gt; command.&lt;/p&gt;

&lt;p&gt;Finally, I searched Wazuh using:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;data.win.system.providerName:"Microsoft-Windows-Sysmon"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;with the &lt;code&gt;agent.name: ad01&lt;/code&gt; filter.&lt;/p&gt;

&lt;p&gt;I found the corresponding telemetry in Wazuh. The document details showed &lt;code&gt;C:\Windows\System32\cmd.exe&lt;/code&gt; and the command line containing the &lt;code&gt;dir&lt;/code&gt; commands and &lt;code&gt;T1083Test1.txt&lt;/code&gt;. PowerShell was also recorded as the parent process.&lt;/p&gt;

&lt;p&gt;This was my favorite experiment because I was able to follow the activity from the command I executed, to Sysmon Event ID 1 on the endpoint, and finally into Wazuh. Seeing that entire path helped me understand how endpoint logging and a SIEM work together.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Conclusion
&lt;/h2&gt;

&lt;h3&gt;
  
  
  4.1 Summary of Experimental Findings
&lt;/h3&gt;

&lt;p&gt;My three experiments helped me understand what Sysmon can capture and how that information can appear in Wazuh. In Experiment 1, T1082 System Information Discovery generated Sysmon Event ID 1 events for &lt;code&gt;systeminfo.exe&lt;/code&gt; and &lt;code&gt;reg.exe&lt;/code&gt;. Experiment 2, T1057 Process Discovery, generated Process Create events for &lt;code&gt;tasklist.exe&lt;/code&gt; and &lt;code&gt;findstr.exe&lt;/code&gt;, and I was also able to locate the activity in Wazuh. In Experiment 3, T1083 File and Directory Discovery generated events for &lt;code&gt;cmd.exe&lt;/code&gt; and &lt;code&gt;tree.com&lt;/code&gt;, including the command line used to enumerate files and directories. I was able to follow this activity from the command executed on &lt;code&gt;ad01&lt;/code&gt;, to Sysmon, and finally into Wazuh.&lt;/p&gt;

&lt;p&gt;Overall, these experiments showed me that Sysmon provides much more than just the name of a process. Information such as command lines, parent processes, users, and hashes can provide useful context when investigating activity.&lt;/p&gt;

&lt;h3&gt;
  
  
  4.2 Advice on Avoiding Mistakes
&lt;/h3&gt;

&lt;p&gt;The biggest lesson I learned was to verify the basics before assuming something is broken. During my setup modification, I expected removing the &lt;code&gt;conhost.exe&lt;/code&gt; exclusion to produce new telemetry, but my test did not prove that a new &lt;code&gt;conhost.exe&lt;/code&gt; process had actually been created.&lt;/p&gt;

&lt;p&gt;I made a similar mistake during Experiment 2 when I ran the Atomic Red Team test on &lt;code&gt;student-host-windows&lt;/code&gt; but searched for the results on &lt;code&gt;ad01&lt;/code&gt;. Running &lt;code&gt;hostname&lt;/code&gt; helped me discover what had happened.&lt;/p&gt;

&lt;p&gt;My advice is to verify the hostname, command, timestamp, Event ID, and search filters before troubleshooting the entire logging system. Also, if a command produces an error, check the actual results before assuming the whole experiment failed. Taking a few minutes to verify these details can save a lot of troubleshooting time.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Final Thoughts
&lt;/h2&gt;

&lt;h3&gt;
  
  
  5.1 The Coolest Thing I Learned
&lt;/h3&gt;

&lt;p&gt;The coolest thing I learned during this project was how I could follow one action through different layers of security monitoring. Before this project, I understood the basic idea that Sysmon collects Windows activity and a SIEM collects logs, but actually seeing that happen made it much easier to understand.&lt;/p&gt;

&lt;p&gt;My favorite example was the T1083 File and Directory Discovery experiment. I executed the discovery activity on &lt;code&gt;ad01&lt;/code&gt;, found the Process Create activity in Sysmon Event ID 1, and then found the same command-line information inside Wazuh. Seeing &lt;code&gt;cmd.exe&lt;/code&gt;, its parent process, and the discovery command show up in the SIEM made the whole process feel less abstract.&lt;/p&gt;

&lt;p&gt;I also learned that logs provide much more context than I originally realized. Details like command lines, parent processes, users, timestamps, and hashes can help tell the story of what happened on a system.&lt;/p&gt;

&lt;h3&gt;
  
  
  5.2 One Piece of Advice
&lt;/h3&gt;

&lt;p&gt;My biggest piece of advice to someone new to this type of project is to document everything as you go and always verify the basics before assuming something is broken.&lt;/p&gt;

&lt;p&gt;I learned this the hard way when I ran an Atomic Red Team test on &lt;code&gt;student-host-windows&lt;/code&gt; but searched for the activity on &lt;code&gt;ad01&lt;/code&gt;. I spent time changing searches and increasing the time range before realizing I was simply looking at the wrong computer.&lt;/p&gt;

&lt;p&gt;Commands like &lt;code&gt;hostname&lt;/code&gt; might seem basic, but they can save a lot of troubleshooting time. I would also recommend recording the exact command you ran, the time you ran it, the endpoint, the expected Event ID, and the search filters you used. Those details make it much easier to work backward when something does not appear where you expect it.&lt;/p&gt;

&lt;h3&gt;
  
  
  5.3 My Favorite Resource
&lt;/h3&gt;

&lt;p&gt;My favorite external resource during this project was Red Canary's Atomic Red Team. I discovered it through the project material while looking for ways to generate activity that I could investigate with Sysmon and Wazuh.&lt;/p&gt;

&lt;p&gt;Atomic Red Team was especially useful because its tests are mapped to MITRE ATT&amp;amp;CK techniques. Instead of randomly running commands and hoping something interesting appeared in the logs, I could choose a specific technique, review what the test would do, generate the activity, and then investigate the results.&lt;/p&gt;

&lt;p&gt;I used Atomic Red Team while working with T1082 System Information Discovery, T1057 Process Discovery, and T1083 File and Directory Discovery. It gave my experiments a clear purpose and helped connect what I was seeing in Sysmon and Wazuh with techniques used in cybersecurity. I can see myself using this resource again as I continue learning detection and security monitoring.&lt;/p&gt;

&lt;h3&gt;
  
  
  5.4 Thank You (Gratitudes)!
&lt;/h3&gt;

&lt;p&gt;I want to thank Mark Russinovich and Thomas Garnier for their work on Sysmon and its documentation. Sysmon was at the center of this project, and the documentation helped me understand what the different events contained and how process activity could be investigated.&lt;/p&gt;

&lt;p&gt;I also want to thank Carrie Roberts and the Atomic Red Team community for their work maintaining Atomic Red Team and its learning resources. Atomic Red Team gave me a practical way to generate activity instead of only reading about MITRE ATT&amp;amp;CK techniques. Being able to run a test and then search for the evidence made these concepts much easier for me to understand.&lt;/p&gt;

&lt;p&gt;Projects and documentation like these are especially helpful for someone new to cybersecurity because they make it possible to learn by actually experimenting instead of only reading theory.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. References
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Sysmon v15.21
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Authors:&lt;/strong&gt; Mark Russinovich and Thomas Garnier&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Affiliation:&lt;/strong&gt; Microsoft Sysinternals&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Published:&lt;/strong&gt; June 17, 2026&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Resource:&lt;/strong&gt; &lt;a href="https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon" rel="noopener noreferrer"&gt;Sysmon - Sysinternals | Microsoft Learn&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This resource helped me understand how Sysmon monitors Windows activity and what information is recorded by different Sysmon Event IDs. I used it during my configuration modification and when investigating Process Create events during my experiments.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Atomic Red Team
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Author/Organization:&lt;/strong&gt; Red Canary&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Affiliation:&lt;/strong&gt; Red Canary&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Published:&lt;/strong&gt; No publication date listed&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Resource:&lt;/strong&gt; &lt;a href="https://github.com/redcanaryco/atomic-red-team" rel="noopener noreferrer"&gt;Atomic Red Team&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Atomic Red Team was one of the most useful resources in my project because it provides reproducible tests mapped to MITRE ATT&amp;amp;CK techniques. I used its tests as the basis for generating T1082, T1057, and T1083 discovery activity that I could investigate with Sysmon and Wazuh.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. T1082 – System Information Discovery
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Author/Organization:&lt;/strong&gt; MITRE ATT&amp;amp;CK&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Affiliation:&lt;/strong&gt; The MITRE Corporation&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Last Modified:&lt;/strong&gt; May 12, 2026&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Resource:&lt;/strong&gt; &lt;a href="https://attack.mitre.org/techniques/T1082/" rel="noopener noreferrer"&gt;T1082 – System Information Discovery&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This resource helped me understand what System Information Discovery means and why an attacker may collect operating system and hardware information. I used T1082 as the basis for my first experiment involving &lt;code&gt;systeminfo&lt;/code&gt; and registry queries.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. T1057 – Process Discovery
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Author/Organization:&lt;/strong&gt; MITRE ATT&amp;amp;CK&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Affiliation:&lt;/strong&gt; The MITRE Corporation&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Last Modified:&lt;/strong&gt; May 12, 2026&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Resource:&lt;/strong&gt; &lt;a href="https://attack.mitre.org/techniques/T1057/" rel="noopener noreferrer"&gt;T1057 – Process Discovery&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This resource helped me understand how attackers can discover processes running on a system. I used T1057 for my second experiment, where I generated &lt;code&gt;tasklist&lt;/code&gt; and &lt;code&gt;findstr&lt;/code&gt; activity and investigated the resulting telemetry in Sysmon and Wazuh.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. T1083 – File and Directory Discovery
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Author/Organization:&lt;/strong&gt; MITRE ATT&amp;amp;CK&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Affiliation:&lt;/strong&gt; The MITRE Corporation&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Last Modified:&lt;/strong&gt; May 12, 2026&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Resource:&lt;/strong&gt; &lt;a href="https://attack.mitre.org/techniques/T1083/" rel="noopener noreferrer"&gt;T1083 – File and Directory Discovery&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This resource helped me understand how file and directory enumeration fits into the Discovery tactic. I used T1083 for my third experiment, where &lt;code&gt;dir&lt;/code&gt; and &lt;code&gt;tree&lt;/code&gt; commands generated activity that I investigated locally with Sysmon and then in Wazuh.&lt;/p&gt;

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