<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Microsoft Defender XDR on Anything About IT</title><link>https://www.verboon.info/tags/microsoft-defender-xdr/</link><description>Recent content in Microsoft Defender XDR on Anything About IT</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Sun, 30 Nov 2025 12:43:15 +0000</lastBuildDate><atom:link href="https://www.verboon.info/tags/microsoft-defender-xdr/index.xml" rel="self" type="application/rss+xml"/><item><title>Modern Security for Legacy Systems</title><link>https://www.verboon.info/2025/11/modern-security-for-legacy-systems/</link><pubDate>Sun, 30 Nov 2025 12:43:15 +0000</pubDate><guid>https://www.verboon.info/2025/11/modern-security-for-legacy-systems/</guid><description>&lt;p&gt;Despite rapid OS refresh cycles, many organizations continue to run older systems such as Windows 7 or Windows Server 2008 R2. In many cases, critical line-of-business applications only run on older frameworks, specialized production machines rely on vendor-locked drivers, or long hardware replacement cycles make immediate upgrades unrealistic. Some companies also operate regulated or validated environments where any OS change requires extensive re-certification.&lt;/p&gt;
&lt;p&gt;Until now, these legacy endpoints posed a persistent security risk because unsupported or limited protection allowed attackers to exploit vulnerabilities with little resistance.&lt;/p&gt;</description></item><item><title>Monitoring Windows built-in local security Groups with Microsoft Defender XDR or Sentinel</title><link>https://www.verboon.info/2024/02/monitoring-windows-built-in-local-security-groups-with-microsoft-defender-xdr-or-sentinel/</link><pubDate>Sun, 04 Feb 2024 21:50:36 +0000</pubDate><guid>https://www.verboon.info/2024/02/monitoring-windows-built-in-local-security-groups-with-microsoft-defender-xdr-or-sentinel/</guid><description>&lt;h1 id="windows-built-in-local-security-groups"&gt;Windows Built-in local security groups&lt;/h1&gt;
&lt;p&gt;Windows has several built-in local security groups that are designed to manage permissions and access rights on a computer. These groups are predefined by Windows, and each group has specific rights and permissions. The exact groups available can vary depending on the version of Windows you&amp;rsquo;re using or the features that are enabled, but here&amp;rsquo;s a general overview of the most commonly found built-in local security groups in Windows systems:&lt;/p&gt;</description></item><item><title>Defender for Endpoint – unified solution for Windows Server 2012 R2 and 2016 (Part2)</title><link>https://www.verboon.info/2021/12/defender-for-endpoint-unified-solution-for-windows-server-2012-r2-and-2016-part2/</link><pubDate>Mon, 06 Dec 2021 20:28:53 +0000</pubDate><guid>https://www.verboon.info/2021/12/defender-for-endpoint-unified-solution-for-windows-server-2012-r2-and-2016-part2/</guid><description>&lt;p&gt;Hello everyone,&lt;/p&gt;
&lt;p&gt;In my previous post (&lt;a href="https://www.verboon.info/2021/10/defender-for-endpoint-unified-solution-for-windows-server-2012-r2-and-2016-part1/"&gt;Part1&lt;/a&gt;) I provided an overview of the new Microsoft Defender for endpoint unified solution for Windows Server 2012-R2 and 2016 and how to deploy the solution manually to a new provisioned server. In this blog post I would like to walk you through the process of migrating a Windows 2016 server to the new unified solution using Microsoft Endpoint Configuration Manager.&lt;/p&gt;
&lt;p&gt;For this we will be using the &lt;a href="https://github.com/microsoft/mdefordownlevelserver"&gt;upgrade script&lt;/a&gt; that Microsoft provides. But let&amp;rsquo;s go through this step by step.&lt;/p&gt;</description></item><item><title>How to remediate Defender for Endpoint onboarding with ConfigMgr</title><link>https://www.verboon.info/2021/02/how-to-remediate-defender-for-endpoint-onboarding-with-configmgr/</link><pubDate>Thu, 25 Feb 2021 18:57:49 +0000</pubDate><guid>https://www.verboon.info/2021/02/how-to-remediate-defender-for-endpoint-onboarding-with-configmgr/</guid><description>&lt;p&gt;During the past 5 years I have onboarded a couple of thousand devices into Microsoft Defender for Endpoint and can say that, provided that you done your homework with regards to network connectivity, onboarding devices into Defender for Endpoint usually just works. But as always in IT, there are exceptions.&lt;/p&gt;
&lt;p&gt;Should you ever run into an issue with onboarding devices, I recommend checking the guidance provided here: &lt;a href="https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-atp/troubleshoot-onboarding"&gt;Troubleshoot Microsoft Defender for Endpoint onboarding issues&lt;/a&gt;. Now if you have just a couple of devices to manage you will most likely spot any missing device within the Defender for Endpoint management portal, but what if you have several hundred or even thousands of devices? How would you find out that that particular device Computer0073 in Building D1 on the 6th floor is not correctly onboarded?&lt;/p&gt;</description></item><item><title>Generating Advanced hunting queries with PowerShell</title><link>https://www.verboon.info/2020/07/generating-advanced-hunting-queries-with-powershell/</link><pubDate>Fri, 10 Jul 2020 23:21:46 +0000</pubDate><guid>https://www.verboon.info/2020/07/generating-advanced-hunting-queries-with-powershell/</guid><description>&lt;p&gt;I was recently writing some advanced hunting queries for Microsoft Defender ATP to search for the execution of specific PowerShell commands. If you are just looking for one specific command, you can run query as sown below&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code class="language-kql" data-lang="kql"&gt;// Find all machines running a given Powersehll cmdlet.
let powershellCommandName = &amp;#34;Invoke-RickAscii&amp;#34;; 
DeviceEvents 
| where ActionType == &amp;#34;PowerShellCommand&amp;#34; 
| where AdditionalFields contains powershellCommandName
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;But if you are looking for several functions, then there is going to be a lot of manual editing, and so the idea was born to use PowerShell to help me generate an advanced hunting query. The below function can do the following:&lt;/p&gt;</description></item><item><title>Defender ATP Advanced hunting with TI from URLhaus</title><link>https://www.verboon.info/2020/06/defender-atp-advanced-hunting-with-ti-from-urlhaus/</link><pubDate>Sun, 21 Jun 2020 14:57:47 +0000</pubDate><guid>https://www.verboon.info/2020/06/defender-atp-advanced-hunting-with-ti-from-urlhaus/</guid><description>&lt;p&gt;Hello everyone, in today&amp;rsquo;s article we are going to take look at how we can use Threat Intelligence (TI) data from URLhaus with Microsoft Defender ATP advanced hunting.&lt;/p&gt;
&lt;h1 id="urlhaus"&gt;URLhaus&lt;/h1&gt;
&lt;p&gt;URLhaus is a project from abuse.ch with the goal of sharing malicious URLs that are being used for malware distribution. &lt;a href="https://urlhaus.abuse.ch/"&gt;https://urlhaus.abuse.ch/&lt;/a&gt; The project provides several ways to find and retrieve information about malware URLs.&lt;/p&gt;
&lt;p&gt;You can browse the URL database interactively through &lt;a href="https://urlhaus.abuse.ch/browse/"&gt;https://urlhaus.abuse.ch/browse/&lt;/a&gt;
 &lt;img src="images/062120_1454_DefenderATP1.png" alt=""&gt;

