<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Defender on Nicola Suter</title><link>https://nicolasuter.ch/tags/defender/</link><description>Recent content in Defender on Nicola Suter</description><generator>Hugo -- gohugo.io</generator><language>en-US</language><copyright>© 2026 Nicola Suter</copyright><lastBuildDate>Tue, 24 Feb 2026 22:00:03 +0000</lastBuildDate><atom:link href="https://nicolasuter.ch/tags/defender/rss.xml" rel="self" type="application/rss+xml"/><item><title>Defender XDR Unified Detections Meet Sentinel Data Lake</title><link>https://nicolasuter.ch/defender-xdr-unified-detections-sentinel-data-lake/</link><pubDate>Tue, 24 Feb 2026 22:00:03 +0000</pubDate><guid>https://nicolasuter.ch/defender-xdr-unified-detections-sentinel-data-lake/</guid><description>&lt;p&gt;With the Unified Security Operations Platform (USOP), Microsoft introduces Unified Detections - a single detection framework spanning both Sentinel and Defender XDR data. Pair this with native Sentinel Data Lake ingestion for XDR tables, and you have a compelling cost-optimization story. But is it ready for prime time? Let&amp;rsquo;s dive into the capabilities, current limitations, and what it means for your detection strategy.&lt;/p&gt;

&lt;h2 class="relative group"&gt;Architecture Overview
 &lt;div id="architecture-overview" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#architecture-overview" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;

&lt;h3 class="relative group"&gt;Previous Detection Architecture
 &lt;div id="previous-detection-architecture" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#previous-detection-architecture" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;p&gt;In the &amp;lsquo;previous&amp;rsquo; architecture, detections were created and managed separately for Microsoft Sentinel and Microsoft Defender XDR. This often led to overhead in terms of &amp;lsquo;where to create the detection&amp;rsquo;. Let&amp;rsquo;s take the use-case of IoC (Indicators of Compromise) based detections. Previously, if a security team wanted to create a detection based on IoCs imported via TAXII into Sentinel and the &lt;code&gt;DeviceNetworkEvents&lt;/code&gt; table, they would need to ingest the &lt;code&gt;DeviceNetworkEvents&lt;/code&gt; data into Sentinel as well and create the detection rule there. Furthermore, many MSSPs leveraged this pattern to create custom detections for their customers across Defender Advanced Hunting Data.&lt;/p&gt;
&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt="Existing Detection Architecture"
 src="https://nicolasuter.ch/content/images/2026/unifieddetections/arch_prev.png"
 &gt;&lt;/figure&gt;
&lt;p&gt;As part of the USOP onboarding, the following effects come into play, marked with an asterisk above:&lt;/p&gt;</description></item><item><title>Ensuring regular Defender Quick scans with Microsoft Endpoint Manager proactive remediations</title><link>https://nicolasuter.ch/defender-scan-endpoint-analytics/</link><pubDate>Mon, 28 Sep 2020 00:00:00 +0000</pubDate><guid>https://nicolasuter.ch/defender-scan-endpoint-analytics/</guid><description>&lt;p&gt;While looking into the new Microsoft Defender Antivirus report available in MEM (Intune) I discovered some machines which did not report any recent Defender antimalware scans, despite configured via configuration profile. Of course, AV scans are kinda old-fashioned against rapidly evolving threats but a regular quick scan won&amp;rsquo;t hurt anyone. Instead of having a look at every single machine affected, I decided to try out the new proactive remediations feature which went globally available last week and let endpoint analytics do the detection and remediation work for me. As a reference, I used the &lt;a href="https://docs.microsoft.com/en-us/mem/analytics/proactive-remediations" target="_blank" rel="noreferrer"&gt;Tutorial: Proactive remediations&lt;/a&gt; from Microsoft which covers the process quite well.&lt;/p&gt;

&lt;h2 class="relative group"&gt;PowerShell scrips
 &lt;div id="powershell-scrips" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#powershell-scrips" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;For Endpoint analytics / Proactive remediations we need two PowerShell scripts. The first script is used as a detection script and determines whether remediation is necessary based on the exit code. Exit code &lt;code&gt;0&lt;/code&gt; indicates a healthy status and exit code &lt;code&gt;1&lt;/code&gt; indicates remediation necessary. Remediation occurs with a second PowerShell script.&lt;/p&gt;
&lt;p&gt;To detect the most recent Defender scan I used the Windows Eventlog. Event ID&amp;rsquo;s are documented &lt;a href="https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/troubleshoot-microsoft-defender-antivirus#to-view-a-microsoft-defender-antivirus-event" target="_blank" rel="noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;h3 class="relative group"&gt;Detection script
 &lt;div id="detection-script" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#detection-script" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;script src="https://gist.github.com/nicolonsky/ac80d1cc89c9b42c2ed8099592e5c2bc.js"&gt;&lt;/script&gt;

&lt;h3 class="relative group"&gt;Remediation script
 &lt;div id="remediation-script" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#remediation-script" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;p&gt;The remediation script is just about a one-liner to trigger a quick scan. You can extend this based on your requirements and respective to your Intune settings. E.g. triggering a signature update for a scan or adding additional steps.&lt;/p&gt;</description></item></channel></rss>