<?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: Akindele Fasuba</title>
    <description>The latest articles on DEV Community by Akindele Fasuba (@jfash007).</description>
    <link>https://dev.to/jfash007</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%2F4051669%2F5b51c7c0-569a-472e-a6d0-e2260754ab22.jpg</url>
      <title>DEV Community: Akindele Fasuba</title>
      <link>https://dev.to/jfash007</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jfash007"/>
    <language>en</language>
    <item>
      <title>Deploying and Validating a Wazuh SIEM with Atomic Red Team</title>
      <dc:creator>Akindele Fasuba</dc:creator>
      <pubDate>Tue, 28 Jul 2026 15:44:26 +0000</pubDate>
      <link>https://dev.to/jfash007/deploying-and-validating-a-wazuh-siem-with-atomic-red-team-26i4</link>
      <guid>https://dev.to/jfash007/deploying-and-validating-a-wazuh-siem-with-atomic-red-team-26i4</guid>
      <description>&lt;p&gt;1.1 Teaser Overview&lt;/p&gt;

&lt;p&gt;Security monitoring is only effective when the right telemetry is collected and meaningful alerts are generated. In this project, I deployed and enhanced an open-source Wazuh SIEM environment by enabling additional Windows Defender Operational log collection and validating the configuration using Atomic Red Team techniques mapped to the MITRE ATT&amp;amp;CK framework. I performed experiments covering Scheduled Task Persistence (T1053.005) and Ingress Tool Transfer (T1105) to evaluate how well the SIEM detected simulated attacker behavior. While the Atomic Red Team techniques executed successfully, only some activities generated corresponding Wazuh detections, highlighting opportunities to improve the default detection rules. This blog documents my implementation process, the experiments I performed, the results I observed, and the lessons I learned while improving endpoint visibility.&lt;/p&gt;

&lt;h1&gt;
  
  
  1.2 Introducing Yourself to the Cyber Community
&lt;/h1&gt;

&lt;p&gt;Hello! My name is Akindele Fasuba, and I am currently developing my cybersecurity skills with a focus on blue-team operations, SIEM engineering, and threat detection. I enjoy learning by working through realistic lab environments that simulate real-world security operations. This project gave me valuable experience deploying a SIEM, collecting Windows event logs, and validating detections using Atomic Red Team. My goal is to continue developing practical blue-team skills and share what I learn with others who are beginning their own cybersecurity journey. I hope this write-up provides useful insight into deploying, testing, and improving a SIEM environment.&lt;/p&gt;




&lt;h1&gt;
  
  
  2.1 Deployment Environment
&lt;/h1&gt;

&lt;p&gt;This project was completed using the TripleTen CloudShare lab environment, which included a Wazuh manager, an Active Directory domain controller (AD01), an Observer Linux server, and an Atomic Red Team workstation. The Wazuh manager collected and analyzed security telemetry from the Windows endpoint, while Atomic Red Team simulated attacker techniques based on the MITRE ATT&amp;amp;CK framework. This environment provided a realistic platform for validating Windows event collection and SIEM detections.&lt;/p&gt;

&lt;h1&gt;
  
  
  2.2 SIEM Modification
&lt;/h1&gt;

&lt;p&gt;To improve endpoint visibility, I modified the Wazuh agent configuration on AD01 to collect events from the Microsoft-Windows-Windows Defender/Operational event log in addition to the default Windows event channels. This required editing the &lt;code&gt;ossec.conf&lt;/code&gt; configuration file to add the Defender Operational log as an additional event source before restarting the Wazuh agent service.&lt;/p&gt;

&lt;p&gt;After restarting the service, I confirmed that Windows Defender Operational events were successfully forwarded to the Wazuh manager and appeared in the Threat Hunting interface. Adding this telemetry expanded endpoint visibility and provided additional security context for the Atomic Red Team simulations.&lt;/p&gt;

&lt;h1&gt;
  
  
  2.3 Environment Validation
&lt;/h1&gt;

&lt;p&gt;Before executing the Atomic Red Team techniques, I verified that the deployment was operating correctly by confirming that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The Wazuh agent was connected and reporting to the Wazuh manager.&lt;/li&gt;
&lt;li&gt;Windows Defender Operational events were successfully collected.&lt;/li&gt;
&lt;li&gt;AD01 events appeared in the Wazuh Threat Hunting dashboard.&lt;/li&gt;
&lt;li&gt;The environment was ready to receive alerts generated during the simulated attack scenarios.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Completing these validation steps established a reliable baseline, ensuring that any alerts or missing detections observed during the experiments reflected the effectiveness of the SIEM configuration rather than deployment issues.&lt;/p&gt;




&lt;h1&gt;
  
  
  Experiment #1
&lt;/h1&gt;