&lt;/p&gt;</description></item><item><title>Managing Time Zone and Date formats in Microsoft Defender Security Center</title><link>https://www.verboon.info/2020/06/managing-time-zone-and-date-formats-in-microsoft-defender-security-center/</link><pubDate>Tue, 09 Jun 2020 15:49:25 +0000</pubDate><guid>https://www.verboon.info/2020/06/managing-time-zone-and-date-formats-in-microsoft-defender-security-center/</guid><description>&lt;p&gt;When you receive security alerts or are investigating security related events , the aspect of time is important element. By default, date and time is displayed in Coordinated Universal Time (UTC) within the Microsoft Defender security center portal.&lt;/p&gt;
&lt;p&gt;In todays&amp;rsquo; blog post, I want to provide you with some insights and tips how to manage Timezone and the date time format within the Microsoft Defender security center.&lt;/p&gt;
&lt;h1 id="time-zones"&gt;Time zones&lt;/h1&gt;
&lt;p&gt;
 &lt;img src="images/060920_1544_ManagingTim1.png" alt=""&gt;

&lt;/p&gt;
&lt;p&gt;You can use the &lt;strong&gt;Time zone&lt;/strong&gt; menu to change the time to your local time.&lt;/p&gt;</description></item><item><title>Advance your Microsoft Defender ATP hunting skills using the Atomic execution framework</title><link>https://www.verboon.info/2020/06/advance-your-microsoft-defender-atp-hunting-skills-using-the-atomic-execution-framework/</link><pubDate>Fri, 05 Jun 2020 12:38:56 +0000</pubDate><guid>https://www.verboon.info/2020/06/advance-your-microsoft-defender-atp-hunting-skills-using-the-atomic-execution-framework/</guid><description>&lt;p&gt;Hello everyone, during the past months I took a closer look at &lt;a href="#"&gt;MITRE ATT&amp;amp;CK &lt;/a&gt; to advance my hunting skills using &lt;a href="#"&gt;Microsoft Defender Advanced Threat Protection&lt;/a&gt;. For those not familiar with MITRE ATT&amp;amp;CK, in short, it is a knowledge base knowledge base of adversary tactics and techniques based on real-world observations.&lt;/p&gt;
&lt;p&gt;To familiarize myself with MITRE ATT&amp;amp;CK, I first started reading through all the tactics and techniques, to be honest while reading, I often couldn&amp;rsquo;t resists to get my hands on the keyboard and try things out, but I kept discipline and completed studying all the content first.&lt;/p&gt;</description></item><item><title>Meet the new Microsoft Defender ATP evaluation lab</title><link>https://www.verboon.info/2020/05/meet-the-new-microsoft-defender-atp-evaluation-lab/</link><pubDate>Sun, 24 May 2020 14:23:52 +0000</pubDate><guid>https://www.verboon.info/2020/05/meet-the-new-microsoft-defender-atp-evaluation-lab/</guid><description>&lt;p&gt;This week Hadar Feldmann, senior program manager and security researcher at Microsoft &lt;a href="#"&gt;announced&lt;/a&gt; the public preview of the new Microsoft Defender ATP evaluation lab that now includes two attack simulation solutions from AttackIQ and SafeBreach. The term &amp;rsquo;evaluation&amp;rsquo; might indicate that the lab is only intended for new customers hat are in the process of evaluating Microsoft Defender ATP, but that&amp;rsquo;s not the case, personally I think that it is also a perfect playground for existing customers to advance their investigation and hunting skills using Microsoft Defender ATP.&lt;/p&gt;</description></item><item><title>Exploring Microsoft Cloud App Security with PowerShell – Part1</title><link>https://www.verboon.info/2019/05/exploring-microsoft-cloud-app-security-with-powershell-part1/</link><pubDate>Sun, 05 May 2019 13:45:37 +0000</pubDate><guid>https://www.verboon.info/2019/05/exploring-microsoft-cloud-app-security-with-powershell-part1/</guid><description>&lt;p&gt;Last Friday I was given the opportunity to present at the Configuration Manager Community Event (CMCE1905) in Bern, Switzerland. Although Microsoft Cloud App Security is not really related to ConfigMgr, many of the attendees are dealing with managing classic and modern workplaces and security is almost on everyone&amp;rsquo;s list of interest. During my session &amp;ldquo;Unleash the power of Microsoft Cloud App Security&amp;rdquo; I also demonstrated how one can explore information within Microsoft Cloud App Security through PowerShell. So, for all those interested how to do that, here we go.&lt;/p&gt;</description></item></channel></rss>