&lt;p&gt;The first experiment focused on MITRE ATT&amp;amp;CK T1053.005 – Scheduled Task/Job: Scheduled Task. The objective was to validate whether Wazuh could detect persistence techniques involving the creation of scheduled tasks on a Windows endpoint. I executed the Atomic Red Team test using PowerShell with the command &lt;code&gt;Invoke-AtomicTest T1053.005&lt;/code&gt;, which created several scheduled tasks designed to simulate &lt;strong&gt;an attacker establishing persistence on a Windows system&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;During the test, Windows successfully created the scheduled tasks and Wazuh collected the resulting security events from the domain controller. The generated telemetry demonstrated that the SIEM successfully received Windows Event Log data and recorded activity associated with scheduled task creation. This confirmed that the Defender Operational logging modification and Windows event collection were functioning correctly.&lt;/p&gt;

&lt;p&gt;This experiment demonstrated how attackers can establish persistence through scheduled tasks while also confirming that the SIEM was capable of collecting and presenting relevant evidence for further investigation. It also reinforced the importance of validating detections after making configuration changes rather than assuming monitoring was working as expected.&lt;/p&gt;

&lt;h1&gt;
  
  
  Experiment #2
&lt;/h1&gt;

&lt;p&gt;The second experiment tested MITRE ATT&amp;amp;CK T1105 – Ingress Tool Transfer. The goal was to simulate an attacker downloading tools onto a compromised system and determine whether Wazuh generated alerts for the activity. I executed the Atomic Red Team test using &lt;code&gt;Invoke-AtomicTest T1105&lt;/code&gt;, which performed several download techniques using native Windows utilities.&lt;/p&gt;

&lt;p&gt;The Atomic Red Team framework successfully executed multiple download methods, including PowerShell, BITS, &lt;strong&gt;CertUtil.exe&lt;/strong&gt;, and SCP-based transfers. While the activity completed successfully, Wazuh did not generate alerts specifically mapped to technique T1105. Instead, supporting events such as file creation and command execution were recorded, demonstrating that telemetry was present even though a dedicated detection rule was not triggered.&lt;/p&gt;

&lt;p&gt;This experiment highlighted an important lesson in defensive operations: the absence of an alert does not necessarily mean the activity was invisible. Analysts should review multiple data sources and understand the limitations of default detection rules when evaluating SIEM coverage.&lt;/p&gt;

&lt;h1&gt;
  
  
  Experiment #3
&lt;/h1&gt;

&lt;p&gt;One of the most valuable learning experiences during this project occurred while validating the SIEM configuration rather than during an attack simulation. After completing the Atomic Red Team tests, I initially expected Wazuh to generate alerts that explicitly referenced the MITRE ATT&amp;amp;CK technique IDs. Instead, I observed different rule IDs or no matching alerts for some techniques, which led me to believe the configuration might be incorrect.&lt;/p&gt;

&lt;p&gt;After reviewing the collected logs more carefully, I discovered that Wazuh successfully collected telemetry, but the default detection rules did not always map directly to every Atomic Red Team technique. Some attacks generated supporting events, such as file creation or command execution, instead of technique-specific alerts. This reinforced the importance of validating both telemetry collection and detection coverage rather than relying solely on alert names.&lt;/p&gt;

&lt;p&gt;This experience improved my understanding of SIEM tuning and threat hunting by demonstrating that effective security monitoring often requires manual investigation alongside automated detections &lt;strong&gt;to fully understand attacker activity&lt;/strong&gt;.&lt;/p&gt;




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

&lt;p&gt;The experiments demonstrated that the Wazuh SIEM was successfully configured to collect and analyze Windows security telemetry after enabling Microsoft Defender Operational logging. The Scheduled Task Persistence experiment confirmed that Windows event data was successfully collected and could be used to investigate persistence techniques. The Ingress Tool Transfer experiment highlighted that not every Atomic Red Team technique &lt;strong&gt;generated&lt;/strong&gt; a dedicated Wazuh alert by default, even when the underlying telemetry was available. Together, these experiments reinforced the importance of validating both data collection and detection capabilities when deploying a SIEM. They also demonstrated that effective threat hunting often requires analysts to correlate multiple sources of evidence rather than relying solely on predefined alerts &lt;strong&gt;or a single detection rule&lt;/strong&gt;.&lt;/p&gt;

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

&lt;p&gt;One of the most important lessons from this project is to verify each configuration step before moving on to the next task. Small configuration errors or incorrect assumptions can make troubleshooting much more difficult later in the deployment process. It is also important to understand that the absence of a SIEM alert does not necessarily indicate that no malicious activity occurred. Analysts should review raw event logs, confirm that telemetry is being collected correctly, and validate detection coverage using multiple testing techniques. Taking a methodical approach to configuration, testing, and verification will produce more reliable results and build greater confidence in the effectiveness of the monitoring environment.&lt;/p&gt;




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

&lt;p&gt;The most interesting lesson from this project was realizing that successfully deploying a SIEM is only the beginning of effective security monitoring. Collecting telemetry is important, but understanding how to interpret the data and recognize gaps in detection coverage is equally valuable. Running Atomic Red Team tests demonstrated that not every simulated attack produced an obvious alert, which reinforced the importance of threat hunting, log analysis, and validating detections instead of relying solely on automated alerts. This project gave me a much deeper appreciation for the work performed by blue-team analysts every day.&lt;/p&gt;

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

&lt;p&gt;My biggest piece of advice is to take a methodical approach throughout the entire deployment process. Verify every configuration change, test each modification before continuing, and document your observations as you work. When something does not behave as expected, resist the urge to assume the configuration is wrong. Instead, investigate the available telemetry, review the logs carefully, and use the results to understand what actually happened. That approach will save time and strengthen your troubleshooting skills.&lt;/p&gt;

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

&lt;p&gt;My favorite resource during this project was the &lt;strong&gt;Atomic Red Team&lt;/strong&gt; framework. It provided realistic adversary simulations that made it possible to validate the SIEM configuration in a safe and repeatable way. The framework also helped me better understand how specific MITRE ATT&amp;amp;CK techniques appear in system logs and how those activities are translated into detections within Wazuh. Using Atomic Red Team transformed the project from simply configuring a SIEM into performing practical defensive security testing.&lt;/p&gt;

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

&lt;p&gt;I would like to thank the TripleTen instructors and reviewers for providing clear guidance throughout this project and encouraging a hands-on approach to learning. I also appreciate the developers and contributors behind the Wazuh and Atomic Red Team projects for creating outstanding open-source tools that make practical cybersecurity training accessible. Their work made it possible to gain valuable experience with SIEM deployment, threat detection, and defensive security operations in a realistic lab environment. &lt;strong&gt;Their contributions helped transform this project from a configuration exercise into a meaningful hands-on learning experience.&lt;/strong&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  References
&lt;/h1&gt;

&lt;h2&gt;
  
  
  1. Atomic Red Team
&lt;/h2&gt;

&lt;p&gt;Title: Atomic Red Team&lt;br&gt;&lt;br&gt;
Author: Red Canary&lt;br&gt;&lt;br&gt;
Affiliation: Red Canary&lt;br&gt;&lt;br&gt;
Date Published: n.d.&lt;br&gt;&lt;br&gt;
URL: &lt;a href="https://atomicredteam.io/" rel="noopener noreferrer"&gt;https://atomicredteam.io/&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Why it was useful: This framework was used to simulate realistic adversary techniques in a controlled environment. It allowed me to validate the SIEM configuration and observe how different attack techniques appeared in Wazuh.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. MITRE ATT&amp;amp;CK Enterprise Matrix
&lt;/h2&gt;

&lt;p&gt;Title: MITRE ATT&amp;amp;CK Enterprise Matrix&lt;br&gt;&lt;br&gt;
Author: MITRE Corporation&lt;br&gt;&lt;br&gt;
Affiliation: MITRE Corporation&lt;br&gt;&lt;br&gt;
Date Published: n.d.&lt;br&gt;&lt;br&gt;
URL: &lt;a href="https://attack.mitre.org/" rel="noopener noreferrer"&gt;https://attack.mitre.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Why it was useful: MITRE ATT&amp;amp;CK provided the standardized technique IDs and descriptions used throughout the experiments. It helped me understand the tactics and techniques being simulated and how they relate to real-world threats.&lt;/p&gt;




&lt;h2&gt;
  
  
  3. Wazuh Documentation
&lt;/h2&gt;

&lt;p&gt;Title: Wazuh Documentation&lt;br&gt;&lt;br&gt;
Author: Wazuh&lt;br&gt;&lt;br&gt;
Affiliation: Wazuh Inc.&lt;br&gt;&lt;br&gt;
Date Published: n.d.&lt;br&gt;&lt;br&gt;
URL: &lt;a href="https://documentation.wazuh.com/" rel="noopener noreferrer"&gt;https://documentation.wazuh.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Why it was useful: The documentation provided configuration guidance for log collection and SIEM management. It was an important reference for verifying settings and understanding Wazuh's detection capabilities.&lt;/p&gt;




&lt;h2&gt;
  
  
  4. Microsoft Learn
&lt;/h2&gt;

&lt;p&gt;Title: Microsoft Defender Documentation&lt;br&gt;&lt;br&gt;
Author: Microsoft&lt;br&gt;&lt;br&gt;
Affiliation: Microsoft Corporation&lt;br&gt;&lt;br&gt;
Date Published: n.d.&lt;br&gt;&lt;br&gt;
URL: &lt;a href="https://learn.microsoft.com/windows/security/" rel="noopener noreferrer"&gt;https://learn.microsoft.com/windows/security/&lt;/a&gt;&lt;br&gt;&lt;br&gt;
Why it was useful: Microsoft Learn explained the Windows Defender Operational log and related security features. It helped me understand the event data collected by Wazuh during the experiments.&lt;/p&gt;




&lt;h2&gt;
  
  
  5. TripleTen Course Materials
&lt;/h2&gt;

&lt;p&gt;Title: Sprint 10 – Deploy a SIEM Project Materials&lt;br&gt;&lt;br&gt;
Author: TripleTen&lt;br&gt;&lt;br&gt;
Affiliation: TripleTen&lt;br&gt;&lt;br&gt;
Date Published: n.d. &lt;br&gt;
Why it was useful: The course materials provided the lab environment, step-by-step guidance, and project objectives. They served as the foundation for configuring the SIEM and documenting the deployment process.&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>siem</category>
      <category>wazuh</category>
      <category>blueteam</category>
    </item>
  </channel>
</rss>
