<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>rss.livelink.threads-in-node</title>
    <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/ct-p/microsoft-defender-xdr</link>
    <description>rss.livelink.threads-in-node</description>
    <pubDate>Fri, 31 Jul 2026 17:51:43 GMT</pubDate>
    <dc:creator>microsoft-defender-xdr</dc:creator>
    <dc:date>2026-07-31T17:51:43Z</dc:date>
    <item>
      <title>Detecting CVE-2026-54121 (Certighost) with Microsoft Defender</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/detecting-cve-2026-54121-certighost-with-microsoft-defender/ba-p/4542861</link>
      <description>&lt;H1&gt;What is CVE-2026-54121?&lt;/H1&gt;
&lt;P&gt;CVE-2026-54121 is an authentication-bypass vulnerability in Active Directory Certificate Services that allows an attacker to obtain certificates for arbitrary domain computer accounts, including Domain Controllers. A valid Domain Controller certificate enables escalation to full domain compromise: it can be used to obtain Kerberos tickets that authenticate the attacker as a Domain Controller. Those tickets can then be used to perform attacks such as DCSync, or to recover the Domain Controller's password hash for later use.&lt;/P&gt;
&lt;P&gt;The flaw lies in an AD CS enrollment fallback known as a chase, which occurs when the CA cannot resolve the requester. In such cases, the vulnerable CA contacts a client-supplied Domain Controller, specified in the cdc attribute, to retrieve fresher identity data and incorporates the response into the issued certificate, without verifying that it is communicating with a legitimate Domain Controller. The chase fallback occurs only for templates that require a DNS name, and only on CAs with the EDITF_ENABLECHASECLIENTDC flag enabled.&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;A public proof of concept was released on July 24, 2026. Microsoft has not observed confirmed threat-actor exploitation, and the activity seen so far appears consistent with security testing. Organizations with affected AD CS configurations should apply the July 14 security update. Organizations should identify exposed Certificate Services hosts, confirm whether the required environmental conditions exist, enable the recommended AD CS auditing, and monitor for the suspicious authentication and certificate-enrollment activity described below.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="lia-external-url" href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-54121" target="_blank" rel="noopener"&gt;More details about VCE-2026-54121 can be found here&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;What to do&lt;/H1&gt;
&lt;P&gt;The response follows a simple order: know your exposure, patch it, instrument it, and watch for the activity.&lt;/P&gt;
&lt;H3&gt;1. Identify affected systems&lt;/H3&gt;
&lt;P&gt;Certighost affects Windows Server 2012 through Windows Server 2025, including Server Core installations, but several conditions must all be present for a given environment to be exploitable:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;An Enterprise Certification Authority integrated with Active Directory&lt;/LI&gt;
&lt;LI&gt;Enrollment through the machine certificate template&lt;/LI&gt;
&lt;LI&gt;A default ms-DS-MachineAccountQuota value, or a machine account already controlled by the attacker&lt;/LI&gt;
&lt;LI&gt;Network reachability between the Certification Authority and the attacker's host over SMB and LDAP&lt;/LI&gt;
&lt;LI&gt;A valid domain account, with no administrative privileges required&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;2. Patch&lt;/H3&gt;
&lt;P&gt;The primary and durable remediation is the July 14, 2026 security update, applied to every AD CS host that runs an Enterprise Certification Authority. The update validates the lookup target before the Certification Authority contacts it, rejecting invalid or attacker-controlled targets before enrollment continues. Nothing else in this post replaces patching. The monitoring below gives you defense in depth and visibility, not an alternative to the fix.&lt;/P&gt;
&lt;H3&gt;3. Turn on AD CS auditing&lt;/H3&gt;
&lt;P&gt;The certificate request and issuance activity at the center of this attack is only useful to defenders if it is being recorded, and AD CS certificate services auditing is not enabled by default. With it on, the same events power detection and investigation across Microsoft Defender, and Kerberos authentication telemetry requires no additional configuration.&lt;/P&gt;
&lt;P&gt;Organizations that have Microsoft Defender for Identity sensors installed on their AD CS servers and have completed the required sensor configuration can typically skip this step, as the necessary Certificate Services auditing settings are already enabled as part of the deployment prerequisites.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Enabling AD CS auditing takes two settings:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Turn on the Certification Services audit subcategory.&lt;/STRONG&gt; Under Advanced Audit Policy, Object Access, enable success and failure for Certification Services. Set it through Group Policy, or with auditpol:&lt;/P&gt;
&lt;LI-CODE lang=""&gt;auditpol /set /subcategory:"Certification Services" /success:enable /failure:enable&lt;/LI-CODE&gt;
&lt;P&gt;&lt;STRONG&gt;Set the Certification Authority audit filter.&lt;/STRONG&gt;&amp;nbsp;In the Certification Authority console this is the Auditing tab; it can also be set with certutil, followed by a service restart:&lt;/P&gt;
&lt;LI-CODE lang=""&gt;certutil -setreg CA\AuditFilter 127
Restart-Service CertSvc -Force&lt;/LI-CODE&gt;
&lt;P&gt;With both in place, the Certification Authority records Security log events for certificate lifecycle operations, including event 4886 when a certificate request is received and event 4887 when a request is approved and a certificate is issued. Each event captures the requester, the template used, and the request disposition. For Certighost, this is the record that makes the abuse visible: a certificate issued for a Domain Controller identity, requested through a machine template by a low-privileged principal, is an issuance pattern that should never occur normally, and these events let defenders detect it, investigate it, and correlate it with the PKINIT authentication and DCSync activity that follow.&lt;/P&gt;
&lt;P&gt;For complete guidance, see &lt;A href="https://learn.microsoft.com/defender-for-identity/deploy/configure-windows-event-collection" target="_blank" rel="noopener"&gt;Configure Windows event auditing — Microsoft Defender for Identity&lt;/A&gt;.&lt;/P&gt;
&lt;H3&gt;4. Watch for alerts&lt;/H3&gt;
&lt;P&gt;Attempts to exploit this vulnerability are detected by Microsoft Defender for Identity with the alert :&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;"Potential Certighost (CVE-2026-54121) AD CS abuse."&lt;/STRONG&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;The alert fires on the malicious certificate requests crafted to exploit this flaw, the anomalous issuance pattern at the heart of the technique, so you do not need to author a custom rule to catch the core activity. Ensure Defender for Identity is deployed on your domain controllers and AD CS servers and treat this alert as high priority.&lt;/P&gt;
&lt;img&gt;Example of Potential Certighost (CVE-2026-54121) AD CS abuse alert within Microsoft Defender&lt;/img&gt;
&lt;P&gt;Because the exploitation chain touches several stages of an identity attack, you may also see supporting alerts that commonly appear alongside this activity, though on their own they do not confirm a Certighost attempt:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Security principal reconnaissance (LDAP)&lt;/LI&gt;
&lt;LI&gt;Suspicious Active Directory Certificate Services abuse tool activity&lt;/LI&gt;
&lt;LI&gt;Suspected suspicious Kerberos ticket request&lt;/LI&gt;
&lt;LI&gt;DCSync attack (replication of directory services)&lt;/LI&gt;
&lt;/UL&gt;
&lt;H1&gt;Learn more&lt;/H1&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-54121" target="_blank" rel="noopener"&gt;CVE-2026-54121 — Security Update Guide, Microsoft (Active Directory Certificate Services Elevation of Privilege Vulnerability)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://learn.microsoft.com/defender-for-identity/deploy/configure-windows-event-collection" target="_blank" rel="noopener"&gt;Configure Windows event auditing — Microsoft Defender for Identity&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;To stay on top of the latest Defender for Identity capabilities, follow our &lt;A href="https://learn.microsoft.com/defender-for-identity/whats-new" target="_blank" rel="noopener"&gt;What's New&lt;/A&gt; documentation page.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2026 17:41:07 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/detecting-cve-2026-54121-certighost-with-microsoft-defender/ba-p/4542861</guid>
      <dc:creator>EdanZwick</dc:creator>
      <dc:date>2026-07-31T17:41:07Z</dc:date>
    </item>
    <item>
      <title>MDTI convergence in Microsoft Sentinel and Defender XDR is complete</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/mdti-convergence-in-microsoft-sentinel-and-defender-xdr-is/ba-p/4541279</link>
      <description>&lt;P&gt;Beginning August 1, the final phase of Microsoft Defender Threat Intelligence (MDTI) convergence will be generally available in the Defender portal, giving customers real-time Microsoft threat intelligence across detection, investigation, response, hunting, and automation at no additional cost. Announced last year, &lt;A href="https://techcommunity.microsoft.com/blog/defenderthreatintelligence/mdti-is-converging-into-microsoft-sentinel-and-defender-xdr/4427991" target="_blank" rel="noopener"&gt;this unified SecOps experience&lt;/A&gt; reduces fragmented context and tool handoffs, creating a clearer path from threat signal to informed action.&lt;/P&gt;
&lt;H3&gt;Latest features converging&lt;/H3&gt;
&lt;H4&gt;Entity enrichments: all the intel, right where you need it&lt;/H4&gt;
&lt;P&gt;Defender entity pages surface threat intelligence enrichments in the Threat Intelligence Insights tab for IP addresses, domains, URLs, and files. This unified view combines reputation data and scores, attributed reports, infrastructure relationships, services, certificates, DNS and WHOIS records, trackers, cookies, and sandbox analysis, helping analysts assess risk and investigate incidents without switching tabs. For more information, see&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/defender-xdr/entity-page-threat-intelligence" target="_blank" rel="noopener"&gt;View threat intelligence in entity pages&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img&gt;&lt;EM&gt;Screenshot of the Threat Intelligence Insights tab under Threat Analytics in the Defender portal showing reputation risk.&lt;/EM&gt;&lt;/img&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img&gt;&lt;EM&gt;Screenshot of the Threat Intelligence Insights tab under Threat Analytics in the Defender portal showing WHOIS records.&lt;/EM&gt;&lt;/img&gt;
&lt;H4&gt;MDTI Sentinel data connectors and APIs&lt;/H4&gt;
&lt;P&gt;Microsoft Threat Intelligence data that previously required the Premium MDTI connector is now available through the free Microsoft Threat Intelligence connector in Sentinel, enabling free and premium indicator feeds through one setup. MDTI APIs are also available by default to Microsoft Defender XDR and Microsoft Sentinel customers, without a separate MDTI license SKU, so teams can enrich investigations through Sentinel or external SIEM, SOAR, and automation tools.&lt;/P&gt;
&lt;P&gt;As a reminder, the API surface remains unchanged, and no customer migration is required. Customers do not need to perform endpoint mapping, code changes, tooling changes, or cutover activities.&lt;/P&gt;
&lt;H3&gt;Features previously released&lt;/H3&gt;
&lt;H4&gt;Threat Intelligence Library&lt;/H4&gt;
&lt;P&gt;Microsoft’s threat actor profiles, intelligence reports, OSINT articles, MSTIC and MTP research, and indicators of compromise (IoCs) are now available through &lt;A href="https://learn.microsoft.com/defender-xdr/threat-analytics" target="_blank" rel="noopener"&gt;Threat Analytics&lt;/A&gt; in the Defender portal, at no additional cost beyond the existing license.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img&gt;&lt;EM&gt;Screenshot of the Threat Analytics dashbaord in the Defender portal.&lt;/EM&gt;&lt;/img&gt;
&lt;H4&gt;Threat Analytics Enhancements&lt;/H4&gt;
&lt;P&gt;Reports now bring together embedded IoCs, MITRE ATT&amp;amp;CK mappings, targeted industries, actor origins, and automatic incident correlation, so defenders can move from reading intelligence to applying it in investigations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img&gt;&lt;EM&gt;Screenshot of the Threat Analytics page in the Defender portal showing actor profile overview.&lt;/EM&gt;&lt;/img&gt;
&lt;H4&gt;Case Linking&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Security teams can link investigation cases directly to relevant IoCs, making it easier to document findings, collaborate across response workflows, and show how intelligence informed action.&lt;/P&gt;
&lt;P&gt;Reference the table below to see the full list of features available with the MDTI convergence into Microsoft Defender XDR and Sentinel.&lt;/P&gt;
&lt;img&gt;&lt;EM&gt;Chart showing full list of MDTI capabilities converged into Defender XDR and Sentinel&lt;/EM&gt;&lt;/img&gt;
&lt;H3&gt;Actions for existing MDTI customers&lt;/H3&gt;
&lt;P&gt;Starting August 1, the standalone MDTI pages (Intel Profiles, Intel Explorer &amp;amp; Intel Projects) will be retired. All MDTI capabilities will be accessible via the Threat Analytics tab in the Defender portal instead of the Threat Intelligence tab. &lt;STRONG&gt;No migration action is needed&lt;/STRONG&gt;. Customers will now access the MDTI value via the Threat Analytics tab in the Defender portal instead of the Threat Intelligence tab. &lt;A href="https://learn.microsoft.com/defender-xdr/defender-threat-intelligence" target="_blank" rel="noopener"&gt;Explore our documentation&lt;/A&gt; for more details and reach out to your account team or partner if you need have questions or need assistance on how to reduce your current license and transition to this new unified threat intelligence experience in Defender XDR or Sentinel at no additional cost.&lt;/P&gt;
&lt;H3&gt;Get started&lt;/H3&gt;
&lt;P&gt;To access threat intelligence in the Microsoft Defender portal:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Go to the&amp;nbsp;&lt;A href="https://security.microsoft.com/" target="_blank" rel="noopener"&gt;Microsoft Defender portal&lt;/A&gt;&amp;nbsp;and sign in.&lt;/LI&gt;
&lt;LI&gt;Use the&amp;nbsp;&lt;STRONG&gt;Threat intelligence&lt;/STRONG&gt;&amp;nbsp;navigation menu to access Intelligence explorer and Intel profiles.&lt;/LI&gt;
&lt;LI&gt;Investigate entities enriched with threat intelligence by selecting IP addresses, domains, URLs, or files from incidents, alerts, or search results.&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Wed, 29 Jul 2026 16:00:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/mdti-convergence-in-microsoft-sentinel-and-defender-xdr-is/ba-p/4541279</guid>
      <dc:creator>AmelieDarchicourt</dc:creator>
      <dc:date>2026-07-29T16:00:00Z</dc:date>
    </item>
    <item>
      <title>Graph API Endpoint for the Vulnerability Profile</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/graph-api-endpoint-for-the-vulnerability-profile/m-p/4541551#M2741</link>
      <description>&lt;P&gt;I can use this endpoint to get threat reports via the graph api&amp;nbsp;&lt;/P&gt;&lt;P&gt;GET&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://graph.microsoft.com/beta/security/threatIntelligence/article&lt;/P&gt;&lt;P&gt;but threat Analytics reports that come in from defender that are category: vulnerability, aren't in there However they are written up in an article style. What endpoint do I need to hit to get these types of reports.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2026 12:02:06 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/graph-api-endpoint-for-the-vulnerability-profile/m-p/4541551#M2741</guid>
      <dc:creator>scottholland</dc:creator>
      <dc:date>2026-07-28T12:02:06Z</dc:date>
    </item>
    <item>
      <title>Microsoft Defender now integrates with Dragos, Forescout, &amp; Armis for OT Security</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/microsoft-defender-now-integrates-with-dragos-forescout-armis/ba-p/4534936</link>
      <description>&lt;P&gt;Co-author(s): Amit Cohen and Hadar Shindler&lt;BR /&gt;&lt;BR /&gt;Operational technology (OT) environments are unlike anything else in cybersecurity. The systems that run our factories, power grids, water treatment plants, pipelines, and transportation networks weren’t built with modern threats in mind — and they can’t simply be patched, rebooted, or scanned the way IT systems can. A misstep doesn’t just create an alert backlog; it can stop a production line, disrupt critical services, or put physical safety at risk.&lt;/P&gt;
&lt;P&gt;To support customers in bringing their OT security solutions into their Security Operation (SOC) platform, we’re excited to announce an expansion of the Microsoft ecosystem with new OT security integrations from Dragos, Forescout, and Armis from ServiceNow. This gives customers greater flexibility to use the OT security solutions that best fit their environments.&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Expanding OT coverage in Defender with new partner integrations&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;We’ve built new connectors for Dragos, Forescout and Armis that are now ready for customers to start using.&lt;/P&gt;
&lt;H4&gt;Dragos&lt;/H4&gt;
&lt;H6&gt;&lt;EM&gt;"Strong OT defense starts with knowing what is running in your operational environment, the vulnerabilities those assets carry, the threats targeting your systems, and the data to determine root cause. That kind of intelligence comes from years of operating inside OT environments and tracking the groups behind those threats. As OT threats continue to grow and AI accelerates how quickly adversaries can approach the OT boundary, integrating Dragos into Microsoft Defender strengthens how organizations see, understand, and defend their OT environments."&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;-Robert M. Lee, CEO and Co-Founder, Dragos, Inc.&lt;/EM&gt;&lt;/H6&gt;
&lt;H4&gt;Forescout&lt;/H4&gt;
&lt;H6&gt;&lt;EM&gt;"Our integration with Microsoft Defender represents a significant step forward in helping organizations defend their most critical operations against today's rapidly evolving cyber threats. By combining Forescout's industry-leading visibility and protection for IoT, OT, and network-connected assets with Microsoft's leadership in endpoint, identity, cloud, and security operations, we're delivering a more unified approach to cyber defense. Together, we're enabling healthcare providers, government agencies, critical infrastructure operators, and enterprises comprehensive visibility across IT and OT environments while empowering security teams to detect, investigate, and respond to threats faster and with greater confidence."&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;-Robert McNutt, Chief Strategy Officer, Forescout&lt;/EM&gt;&lt;/H6&gt;
&lt;H4&gt;Armis&lt;/H4&gt;
&lt;P&gt;“&lt;EM&gt;Fragmented security is no longer an option as threats to critical infrastructure evolve at machine speed. By deepening our integration with Microsoft, we are unifying visibility and context in complex OT and IoT environments. Integrating Armis Centrix™ with Microsoft Defender equips security teams with real-time, actionable insights to identify and mitigate risks across their entire operational footprint.”&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;-Nadir Izrael, Group Vice President, Armis from ServiceNow&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Bringing OT and IT Security Together&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;With these new integrations, signals, asset inventory and vulnerabilities from Dragos, Forescout, and Armis from ServiceNow flow directly into Microsoft Defender — giving security operations teams a single, unified view across IT, OT, and IoT.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;What this means for customers:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Unified visibility across IT and OT. &lt;/STRONG&gt;OT assets and vulnerabilities surface alongside IT signals in Defender, so the SOC can see and reason about them in one place.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Cross-domain correlation. &lt;/STRONG&gt;Identity, endpoint, cloud, and OT signals are correlated automatically.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Streamlined investigation and response. &lt;/STRONG&gt;Analysts can pivot from an OT detection to related IT activity (and back) without switching tools or losing context.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Specialized depth, unified breadth. &lt;/STRONG&gt;Customers keep the deep OT expertise of their chosen partner platform and gain the enterprise-wide coverage of Defender.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Let’s take a look at some of new the user experience updates that showcase these integrations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img /&gt;
&lt;P class="lia-align-center"&gt;&lt;EM&gt;Figure 1. Discovered devices by OT partner in device inventory&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Device Inventory now will show OT devices discovered through a new partner integration (see Figure 1). Industrial assets like substation relays and switches from vendors are automatically surfaced with rich context, criticality, vendor, model, firmware, and discovery source alongside built-in recommendations to classify critical assets and protect unmanaged OT devices. The result: unified visibility across IT and OT from a single view, so security teams can find, prioritize, and protect previously unseen devices faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img /&gt;
&lt;P class="lia-align-center"&gt;&lt;EM&gt;Figure 2. Vulnerabilities and exposure across OT devices&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The Vulnerabilities view now includes a dedicated OT Partner CVEs tab, surfacing thousands of vulnerabilities on operational technology devices discovered through partner integrations. Every CVE is enriched with severity, CVSS score, age, active threats, and exposed device count, and the list is sorted by exposure so the most widespread, highest-impact risks rise to the top. Most importantly, security teams can now see OT vulnerabilities alongside IT in a single, prioritized view, making it faster to focus remediation where it matters most.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img /&gt;
&lt;P class="lia-align-center"&gt;&lt;EM&gt;Figure 3. Discovered devices exposed by OT integration&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Selecting a CVE opens a detail panel with a dedicated&amp;nbsp;&lt;STRONG&gt;Exposed devices discovered by OT partner&lt;/STRONG&gt; tab, listing every affected device along with its OS platform and last seen date. For CVE-2024-7264, that means a clear view of all 75 exposed devices in one place, from OT controllers to sales workstations. The benefit is that security teams can move from a single vulnerability straight to the exact devices at risk, making it easy to scope impact and drive targeted remediation without leaving the view.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img /&gt;
&lt;P class="lia-align-center"&gt;&lt;EM&gt;Figure 4. Discovered vulnerabilities by OT integration&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Drilling into a specific device, like the &lt;STRONG&gt;Substation-North-HMI2&lt;/STRONG&gt;&amp;nbsp;shown here, reveals a dedicated&amp;nbsp;&lt;STRONG&gt;Discovered vulnerabilities by OT partner&lt;/STRONG&gt; tab alongside the standard device views such as incidents, timeline, and security recommendations. It lists every vulnerability found on that device by the OT partner, complete with severity, CVSS score, publication and detection dates, and active threats. The benefit is a complete, device-level picture of OT risk right where analysts investigate, so they can see exactly what a single asset is exposed to and prioritize remediation without switching tools or context.&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Built for customer choice and flexibility&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;We’re excited to expand our integration ecosystem, giving customers the flexibility to work with the OT solutions they already trust. These integrations help bring specialized OT context into broader security workflows, enabling SOC teams, risk managers, and security leaders to collaborate more effectively while using the tools that best fit their environment.&lt;/P&gt;
&lt;H1&gt;Get started&lt;/H1&gt;
&lt;P&gt;The Dragos, Forescout, and Armis integrations are available in public preview starting today. Customers can enable them through the Defender portal and begin ingesting OT signals from their partner platform of choice.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/security-exposure-management/ot-data-connectors" target="_blank" rel="noopener"&gt; Integrate the Dragos OT data connector in Microsoft Security Exposure Management - Microsoft Security Exposure Management | Microsoft Learn&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/security-exposure-management/ot-data-connectors" target="_blank" rel="noopener"&gt; Integrate the Forescout OT data connector in Microsoft Security Exposure Management - Microsoft Security Exposure Management | Microsoft Learn&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/security-exposure-management/armis-data-connector" target="_blank" rel="noopener"&gt;Integrate the Armis OT data connector in Microsoft Security Exposure Management - Microsoft Security Exposure Management | Microsoft Learn&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 14 Jul 2026 13:46:58 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/microsoft-defender-now-integrates-with-dragos-forescout-armis/ba-p/4534936</guid>
      <dc:creator>Caroline_Lee</dc:creator>
      <dc:date>2026-07-14T13:46:58Z</dc:date>
    </item>
    <item>
      <title>Ask Microsoft Anything: Attack Disruption with Microsoft Defender on July 14</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/ask-microsoft-anything-attack-disruption-with-microsoft-defender/m-p/4534600#M2723</link>
      <description>&lt;P&gt;Hey Defender enthusiasts! Just wanted to remind you all that we are holding an AMA next week at 9AM PST on July 14 with the Attack Disruption team.&lt;STRONG&gt; &lt;/STRONG&gt;&lt;SPAN data-teams="true"&gt;Come learn about Attack Disruption—Microsoft Defender’s built‑in, AI-powered capability that stops in‑progress attacks at machine speed by analyzing attacker intent, identifying compromised assets, and containing threats before they spread. Bring your questions and hear directly from product experts on real‑world scenarios and best practices.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hope to see you there!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN data-teams="true"&gt;Event Link: &lt;A href="https://techcommunity.microsoft.com/event/microsoft-security-events/ask-microsoft-anything-microsoft-defender-attack-disruption/4531369" target="_blank"&gt;Ask Microsoft Anything: Microsoft Defender Attack Disruption | Microsoft Community Hub&lt;/A&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2026 18:55:19 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/ask-microsoft-anything-attack-disruption-with-microsoft-defender/m-p/4534600#M2723</guid>
      <dc:creator>TrevorRusher</dc:creator>
      <dc:date>2026-07-07T18:55:19Z</dc:date>
    </item>
    <item>
      <title>DefenderXDR "Preparing new space for data and connecting them" is stuck , and never finished !</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/defenderxdr-quot-preparing-new-space-for-data-and-connecting/m-p/4534587#M2722</link>
      <description>&lt;P&gt;Hello everyone,&amp;nbsp;&lt;BR /&gt;I am delivering SC-200 courses and on the lab environment of Skillable (or even free-tiers) when you have to "initiate" the data space for DefenderXDR, the process seems to be stuck .... never finished and we are "locked" in the page of a ...coffee cup and the phrase&lt;BR /&gt;"Hang on. We are preparing new spaces for your data and connecting them. "&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;does anyone else have same problem ?&amp;nbsp;&lt;BR /&gt;Any resolution , (I have already open a support ticket to Skillable support, but I haven't got resolution for over 1+day , and cannot open or continue the lab (for connecting or onboarding Microsoft Defender for Endpoint )&amp;nbsp; which is frustrating for the participants-students&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Panos&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2026 18:08:06 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/defenderxdr-quot-preparing-new-space-for-data-and-connecting/m-p/4534587#M2722</guid>
      <dc:creator>PanosGR191</dc:creator>
      <dc:date>2026-07-07T18:08:06Z</dc:date>
    </item>
    <item>
      <title>Looking for a simple deployment guide</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/looking-for-a-simple-deployment-guide/m-p/4534556#M2721</link>
      <description>&lt;P&gt;MS Learn is a great starting point, but it just doesn't seem to cover the steps needed to get up and running safely.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have concerns about adding or setting something that suddenly creates a vulnerability or exposure. Where is the installation guide that installs and configures the solution then tells you, "You are now protected". Do I really want to set my own policies? Why aren't the default set of rules good enough, safe enough. I can't have a solution that is so complicated I need to hire a team to manage it 24 hours a day. I am okay investigating an alert and helping a user solve a pop-up question. Why is every major corporation around the world required to re-invent the same or similar policies the company next door is creating to make this tool work?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to onboard all of our Intune devices and monitor anything that CAN'T be stopped by default security measures. Just the fact that Sentinel appears to be changing as an embedded tool within Defender gives me hope that this will be getting closer to a more manageable tool. But that still seems a way off.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am ready to do the reading and research to get this set up but I am hoping for a guide that is specific enough to achieve a final result.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank for understanding my challenges here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2026 16:17:36 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/looking-for-a-simple-deployment-guide/m-p/4534556#M2721</guid>
      <dc:creator>MeatBear11</dc:creator>
      <dc:date>2026-07-07T16:17:36Z</dc:date>
    </item>
    <item>
      <title>Feature Request: Manual Invocation Mode for Embedded Security Copilot Experiences to reduce cost !</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/feature-request-manual-invocation-mode-for-embedded-security/m-p/4533804#M2716</link>
      <description>&lt;P&gt;Hello, I see that Copilot for Security in XDR dashboards , if used in embedded mode (I mean whenever you are opening a case to investigate) you get AUTOMATICALLY a summary of the incident , and you are consuming SCU costs.&lt;/P&gt;&lt;P&gt;I want a way either globally as a tenant option, or through a pwsh to be able to DISABLE this, or be able to PRESS the AI button AND THEN generate the AI reply (and consume SCU credits ..)&lt;/P&gt;&lt;P&gt;Current behavior:&lt;/P&gt;&lt;P&gt;Open Incident --&amp;gt; Copilot automatically generates Incident Summary --&amp;gt; SCUs ARE consumed&lt;/P&gt;&lt;P&gt;Desired behavior:&lt;/P&gt;&lt;P&gt;Open Incident --&amp;gt; No AI execution --&amp;gt; Click "Generate Summary" MANUALLY --&amp;gt; SCUs consumed&lt;/P&gt;&lt;P&gt;I am not talking about RBAC controls to assign WHO of my admins can use Security Copilot, I have set that, BUT I want my admin to decide IF they want AI to help them (and consume - pay for that SCU credits-costs) OR NOT !!&lt;/P&gt;&lt;P&gt;At the moment I havent found any solution, except to educate my admin to press CANCEL the moment he/she opens such an XDR dashboard ! :)&lt;/P&gt;&lt;P&gt;Does anyone knows something ?&lt;/P&gt;&lt;P&gt;Regards, Panos&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jul 2026 16:32:54 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/feature-request-manual-invocation-mode-for-embedded-security/m-p/4533804#M2716</guid>
      <dc:creator>PanosGR191</dc:creator>
      <dc:date>2026-07-05T16:32:54Z</dc:date>
    </item>
    <item>
      <title>Monthly news - July 2026</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/monthly-news-july-2026/ba-p/4532402</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Microsoft Defender&lt;/STRONG&gt;&lt;BR /&gt;Monthly news - July 2026 Edition&lt;/P&gt;
&lt;P&gt;This is our monthly "What's new" blog post, summarizing product updates and various new assets we released over the past month across our Defender products. In this edition, we are looking at all the goodness from June 2026. We are now including news related to Defender for Cloud in the Defender portal. For all other Defender for Cloud news, have a look at the dedicated Defender for Cloud Monthly News&amp;nbsp;&lt;A class="lia-internal-link lia-internal-url lia-internal-url-content-type-blog" href="https://techcommunity.microsoft.com/blog/microsoftdefendercloudblog/microsoft-defender-for-cloud-customer-newsletter/4525656" target="_blank" rel="noopener" data-lia-auto-title="here" data-lia-auto-title-active="0"&gt;here&lt;/A&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;🚀 New Virtual Ninja Show episode:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A class="lia-external-url" href="https://youtu.be/17qtl8RSFKA?si=_O1CgQpNJtQgk_dY" target="_blank" rel="noopener"&gt; Redefining identity security for the modern enterprise&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A class="lia-external-url" href="https://youtu.be/I24oxM6rL6E?si=rgXUPok9_jVu0SsQ" target="_blank" rel="noopener"&gt; One policy engine to govern them all: Securing agentic AI with Microsoft Purview&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A class="lia-external-url" href="https://youtu.be/q_7IXnBwv8c?si=94-NKofzzGx-3HkG" target="_blank" rel="noopener"&gt; Building a modern detection pipeline with ContentOps&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A class="lia-external-url" href="https://youtu.be/SzTEY3sY3lA?si=HJV1MKD8tJ63_EQT" target="_blank" rel="noopener"&gt;Securing local AI agents with Microsoft Defender&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A class="lia-external-url" href="https://youtu.be/AnQiZZkZO0s?si=xOnPdLRegN-RHbyh" target="_blank" rel="noopener"&gt;Microsoft Defender: Extending critical protection for emerging threats in Team&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Weekly Security News:&amp;nbsp;&lt;/STRONG&gt;We publish a short 1ish minute video every week with updates across our Microsoft Security stack. Subscribe to our&amp;nbsp;&lt;A href="https://www.youtube.com/@MicrosoftSecurityCommunity/shorts" target="_blank" rel="noopener"&gt;YouTube channel&lt;/A&gt;, so you don't miss the next episode.&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Actionable threat insights&lt;/STRONG&gt; (find all of them &lt;A class="lia-external-url" href="https://www.microsoft.com/en-us/security/blog/content-type/research/?ep_filter_topic=actionable-threat-insights" target="_blank" rel="noopener"&gt;here&lt;/A&gt;)&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://www.microsoft.com/en-us/security/blog/2026/06/30/securing-ai-agents-ai-tools-move-from-reading-acting/" target="_blank" rel="noopener"&gt;Securing AI agents: When AI tools move from reading to acting&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://www.microsoft.com/en-us/security/blog/2026/06/29/chromium-extension-uses-airelated-branding-redirect-browser-search/" target="_blank" rel="noopener"&gt;Chromium extension uses AI‑related branding to redirect browser search&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://www.microsoft.com/en-us/security/blog/2026/06/25/photo-zip-campaign-targeting-hospitality-industry-delivers-node-js-implant-persistent-access/" target="_blank" rel="noopener"&gt;Photo ZIP campaign targeting hospitality industry delivers Node.js implant for persistent access&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Microsoft Defender&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Two Workbooks capabilities in the unified Microsoft Defender portal moved to GA:
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Advanced Hunting connector &lt;/STRONG&gt;- build custom dashboards directly on top of Advanced Hunting (XDR) dat. Query XDR tables and visualize them in Workbooks for richer investigations and reports.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Workspace filter / multi-workspace experience&lt;/STRONG&gt; - scope and filter workbooks by workspace, with workspace selection integrated into the workbook itself rather than relying on the global selector.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;MTO Tenant Groups&lt;/STRONG&gt; let MSSPs and large enterprises organize their multitenant view in Microsoft Defender by grouping tenants logically (e.g., by region, business unit, or customer cohort). Learn more &lt;A class="lia-internal-link lia-internal-url lia-internal-url-content-type-blog" href="https://techcommunity.microsoft.com/blog/microsoftthreatprotectionblog/organize-your-multitenant-view-with-tenant-groups-in-microsoft-defender/4522992" target="_blank" rel="noopener" data-lia-auto-title="here" data-lia-auto-title-active="0"&gt;here&lt;/A&gt;.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Custom Detections support in Microsoft Sentinel Repositories&lt;/STRONG&gt;. Custom Detections can now be managed as code in Microsoft Sentinel Repositories, the same way customers already manage analytic rules, playbooks, parsers and workbooks. Detection engineers connect a GitHub or Azure DevOps repo to their workspace; Custom Detections placed in the repo are reconciled on every commit. A standalone Bicep path via the Microsoft Security Bicep extension lets teams deploy from any CI/CD pipeline (ADO Pipelines, GitHub Actions, custom runners).&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;(General Availability) The following advanced hunting schema tables are now generally available:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt;The &lt;/SPAN&gt;&lt;EM style="color: rgb(30, 30, 30);"&gt;CloudAuditEvents&lt;/EM&gt;&lt;SPAN style="color: rgb(30, 30, 30);"&gt; table contains information about cloud audit events for various cloud platforms protected by the organization's Defender for Cloud.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;The&amp;nbsp;&lt;EM&gt;CloudDnsEvents&lt;/EM&gt; table contains information about DNS activity events from cloud infrastructure environments.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;The&amp;nbsp;&lt;EM&gt;CloudProcessEvents&lt;/EM&gt; table contains information about process events in multicloud hosted environments.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;(Public Preview) The &lt;EM&gt;AgentsInfo &lt;/EM&gt;table in advanced hunting is now available in preview. The &lt;STRONG&gt;&lt;EM&gt;AIAgentsInfo &lt;/EM&gt;table is transitioning to this new table&lt;/STRONG&gt;, which provides a unified schema that supports agent inventory and governance for all agent types, including Copilot Studio, Microsoft Foundry, Microsoft 365 Copilot, third-party, and endpoint-discovered agents. &lt;STRONG&gt;Microsoft Agent 365 customers should use the AgentsInfo table today.&lt;/STRONG&gt; The &lt;EM&gt;AIAgentsInfo &lt;/EM&gt;table remains accessible until July 1, 2026. Update your queries to use AgentsInfo before this date. For more information, see &lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/defender-xdr/advanced-hunting-agentsinfo-table" target="_blank" rel="noopener"&gt;Advanced hunting schema - Naming changes&lt;/A&gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;For all other Sentinel News, have a look at the "&lt;A class="lia-internal-link lia-internal-url lia-internal-url-content-type-blog" href="https://techcommunity.microsoft.com/blog/microsoftsentinelblog/what%E2%80%99s-new-in-microsoft-sentinel-june-2026/4531902" target="_blank" rel="noopener" data-lia-auto-title="What's new in Microsoft Sentinel blog post - June edition" data-lia-auto-title-active="0"&gt;What's new in Microsoft Sentinel blog post - June edition&lt;/A&gt;"&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Identity Security&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;(Public Preview)&amp;nbsp;&lt;STRONG&gt;The Identity Security dashboard now includes a new Human identities card&lt;/STRONG&gt; that shows your human identities by source (Entra ID, SaaS, and on-premises), giving you a single view of where your human identities live. For more information, see &lt;A href="https://learn.microsoft.com/en-us/defender-for-identity/dashboard" target="_blank" rel="noopener"&gt;Identity Security dashboard&lt;/A&gt;.&lt;/LI&gt;
&lt;/UL&gt;
&lt;img&gt;Identity Security dashboard overview&lt;/img&gt;
&lt;UL&gt;
&lt;LI&gt;(Public Preview) On the Coverage and maturity page, the &lt;STRONG&gt;Review and improve coverage side panel&lt;/STRONG&gt; for SaaS Identities now includes an &lt;STRONG&gt;Observed column &lt;/STRONG&gt;and a &lt;STRONG&gt;Show Only Observed Applications&lt;/STRONG&gt; toggle. By default, the panel shows only SaaS applications detected in your environment. Turn off the toggle to see other supported SaaS applications you can onboard to expand your identity coverage. For more information, see &lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/defender-xdr/identity-security/coverage-maturity" target="_blank" rel="noopener"&gt;Coverage and maturity&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;New alerts were added to the Defender for Identity security alerts related to Microsoft Entra ID, Active Directory as well as other identity providers. For a full list of those new alerts, check out &lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/defender-for-identity/whats-new#new-defender-for-identity-security-alerts" target="_blank" rel="noopener"&gt;our documentation&lt;/A&gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Recent ShinyHunters attacks on Salesforce show how OAuth tokens and connected apps are being weaponized to bypass MFA at scale. &lt;STRONG&gt;The upgraded Salesforce connector for Defender for Cloud Apps&lt;/STRONG&gt; helps detect these attacks faster, with richer connected-app context and investigation-ready signals. Customers already using the connector are advised to enable the additional events in the Salesforce console for tighter protection, and eligible customers not yet using it are advised to connect Salesforce. &lt;A class="lia-external-url" href="https://learn.microsoft.com/defender-cloud-apps/release-notes#salesforce-connector-enhancements-preview" target="_blank"&gt;Learn more.&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Microsoft Defender for Endpoint / Microsoft Defender Vulnerability Management&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;(Public Preview) &lt;STRONG&gt;Local AI agent discovery&lt;/STRONG&gt;: as part of the Defender AI agents experience, Microsoft Defender now automatically discovers supported local AI agents running on onboarded Windows &amp;amp; macOS devices. Discovered agents appear as assets in the AI agent inventory, exposure map, and advanced hunting, giving security teams visibility into local AI agent usage across the organization. For more information, see&amp;nbsp;&lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/defender-endpoint/local-agent-discovery-overview" target="_blank" rel="noopener"&gt;Discover local AI agents&lt;/A&gt;.&lt;/P&gt;
&lt;img&gt;AI Assets page&lt;/img&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;(Preview) &lt;STRONG&gt;Local AI agent runtime protection&lt;/STRONG&gt; on Windows endpoints is now available in public preview. Microsoft Defender inspects the agent loop (user prompts, tool calls, and tool responses) and can block risky activity before it executes, helping stop prompt injection and unsafe agent actions at the device level. Blocked and audited events appear as alerts in Microsoft Defender to support incident correlation and investigation workflows.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;The &lt;STRONG&gt;&lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/defender-endpoint/defender-deployment-tool-windows" target="_blank" rel="noopener"&gt;new version of the Defender deployment tool&lt;/A&gt;&lt;/STRONG&gt; for Windows streamlines onboarding and enhances security by:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Bundling the onboarding package directly into the tool's executable.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Generating a key during deployment package creation that is required for running the tool.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Enabling users to configure an expiry date for the package to reduce the risk of unauthorized use. &lt;BR /&gt;In addition:&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;You have the option of downloading the package as either an .exe or a .zip file, whichever best suits your organization's needs.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;A new Deployment packages page in the Defender portal facilitates management of downloaded packages by providing centralized visibility into all the packages and their current status.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Now generally available: &lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/defender-endpoint/restrict-response-actions-high-value-assets" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;Selective Response Actions&lt;/STRONG&gt;&lt;/A&gt; enables organizations to tailor high-impact security operations on devices during onboarding. It provides precise control over how response actions are applied on Tier-0 systems and other high-value assets, helping maintain operational stability while delivering strong protection.&lt;/P&gt;
&lt;img&gt;Enable selective response actions&lt;/img&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;The &lt;STRONG&gt;new exposure score model &lt;/STRONG&gt;in Defender Vulnerability Management is now generally available. This model improves risk prioritization and recommendation impact accuracy by incorporating exploit prediction data (EPSS) and asset context factors such as internet-facing status and criticality. More details &lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/defender-vulnerability-management/tvm-exposure-score?tabs=preview-customers#exposure-score-model-updates-transition-overview" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Microsoft Secure Score now includes the &lt;STRONG&gt;Reduce unnecessary inbound internet exposure on internet-facing devices&lt;/STRONG&gt; recommendation, which helps identify devices that are accessible from the public internet and may represent unnecessary attack surface. This recommendation provides centralized visibility into internet-facing devices across the environment.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Many predefined SaaS application classification rules were added to the critical assets list. Have a look at &lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/security-exposure-management/whats-new#new-predefined-classifications" target="_blank"&gt;our documentation&lt;/A&gt; for the full list. These classifications require onboarding to Microsoft Defender for Cloud Apps.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Wed, 01 Jul 2026 09:30:09 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/monthly-news-july-2026/ba-p/4532402</guid>
      <dc:creator>HeikeRitter</dc:creator>
      <dc:date>2026-07-01T09:30:09Z</dc:date>
    </item>
    <item>
      <title>Defender of XDR - Quarantine - Lack of filter/search options</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/defender-of-xdr-quarantine-lack-of-filter-search-options/m-p/4532370#M2711</link>
      <description>&lt;P&gt;Hi Microsoft,&lt;/P&gt;&lt;P&gt;I love what you're doing with the Defender XDR portal, but could you please show some love to the Quarantine section soon?&lt;/P&gt;&lt;P&gt;On a daily basis, I have to review emails caught in quarantine for false positives, and the lack of search and filtering options is appalling.&lt;/P&gt;&lt;P&gt;As a company based in Denmark, 99% of legitimate emails come from .dk domains. Yet there is &lt;STRONG&gt;no way&lt;/STRONG&gt; to search for or filter on something this simple.&lt;/P&gt;&lt;P&gt;If I type .dk into the search box, I get 0 results, even though I can clearly see .dk sender addresses on the page. The filter options only allow me to enter full sender or recipient email addresses, which is of course almost useless in a quarantine-review context.&lt;/P&gt;&lt;P&gt;Some examples of filters that would be extremely useful:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sender domain ends with .dk&lt;/LI&gt;&lt;LI&gt;Sender domain contains .dk&lt;/LI&gt;&lt;LI&gt;URL domain filtering&lt;/LI&gt;&lt;LI&gt;Attachment name filtering&lt;/LI&gt;&lt;LI&gt;Saved filter views&lt;/LI&gt;&lt;LI&gt;More flexible search across message properties&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The Quarantine experience could be made dramatically better with relatively little effort.&lt;/P&gt;&lt;P&gt;So please, pretty please, give the Quarantine portal some attention. It's often the part of Defender that security teams interact with every single day.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2026 05:55:09 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/defender-of-xdr-quarantine-lack-of-filter-search-options/m-p/4532370#M2711</guid>
      <dc:creator>DarkingDK</dc:creator>
      <dc:date>2026-07-01T05:55:09Z</dc:date>
    </item>
    <item>
      <title>Microsoft Defender Incident – Handling incident severity change</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/microsoft-defender-incident-handling-incident-severity-change/m-p/4531082#M2707</link>
      <description>&lt;P&gt;There's no dedicated history/audit endpoint for field-level transitions (like "this incident went from Low → High at timestamp X") in the /security/incidents Graph API — the incident object only exposes the &lt;EM&gt;current&lt;/EM&gt; severity plus a lastUpdateDateTime, not a change log. So this isn't something you're missing; it genuinely doesn't exist as a queryable history today.&lt;/P&gt;&lt;P&gt;Also worth knowing before you build around it: &lt;STRONG&gt;Graph change notifications (webhooks) are not documented as supported for /security/incidents&lt;/STRONG&gt; — subscription/webhook support is only documented for the legacy /security/alerts resource, and that resource is deprecated with removal expected around April 2026. So polling is currently the only supported pattern for incidents specifically, not a limitation of your approach — there's no webhook alternative to fall back to yet.&lt;/P&gt;&lt;P&gt;Given that, the fix is in your polling strategy, not in finding a hidden feature: instead of filtering once at creation time and then ignoring the incident, poll using $filter=lastUpdateDateTime gt {last_poll_timestamp}. Since lastUpdateDateTime bumps on &lt;STRONG&gt;any&lt;/STRONG&gt; property change — including a severity escalation — this catches incidents that started as Low/Informational and later got escalated, without re-fetching everything.&lt;/P&gt;&lt;P&gt;A pattern that works well in practice:&lt;/P&gt;&lt;P&gt;GET /security/incidents?$filter=lastUpdateDateTime gt {last_poll_time}&amp;amp;$orderby=lastUpdateDateTime asc&lt;/P&gt;&lt;P&gt;Then in your own store, diff the incoming severity against what you last recorded for that id to detect the transition yourself — you're effectively reconstructing the history client-side since the API won't give it to you natively. Store (incidentId, severity, lastUpdateDateTime) on each poll and compare.&lt;/P&gt;&lt;P&gt;One gotcha: this still won't tell you the &lt;STRONG&gt;exact moment&lt;/STRONG&gt; the severity changed if multiple fields changed between polls — only that it changed sometime between your last two poll timestamps. If you need second-level precision on transition timing, you'd need to poll more frequently (your 5-minute interval is probably fine for SOC triage purposes, but not for precise SLA timestamping).&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 20:27:49 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/microsoft-defender-incident-handling-incident-severity-change/m-p/4531082#M2707</guid>
      <dc:creator>gokhantatar</dc:creator>
      <dc:date>2026-06-25T20:27:49Z</dc:date>
    </item>
    <item>
      <title>Is "Endpoint Security Policies" available to us? (error getting Intune policies)</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/is-quot-endpoint-security-policies-quot-available-to-us-error/m-p/4531003#M2706</link>
      <description>&lt;P&gt;Question&lt;/P&gt;&lt;P&gt;We'd like to use Defender \ Endpoint Security Policies.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that possible for my tenant's environment?&lt;/P&gt;&lt;P&gt;Getting below error on "Defender \ Endpoint Security Policies" page&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"There seems to be an issue getting your Intune policies"&lt;/P&gt;&lt;P&gt;Details of our environment&lt;/P&gt;&lt;P&gt;Purpose of defender&lt;/P&gt;&lt;P&gt;To protect our server fleet that's running outside of Azure&lt;/P&gt;&lt;P&gt;Tenant&amp;nbsp;&lt;/P&gt;&lt;P&gt;GCC - Moderate Scoped&lt;/P&gt;&lt;P&gt;Region&lt;/P&gt;&lt;P&gt;Commercial Azure East US 2&lt;/P&gt;&lt;P&gt;Subscription&lt;/P&gt;&lt;P&gt;Microsoft Defender for Servers Plan 1&lt;/P&gt;&lt;P&gt;(No other subscription, etc.)&lt;/P&gt;&lt;P&gt;Defender Client OS&lt;/P&gt;&lt;P&gt;Windows 2016, 2019, 2022&lt;/P&gt;&lt;P&gt;RHEL8, 9&lt;/P&gt;&lt;P&gt;(No desktops\laptops)&lt;/P&gt;&lt;P&gt;Agents installed on each Windows and Linux server&lt;/P&gt;&lt;P&gt;Defender is onboarded&lt;/P&gt;&lt;P&gt;Arc is onboarded&lt;/P&gt;&lt;P&gt;Configured Settings and Errors&lt;/P&gt;&lt;P&gt;Defender \ Settings \ Configuration management \ Enforcement scope&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://security.microsoft.com/securitysettings/endpoints/configuration_management2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error at top of page&lt;/P&gt;&lt;P&gt;"Intune is not configured to allow Microsoft Defender for Endpoint to manage security configuration settings."&lt;/P&gt;&lt;P&gt;Use MDE to enforce security configuration settings from Intune&lt;/P&gt;&lt;P&gt;Set to ON&lt;/P&gt;&lt;P&gt;Enable configuration management&lt;/P&gt;&lt;P&gt;Windows Server devices&lt;/P&gt;&lt;P&gt;On tagged devices&lt;/P&gt;&lt;P&gt;Windows Server Domain Controller devices&lt;/P&gt;&lt;P&gt;On tagged devices&lt;/P&gt;&lt;P&gt;Linux devices&lt;/P&gt;&lt;P&gt;On tagged devices&lt;/P&gt;&lt;P&gt;Security settings management for Microsoft Defender for Cloud onboarded devices.&lt;/P&gt;&lt;P&gt;Set to ON&lt;/P&gt;&lt;P&gt;Manage Security settings using Configuration Manager&lt;/P&gt;&lt;P&gt;Set to OFF&lt;/P&gt;&lt;P&gt;Defender \ Settings \ Configuration management \ Intune Permissions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://security.microsoft.com/securitysettings/endpoints/intune_permissions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Getting error&lt;/P&gt;&lt;P&gt;"Access needed&lt;/P&gt;&lt;P&gt;You don't have the right permissions in AAD to view this information (in addition to those you already have in MDE). To adjust your permissions, go to the AAD portal."&lt;/P&gt;&lt;P&gt;Defender \ Endpoint Security Policies&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://security.microsoft.com/policy-inventory&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On main page, getting below error&lt;/P&gt;&lt;P&gt;There seems to be an issue getting your Intune policies&lt;/P&gt;&lt;P&gt;If I try to make a new policy&lt;/P&gt;&lt;P&gt;There seems to be an issue loading the policy authoring wizard.&lt;/P&gt;&lt;P&gt;Intune \ Endpoint security&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://intune.microsoft.com/#view/Microsoft_Intune_Workflows/SecurityManagementMenu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Getting Error&lt;/P&gt;&lt;P&gt;You don't have access&lt;/P&gt;&lt;P&gt;Intune roles | My permissions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://intune.microsoft.com/#view/Microsoft_Intune_DeviceSettings/RolesLandingMenuBlade/~/myPermissions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You're an administrator with full permissions to all Microsoft Intune resources.&lt;/P&gt;&lt;P&gt;Intune roles | Administrator Licensing&lt;/P&gt;&lt;P&gt;https://intune.microsoft.com/#view/Microsoft_Intune_DeviceSettings/RolesLandingMenuBlade/~/administratorLicensing&lt;/P&gt;&lt;P&gt;Allow admins without an Intune license to access Intune. Their scope of access is determined by the Intune roles you've assigned them.&lt;/P&gt;&lt;P&gt;I've clicked the box "Allow access to unlicensed admins"&lt;/P&gt;&lt;P&gt;Alternatives&lt;/P&gt;&lt;P&gt;If Defender \ Endpoint Security Policies isn't available, as alternatives, I guess we could use&lt;/P&gt;&lt;P&gt;SCCM Antimalware policies to manage Windows servers&lt;/P&gt;&lt;P&gt;Deploying a central mdatp_managed.json to manage Linux servers&lt;/P&gt;&lt;P&gt;However, it would be greatly preferred to use the Defender \ Endpoint Security Policies feature for Windows and Linux&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 14:28:35 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/is-quot-endpoint-security-policies-quot-available-to-us-error/m-p/4531003#M2706</guid>
      <dc:creator>goslackware</dc:creator>
      <dc:date>2026-06-25T14:28:35Z</dc:date>
    </item>
    <item>
      <title>Securing the invisible workforce</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/securing-the-invisible-workforce/ba-p/4528611</link>
      <description>&lt;P&gt;Non-human identities are now the majority of the identity estate in most enterprises. Service principals access organizational resources across SharePoint, Azure, and Microsoft 365, Service accounts run critical business processes on-premises, OAuth apps move data across SaaS boundaries, and AI agents increasingly operate autonomously at machine speed.&lt;/P&gt;
&lt;P&gt;As NHIs have grown in number and importance, so to have the threats targeting them. &lt;A href="https://www.microsoft.com/en-us/security/blog/2024/01/25/midnight-blizzard-guidance-for-responders-on-nation-state-attack/" target="_blank" rel="noopener"&gt;Midnight Blizzard&lt;/A&gt; showed how damaging compromised NHI can be. Attackers moved laterally across cloud resources and accessed sensitive data without ever triggering user-centric controls like MFA. The challenge many security teams are faced with however is that they simply do not have the visibility into what NHI’s even exist within their organization. Unlike their human counterparts, NHI can vary drastically in purpose, behaviour and risk profile. The one consistency is that most organizations lack a formal process for their creation, management and governance. For instance, while these identities often carry high and standing privileges, those permissions are typically granted at creation and never revisited. They authenticate programmatically so they cannot be enrolled in, or benefit from the protections of multi-factor authentication.&lt;/P&gt;
&lt;P&gt;As AI adoption accelerates, this issue has become even more urgent. Every AI agent needs an identity to function. That identity accesses data, invokes APIs, and takes action, autonomously, continuously, and at an unprecedented velocity. &amp;nbsp;But because AI tooling has moved faster than guidance, many agents were never given identities of their own, many riding on existing Service Principles. This means that those ordinary app registrations may in fact represent autonomous agents making decisions and taking action. This new reality further compresses the window between compromise and impact and makes securing non-human identities a prerequisite for safely deploying AI at enterprise scale.&lt;/P&gt;
&lt;P&gt;Today, I am excited to share more about the non-human identity protection available within Microsoft Defender. These capabilities bring NHIs into the same unified platform where security teams already work and protect human identities with purpose-built experiences for discovery, risk assessment, business context, governance, threat detection, and attack disruption.&lt;/P&gt;
&lt;H2&gt;The Challenge:&lt;/H2&gt;
&lt;P&gt;We hear consistently from customers that they cannot answer fundamental questions about their NHI estate:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;How many non-human identities exist? &lt;/STRONG&gt;Across Entra ID, Active Directory, and SaaS applications, the true count consistently exceeds expectations, often by an order of magnitude.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Which ones are still in use? &lt;/STRONG&gt;NHIs accumulate over time. Decommissioning is rare and dormant identities retain active permissions indefinitely.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Which ones hold more access than they need? &lt;/STRONG&gt;Permissions are granted broadly at provisioning and seldom revisited. Over-privilege is not the exception—it is the default state.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Who is responsible for them? &lt;/STRONG&gt;Without established ownership, remediating a risky NHI requires significant manual effort just to identify the right person to engage.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Which ones are powering AI agents? &lt;/STRONG&gt;Many agents ride on NHIs created long before the agent existed, making them indistinguishable from routine integrations.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;These are the questions that drive the capabilities we are delivering.&lt;/P&gt;
&lt;H2&gt;Raising the bar for NHI protection with Defender&lt;/H2&gt;
&lt;P&gt;Microsoft Defender helps protect non-human identities through six integrated focus areas:&amp;nbsp;Visibility, Risk analysis, relationships and access mapping, governance policies, AI Agent awareness and Detection and Disruption. Together, these areas help organizations discover NHI risk, understand relationships and permissions, enforce governance, identify AI-driven identity activity, and detect or disrupt threats before they escalate.&lt;/P&gt;
&lt;H4&gt;1. Visibility:&lt;/H4&gt;
&lt;P&gt;When Entra service principals, Active Directory service accounts, and SaaS-connected OAuth apps are managed in separate consoles with separate workflows, security teams cannot form a coherent picture of NHI exposure. These gaps in visibility translate directly into gaps in protection.&lt;/P&gt;
&lt;P&gt;Defender delivers a unified identity inventory for both human and non-human identities within a single view and investigation workflow. For non-human identities, coverage includes:&lt;/P&gt;
&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;table border="1" style="width: 100%; height: 131px; border-width: 1px;"&gt;&lt;colgroup&gt;&lt;col style="width: 50%" /&gt;&lt;col style="width: 50%" /&gt;&lt;/colgroup&gt;&lt;tbody&gt;&lt;tr style="height: 26px;"&gt;&lt;td class="lia-align-center" style="height: 26px;"&gt;
&lt;P&gt;&lt;STRONG&gt;Source&lt;/STRONG&gt;&lt;/P&gt;
&lt;/td&gt;&lt;td class="lia-align-center" style="height: 26px;"&gt;&lt;STRONG&gt;Coverage&lt;/STRONG&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="height: 35px;"&gt;&lt;td style="height: 35px;"&gt;&lt;STRONG&gt;Microsoft Entra ID&lt;/STRONG&gt;&lt;/td&gt;&lt;td style="height: 35px;"&gt;All service principals&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="height: 35px;"&gt;&lt;td style="height: 35px;"&gt;&lt;STRONG&gt;Active Directory&lt;/STRONG&gt;&lt;/td&gt;&lt;td style="height: 35px;"&gt;All service accounts&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="height: 35px;"&gt;&lt;td style="height: 35px;"&gt;&lt;STRONG&gt;SaaS Apps&lt;/STRONG&gt;&lt;/td&gt;&lt;td style="height: 35px;"&gt;All OAuth-connected apps&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/DIV&gt;
&lt;img&gt;&lt;U&gt;Unified visibility across all non-human identities in a single pane of glass&lt;/U&gt;&lt;/img&gt;
&lt;P&gt;This consolidated inventory is the foundation that security insights, risk scoring, business context, governance, and threat detection all build on. Security teams work from one place, using the same investigation workflows they already use for human identities, across the entire NHI population.&lt;/P&gt;
&lt;H3&gt;2. Risk insights and analysis:&lt;/H3&gt;
&lt;P&gt;Visibility into what exists is the starting point. What security teams need next is a clear understanding of which identities carry risk, what kind of risk, and how they should prioritize. Similar to how we review risk signals for human identities, Defender continuously evaluates the NHI estate and surfaces findings across key risk pivots:&lt;/P&gt;
&lt;img&gt;Actionable insights into your unique NHI footprint&lt;/img&gt;
&lt;H6&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN class="lia-text-color-15"&gt;Unused Identities&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/H6&gt;
&lt;P&gt;NHIs that have not authenticated over extended periods but retain active permissions. These identities serve no current business purpose while remaining fully available for misuse if compromised.&lt;/P&gt;
&lt;H6&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN class="lia-text-color-15"&gt;Over-Privileged Identities&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/H6&gt;
&lt;P&gt;NHIs whose granted permissions significantly exceed their observed usage. Defender analyses the gap between what an identity &lt;EM&gt;can&lt;/EM&gt; do and what it &lt;EM&gt;actually does&lt;/EM&gt;, identifying where privilege can be safely reduced without impacting operations.&lt;/P&gt;
&lt;H6&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN class="lia-text-color-15"&gt;High-Privileged Identities&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/H6&gt;
&lt;P&gt;Some NHI’s however require elevated roles or broad permissions to perform their intended use. These NHIs pose the highest lateral movement risk if compromised. For context, these privileges can sometimes exceed the access held by admins in the organization.&lt;/P&gt;
&lt;H6&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN class="lia-text-color-15"&gt;Identity Risk Score for NHIs&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/H6&gt;
&lt;P&gt;The new Identity Risk Score within Defender also extends to NHI. Ever NHI now has a dynamic risk score , informed by Microsoft’s global threat intelligence, exposure indicators, and observed activity patterns.&lt;/P&gt;
&lt;P&gt;The score is fully explainable. For every NHI, Defender shows the specific factors that contributed—what combination of privilege, exposure, and activity drove the assessment, and why. Analysts see the reasoning directly: an identity scored high because it is unused, holds broad directory permissions, and is published by an unverified publisher. This means analysts can act on the score with confidence, without needing to conduct a separate investigation to understand what it means.&lt;/P&gt;
&lt;P&gt;These insights allow teams to rank their entire NHI estate by risk and systematically focus investigation where it matters most.&lt;/P&gt;
&lt;img&gt;Risk insights for NHI for effective prioritization&lt;/img&gt;
&lt;H3&gt;3. Relationship mapping:&lt;/H3&gt;
&lt;P&gt;Knowing that an NHI is risky is necessary but not sufficient for remediation. Security teams need business context: what application depends on this identity, who owns it, what resources can it access, and with what permissions.&lt;/P&gt;
&lt;P&gt;Without this information, even a critical finding stalls. Can we disable this identity, or will it break a production workflow? Who do we contact to coordinate? What is the scope of exposure if this identity is compromised?&lt;/P&gt;
&lt;P&gt;Defender introduces a Graph for NHIs that visually maps these relationships directly.&lt;/P&gt;
&lt;img&gt;Graph connecting risk to business context for faster remediation&lt;/img&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;What application depends on this NHI?&amp;nbsp;&lt;/STRONG&gt;Understanding downstream dependencies before taking remediation action.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Who owns it? &lt;/STRONG&gt;Identifying the owner for coordinated response.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;What resources or crown jewels does it access, and with what permissions? &lt;/STRONG&gt;Determining the sensitivity of accessed resources to assess actual severity.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;With this context directly available in the investigation experience, security teams can assess risk, evaluate business impact, and coordinate remediation without switching tools or conducting manual discovery.&lt;/P&gt;
&lt;H3&gt;4. Governance policies&lt;/H3&gt;
&lt;P&gt;When we extrapolate this out to enterprise scale, with thousands to tens of thousands of NHIs, manual remediation simply cannot keep pace with the rate at which risk accumulates. Organizations need governance policies that enforce decisions automatically and consistently.&lt;/P&gt;
&lt;P&gt;Defender enables this through governance policies. Organizations can define policies that leverage the insights Defender surfaces like unused timeframe, privilege level, risk score, over-privilege status, AI agent association and then map them to automated disablement of identities that exceed acceptable risk.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Example: &lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;An NHI that has been unused for 90+ days, holds high-privilege roles, and carries a risk score above 70 exceeds the organization’s risk tolerance → disable the identity.&lt;/EM&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;img /&gt;&lt;img&gt;Automated governance policies that turn risk insights into enforcement at scale&lt;/img&gt;
&lt;P&gt;This shifts NHI security from periodic audit cycles to continuous posture management. The NHI estate stays within organizational risk tolerance because policy enforces the standard automatically, at the scale the environment demands.&lt;/P&gt;
&lt;H3&gt;5. AI Agent awareness&lt;/H3&gt;
&lt;P&gt;Agents built on platforms like Copilot Studio, Azure AI Foundry, and third-party frameworks require identities to authenticate, access data, and take action. In practice, many agents operate using traditional NHI that were provisioned for other workloads, making them indistinguishable from routine integrations at the identity layer.&lt;/P&gt;
&lt;P&gt;The risk profile, however, is materially different:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Agents are autonomous. &lt;/STRONG&gt;They make decisions and execute actions without human approval at each step.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Agents are high-velocity. &lt;/STRONG&gt;They perform hundreds of operations per minute across multiple systems.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Agents interact with sensitive data. &lt;/STRONG&gt;They access documents, query databases, read communications, and invoke APIs, often with broad permissions to support flexible workflows.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;When a misconfigured identity backs an AI agent, the risk compounds significantly because the agent continues to operate autonomously, with legitimate access, at machine speed, across whatever resources it can reach.&lt;/P&gt;
&lt;P&gt;Defender infers which NHIs are used by AI agents and surfaces this signal directly in the inventory, risk insights, and assessment. This enables security teams to prioritize investigation of agent-backed NHIs and apply differentiated governance like stricter controls, shorter review cycles, and tighter privilege boundaries for identities backing&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img&gt;Visibility into service principals powering AI agents and their associated risk&lt;/img&gt;
&lt;H3&gt;6. Detection and disruption&lt;/H3&gt;
&lt;P&gt;Posture and governance reduce the attack surface. But when an attacker compromises a non-human identity, detection speed and response automation determine whether the attack is contained or succeeds.&lt;/P&gt;
&lt;P&gt;Microsoft Defender brings the same detection and disruption capabilities that protect human identities to the non-human estate.&lt;/P&gt;
&lt;H6&gt;&lt;STRONG&gt;&lt;SPAN class="lia-text-color-15"&gt;&lt;EM&gt;Threat Detection for NHIs&lt;/EM&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/H6&gt;
&lt;P&gt;Defender detects anomalous and malicious activity involving non-human identities using behavioral analytics and Microsoft’s global threat intelligence. Detections are purpose-built for how NHIs operate because the signals indicating compromise in a NHI is fundamentally different from those in a human account, and our detection models reflect that.&lt;/P&gt;
&lt;img&gt;Detecting anomalous and suspicious activities on non-human identities&lt;/img&gt;
&lt;P&gt;Every alert is enriched with full context from the identity inventory, risk insights, and graph. Analysts see not just what happened, but which identity was involved, what it can reach, who owns it, and how critical it is immediately, without manual correlation.&lt;/P&gt;
&lt;H6&gt;&lt;STRONG&gt;&lt;SPAN class="lia-text-color-15"&gt;&lt;EM&gt;Disrupting Attacker Persistence&lt;/EM&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/H6&gt;
&lt;P&gt;We are introducing new disruption capabilities designed to address the persistence techniques attackers use against non-human identities. These capabilities focus on the specific actions that turn a legitimate non-human Identity &amp;nbsp;into an attack path, such as adding credentials for off-tenant use or modifying permissions and role assignments to expand access.&lt;/P&gt;
&lt;P&gt;Rather than broad remediation, the approach targets the exact moves attackers use to establish and maintain control. By directly addressing actions like unauthorized credential additions and privilege expansion, these capabilities help remove attacker access while preserving legitimate application functionality.&lt;/P&gt;
&lt;H2&gt;Why This Maters&lt;/H2&gt;
&lt;P&gt;Every AI agent requires an identity. As organizations scale agent deployments, the NHI estate grows with them and inherits every existing gap: over-privilege, absent ownership, insufficient monitoring.&lt;/P&gt;
&lt;P&gt;What has changed is speed. An AI agent with a compromised identity operates autonomously and never sleeps. The window between compromise and impact has compressed to the point where periodic manual review is no longer adequate. Automated visibility, continuous risk assessment, policy-driven governance, and real-time detection and disruption are now requirements.&lt;/P&gt;
&lt;P&gt;The organizations investing in NHI protection today are building the security foundation their AI strategy depends on.&lt;/P&gt;
&lt;H2&gt;Getting Started&lt;/H2&gt;
&lt;P&gt;Non-human identity protection is available in Microsoft Defender today:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Visit the unified identity inventory &lt;/STRONG&gt;in Defender to see all NHIs across Entra ID, Active Directory, and SaaS.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Review risk insights &lt;/STRONG&gt;to identify unused, over-privileged, high-risk NHIs, and NHIs used by agents.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Explore the identity graph &lt;/STRONG&gt;to understand business context, ownership, and resource access.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Configure risk-based governance policies &lt;/STRONG&gt;to enforce organizational risk tolerance at scale.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;These capabilities are integrated into the same platform and workflows security teams already use for human identity protection—no separate tools, no additional deployment. Learn more about the NHI protections provided by Defender within our &lt;A href="https://learn.microsoft.com/en-us/defender-xdr/investigate-non-human-identities" target="_blank" rel="noopener"&gt;docs here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2026 12:35:52 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/securing-the-invisible-workforce/ba-p/4528611</guid>
      <dc:creator>Nagaraj Venkatesh</dc:creator>
      <dc:date>2026-06-17T12:35:52Z</dc:date>
    </item>
    <item>
      <title>Microsoft 365 Developer E5 license lacking endpoints and device on defender portal</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/microsoft-365-developer-e5-license-lacking-endpoints-and-device/m-p/4528003#M2704</link>
      <description>&lt;P&gt;Dear Support Team,&lt;/P&gt;&lt;P&gt;I am a microsoft certified trainer (MCT). I currently have a Microsoft 365 Developer E5 license assigned to my tenant. However, I have noticed that my Microsoft Defender portal (security.microsoft.com) is missing several critical features. For example, I cannot see the &lt;STRONG&gt;Endpoints&lt;/STRONG&gt; or &lt;STRONG&gt;Devices&lt;/STRONG&gt; menus, which is preventing me from implementing and testing Microsoft Defender for Endpoint.&lt;/P&gt;&lt;P&gt;Additionally, my Azure tenant and Microsoft 365 tenant are separate. This has created challenges when configuring security services such as Microsoft Sentinel (SIEM), as certain prerequisites and integrations require configuration through the Microsoft Defender portal. Due to the missing Defender features, I am unable to complete the necessary setup.&lt;/P&gt;&lt;P&gt;I would appreciate your assistance in understanding:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Why the Endpoints and Devices sections are unavailable in my Defender portal despite having a Microsoft 365 Developer E5 license.&lt;/LI&gt;&lt;LI&gt;Whether additional licensing, onboarding steps, or tenant configurations are required to enable Microsoft Defender for Endpoint features.&lt;/LI&gt;&lt;LI&gt;How best to integrate or align my separate Azure and Microsoft 365 tenants to support services such as Microsoft Sentinel and Defender XDR.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;These issues are significantly impacting my ability to evaluate and implement Microsoft's security solutions. I would appreciate any guidance or recommendations to resolve them.&lt;/P&gt;&lt;P&gt;Thank you for your assistance.&lt;/P&gt;&lt;P&gt;Kind regards,&lt;BR /&gt;[Your Name]&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jun 2026 13:22:02 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/microsoft-365-developer-e5-license-lacking-endpoints-and-device/m-p/4528003#M2704</guid>
      <dc:creator>Dozie</dc:creator>
      <dc:date>2026-06-13T13:22:02Z</dc:date>
    </item>
    <item>
      <title>Campaign-Centric Hunting with Microsoft Defender XDR and Microsoft Sentinel</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/campaign-centric-hunting-with-microsoft-defender-xdr-and/m-p/4527522#M2702</link>
      <description>&lt;P class="lia-align-justify"&gt;Phishing investigations usually start with one suspicious email.&lt;/P&gt;&lt;P class="lia-align-justify"&gt;A user reports a message.&lt;BR /&gt;An alert is generated.&lt;BR /&gt;An analyst opens the email details, checks the sender, reviews the URL, and tries to understand whether the message is malicious.&lt;/P&gt;&lt;P class="lia-align-justify"&gt;That is a normal starting point. However, in a real SOC investigation, one email is rarely the full story.&lt;/P&gt;&lt;P class="lia-align-justify"&gt;Attackers usually operate in campaigns. They reuse sender infrastructure, similar subjects, URLs, payloads, templates, and delivery techniques. A single email may be only one part of a wider phishing or malware campaign targeting multiple users.&lt;/P&gt;&lt;P class="lia-align-justify"&gt;This is why campaign-centric hunting is important.&lt;/P&gt;&lt;P class="lia-align-justify"&gt;I wrote this article from the perspective of a SOC analyst who often needs to move quickly from a single suspicious email to the full campaign impact. The goal is simple: use Microsoft Defender XDR and Microsoft Sentinel together to understand who was targeted, what was delivered, who clicked, and what should be prioritized first.&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Why Campaign-Centric Hunting&lt;/H2&gt;&lt;P&gt;When investigating a phishing or malware email, analysts usually need to answer practical questions:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How many users received messages from the same campaign?&lt;/LI&gt;&lt;LI&gt;Were the messages blocked, junked, delivered, or remediated?&lt;/LI&gt;&lt;LI&gt;Did any user click the URL?&lt;/LI&gt;&lt;LI&gt;Did anyone click through a Safe Links warning?&lt;/LI&gt;&lt;LI&gt;Were any priority or high-risk users affected?&lt;/LI&gt;&lt;LI&gt;Was the email removed after delivery?&lt;/LI&gt;&lt;LI&gt;Are there related Defender XDR or Sentinel incidents?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If we only investigate one message, we may miss the bigger picture.&lt;/P&gt;&lt;P&gt;Campaign-centric hunting helps the SOC move from this question:&lt;/P&gt;&lt;P&gt;Is this email malicious?&lt;/P&gt;&lt;P&gt;To this question:&lt;/P&gt;&lt;P&gt;What is the full impact of this campaign?&lt;/P&gt;&lt;P&gt;That shift is important because the response priority should be based on campaign impact, not only on a single alert.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;What Campaign Views Provides&lt;/H2&gt;&lt;P&gt;Campaign Views in Microsoft Defender for Office 365 help analysts investigate coordinated email attacks such as phishing and malware campaigns.&lt;/P&gt;&lt;P&gt;From Campaign Views, analysts can review campaign-level information such as:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Campaign name&lt;/LI&gt;&lt;LI&gt;Campaign type&lt;/LI&gt;&lt;LI&gt;Campaign subtype&lt;/LI&gt;&lt;LI&gt;Targeted users&lt;/LI&gt;&lt;LI&gt;Inboxed messages&lt;/LI&gt;&lt;LI&gt;Clicked users&lt;/LI&gt;&lt;LI&gt;Visited links&lt;/LI&gt;&lt;LI&gt;Sender domains&lt;/LI&gt;&lt;LI&gt;Sender IPs&lt;/LI&gt;&lt;LI&gt;Payload URLs&lt;/LI&gt;&lt;LI&gt;Delivery actions&lt;/LI&gt;&lt;LI&gt;Campaign timeline&lt;/LI&gt;&lt;LI&gt;Campaign flow&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This is useful during triage because it quickly shows whether an email is part of a wider attack.&lt;/P&gt;&lt;P&gt;For example, one reported phishing message may look small at first. But if Campaign Views shows that the same campaign targeted 50 users, delivered messages to 15 inboxes, and had 2 users click the URL, the investigation becomes much more urgent.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Where CampaignInfo Fits&lt;/H2&gt;&lt;P&gt;The CampaignInfo table gives analysts a KQL-based way to query campaign-related data.&lt;/P&gt;&lt;P&gt;Some useful fields are:&lt;/P&gt;&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;Field&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Purpose&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;CampaignId&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Unique identifier for the campaign&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;CampaignName&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Name of the campaign&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;CampaignType&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Campaign category, such as Phish or Malware&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;CampaignSubtype&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Additional context, such as brand being phished or malware family&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;NetworkMessageId&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Unique identifier for the email message&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;RecipientEmailAddress&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Recipient affected by the campaign&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;Timestamp&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Time when the event was recorded&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/DIV&gt;&lt;P&gt;For correlation, the most important field is usually:&lt;/P&gt;&lt;P&gt;NetworkMessageId&lt;/P&gt;&lt;P&gt;This field can help connect campaign data with other Defender XDR email tables, including:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;EmailEvents&lt;/LI&gt;&lt;LI&gt;UrlClickEvents&lt;/LI&gt;&lt;LI&gt;EmailPostDeliveryEvents&lt;/LI&gt;&lt;LI&gt;EmailAttachmentInfo&lt;/LI&gt;&lt;LI&gt;EmailUrlInfo&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This makes CampaignInfo a useful pivot table for campaign-level hunting.&lt;/P&gt;&lt;P&gt;Important note: CampaignInfo is currently documented as Preview. Before using these queries in production analytics rules, validate the table availability, schema, and results in your own tenant.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Practical Scenario&lt;/H2&gt;&lt;P&gt;An analyst receives a phishing alert in Microsoft Defender XDR. The alert is related to a user who received a suspicious email with a credential-harvesting URL.&lt;/P&gt;&lt;P&gt;The analyst opens Campaign Views and sees that the message belongs to a wider phishing campaign.&lt;/P&gt;&lt;P&gt;At that point, the investigation should not stop with the original user.&lt;/P&gt;&lt;P&gt;The analyst should now ask:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Who else received this campaign?&lt;/LI&gt;&lt;LI&gt;How many messages were delivered?&lt;/LI&gt;&lt;LI&gt;Which users clicked?&lt;/LI&gt;&lt;LI&gt;Did any users click through the Safe Links warning?&lt;/LI&gt;&lt;LI&gt;Were the messages removed after delivery?&lt;/LI&gt;&lt;LI&gt;Are there related incidents in Microsoft Sentinel?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The investigation flow could look like this:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Start from Campaign Views in Microsoft Defender XDR.&lt;/LI&gt;&lt;LI&gt;Identify the campaign details.&lt;/LI&gt;&lt;LI&gt;Use CampaignInfo to list affected users and messages.&lt;/LI&gt;&lt;LI&gt;Join with EmailEvents to validate delivery status.&lt;/LI&gt;&lt;LI&gt;Join with UrlClickEvents to identify user interaction.&lt;/LI&gt;&lt;LI&gt;Join with EmailPostDeliveryEvents to confirm remediation.&lt;/LI&gt;&lt;LI&gt;Review related Microsoft XDR incidents in Microsoft Sentinel.&lt;/LI&gt;&lt;LI&gt;Prioritize response based on campaign impact.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Query 1: List Recent Campaigns&lt;/H2&gt;&lt;P&gt;The first query gives a simple overview of recent campaigns.&lt;/P&gt;&lt;P&gt;CampaignInfo&lt;BR /&gt;| where Timestamp &amp;gt; ago(14d)&lt;BR /&gt;| summarize&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstSeen = min(Timestamp),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LastSeen = max(Timestamp),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AffectedUsers = dcount(RecipientEmailAddress),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Messages = dcount(NetworkMessageId)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by CampaignId, CampaignName, CampaignType, CampaignSubtype&lt;BR /&gt;| order by LastSeen desc&lt;/P&gt;&lt;P&gt;This helps analysts quickly identify campaigns that affected the organization during the selected period.&lt;/P&gt;&lt;P&gt;Useful questions to ask from this output:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Which campaigns are most recent?&lt;/LI&gt;&lt;LI&gt;Which campaigns affected the most users?&lt;/LI&gt;&lt;LI&gt;Are the campaigns phishing, malware, or spam?&lt;/LI&gt;&lt;LI&gt;Is there a specific brand or malware family in the subtype?&lt;/LI&gt;&lt;LI&gt;Are similar campaigns appearing repeatedly?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Query 2: Understand Delivery Impact&lt;/H2&gt;&lt;P&gt;After identifying campaigns, the next step is to understand delivery impact.&lt;/P&gt;&lt;P&gt;A campaign that was fully blocked is different from a campaign that reached user inboxes.&lt;/P&gt;&lt;P&gt;let Campaigns =&lt;BR /&gt;CampaignInfo&lt;BR /&gt;| where Timestamp &amp;gt; ago(14d)&lt;BR /&gt;| project&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignType,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignSubtype,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NetworkMessageId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecipientEmailAddress;&lt;BR /&gt;Campaigns&lt;BR /&gt;| join kind=leftouter (&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EmailEvents&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | where Timestamp &amp;gt; ago(14d)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | project&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NetworkMessageId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecipientEmailAddress,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Subject,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SenderFromAddress,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SenderFromDomain,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SenderIPv4,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DeliveryAction,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DeliveryLocation,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ThreatTypes,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DetectionMethods,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Timestamp&lt;BR /&gt;) on NetworkMessageId, RecipientEmailAddress&lt;BR /&gt;| summarize&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Messages = dcount(NetworkMessageId),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AffectedUsers = dcount(RecipientEmailAddress),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Subjects = make_set(Subject, 5),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SenderDomains = make_set(SenderFromDomain, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SenderIPs = make_set(SenderIPv4, 10)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by CampaignId, CampaignName, CampaignType, CampaignSubtype, DeliveryAction, DeliveryLocation&lt;BR /&gt;| order by AffectedUsers desc, Messages desc&lt;/P&gt;&lt;P&gt;This query helps separate campaigns that were blocked from campaigns that actually reached users.&lt;/P&gt;&lt;P&gt;From a SOC perspective, delivered messages deserve closer attention, especially if they reached the inbox.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Query 3: Identify Users Who Clicked Campaign URLs&lt;/H2&gt;&lt;P&gt;Delivery is important, but clicks usually increase the priority of the incident.&lt;/P&gt;&lt;P&gt;This query joins campaign data with UrlClickEvents.&lt;/P&gt;&lt;P&gt;let Campaigns =&lt;BR /&gt;CampaignInfo&lt;BR /&gt;| where Timestamp &amp;gt; ago(14d)&lt;BR /&gt;| project&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignType,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignSubtype,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NetworkMessageId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecipientEmailAddress;&lt;BR /&gt;Campaigns&lt;BR /&gt;| join kind=inner (&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UrlClickEvents&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | where Timestamp &amp;gt; ago(14d)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | project&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NetworkMessageId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AccountUpn,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActionType,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IsClickedThrough,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ThreatTypes,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DetectionMethods,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IPAddress,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Workload,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickTime = Timestamp&lt;BR /&gt;) on NetworkMessageId&lt;BR /&gt;| summarize&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstClick = min(ClickTime),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LastClick = max(ClickTime),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickEvents = count(),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickedUsers = dcount(AccountUpn),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickThroughUsers = dcountif(AccountUpn, IsClickedThrough == true),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickedUrls = make_set(Url, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SourceIPs = make_set(IPAddress, 10)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by CampaignId, CampaignName, CampaignType, CampaignSubtype&lt;BR /&gt;| order by ClickThroughUsers desc, ClickedUsers desc, LastClick desc&lt;/P&gt;&lt;P&gt;This query helps identify campaigns where users interacted with the payload.&lt;/P&gt;&lt;P&gt;If a user clicked a phishing URL, the next step should usually include identity-focused investigation, such as reviewing sign-in activity, MFA status, session activity, and possible risky sign-ins.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Query 4: Focus on Click-Through Events&lt;/H2&gt;&lt;P&gt;Safe Links may block access to a malicious site. In some cases, however, a user may continue through a warning page.&lt;/P&gt;&lt;P&gt;Those cases should be reviewed carefully.&lt;/P&gt;&lt;P&gt;let Campaigns =&lt;BR /&gt;CampaignInfo&lt;BR /&gt;| where Timestamp &amp;gt; ago(30d)&lt;BR /&gt;| project&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignType,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignSubtype,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NetworkMessageId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecipientEmailAddress;&lt;BR /&gt;Campaigns&lt;BR /&gt;| join kind=inner (&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UrlClickEvents&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | where Timestamp &amp;gt; ago(30d)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | where IsClickedThrough == true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | project&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NetworkMessageId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AccountUpn,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActionType,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ThreatTypes,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IPAddress,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickTime = Timestamp&lt;BR /&gt;) on NetworkMessageId&lt;BR /&gt;| project&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickTime,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignType,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignSubtype,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AccountUpn,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecipientEmailAddress,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActionType,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ThreatTypes,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IPAddress&lt;BR /&gt;| order by ClickTime desc&lt;/P&gt;&lt;P&gt;This is one of the most useful views during incident response.&lt;/P&gt;&lt;P&gt;A click-through event does not automatically mean compromise, but it is a strong reason to investigate the user account further.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Query 5: Confirm Post-Delivery Remediation&lt;/H2&gt;&lt;P&gt;A malicious message may be delivered first and removed later by ZAP, AIR, or manual remediation.&lt;/P&gt;&lt;P&gt;This query joins CampaignInfo with EmailPostDeliveryEvents.&lt;/P&gt;&lt;P&gt;let Campaigns =&lt;BR /&gt;CampaignInfo&lt;BR /&gt;| where Timestamp &amp;gt; ago(30d)&lt;BR /&gt;| project&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignType,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignSubtype,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NetworkMessageId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecipientEmailAddress;&lt;BR /&gt;Campaigns&lt;BR /&gt;| join kind=leftouter (&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EmailPostDeliveryEvents&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | where Timestamp &amp;gt; ago(30d)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | project&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NetworkMessageId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecipientEmailAddress,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemediationTime = Timestamp,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Action,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActionType,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActionTrigger,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActionResult,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DeliveryLocation,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SourceLocation&lt;BR /&gt;) on NetworkMessageId, RecipientEmailAddress&lt;BR /&gt;| summarize&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemediatedMessages = dcountif(NetworkMessageId, isnotempty(ActionType)),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemediationTypes = make_set(ActionType, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemediationResults = make_set(ActionResult, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LastRemediation = max(RemediationTime)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by CampaignId, CampaignName, CampaignType, CampaignSubtype&lt;BR /&gt;| order by LastRemediation desc&lt;/P&gt;&lt;P&gt;This helps answer a very important question:&lt;/P&gt;&lt;P&gt;Were the delivered malicious messages actually removed?&lt;/P&gt;&lt;P&gt;This is useful for both SOC triage and reporting because it shows not only detection, but also response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Query 6: Campaign Blast Radius Summary&lt;/H2&gt;&lt;P&gt;The following query combines campaign, delivery, click, and remediation data into one campaign-level view.&lt;/P&gt;&lt;P&gt;let TimeRange = 30d;&lt;BR /&gt;let Campaigns =&lt;BR /&gt;CampaignInfo&lt;BR /&gt;| where Timestamp &amp;gt; ago(TimeRange)&lt;BR /&gt;| project&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignType,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CampaignSubtype,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NetworkMessageId,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecipientEmailAddress;&lt;BR /&gt;let Delivery =&lt;BR /&gt;EmailEvents&lt;BR /&gt;| where Timestamp &amp;gt; ago(TimeRange)&lt;BR /&gt;| summarize&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DeliveryActions = make_set(DeliveryAction, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DeliveryLocations = make_set(DeliveryLocation, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DeliveredMessages = dcountif(NetworkMessageId, DeliveryAction =~ "Delivered"),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; JunkedMessages = dcountif(NetworkMessageId, DeliveryAction =~ "Junked"),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BlockedMessages = dcountif(NetworkMessageId, DeliveryAction =~ "Blocked"),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Subjects = make_set(Subject, 5),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SenderDomains = make_set(SenderFromDomain, 10)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by NetworkMessageId, RecipientEmailAddress;&lt;BR /&gt;let Clicks =&lt;BR /&gt;UrlClickEvents&lt;BR /&gt;| where Timestamp &amp;gt; ago(TimeRange)&lt;BR /&gt;| summarize&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickEvents = count(),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickThroughEvents = countif(IsClickedThrough == true),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstClick = min(Timestamp),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LastClick = max(Timestamp),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickedUrls = make_set(Url, 10)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by NetworkMessageId;&lt;BR /&gt;let Remediation =&lt;BR /&gt;EmailPostDeliveryEvents&lt;BR /&gt;| where Timestamp &amp;gt; ago(TimeRange)&lt;BR /&gt;| summarize&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemediationActions = make_set(ActionType, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LastRemediation = max(Timestamp)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by NetworkMessageId, RecipientEmailAddress;&lt;BR /&gt;Campaigns&lt;BR /&gt;| join kind=leftouter Delivery on NetworkMessageId, RecipientEmailAddress&lt;BR /&gt;| join kind=leftouter Clicks on NetworkMessageId&lt;BR /&gt;| join kind=leftouter Remediation on NetworkMessageId, RecipientEmailAddress&lt;BR /&gt;| summarize&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AffectedUsers = dcount(RecipientEmailAddress),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Messages = dcount(NetworkMessageId),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DeliveredMessages = sum(DeliveredMessages),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; JunkedMessages = sum(JunkedMessages),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BlockedMessages = sum(BlockedMessages),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TotalClickEvents = sum(ClickEvents),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickThroughEvents = sum(ClickThroughEvents),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Subjects = make_set(Subjects, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SenderDomains = make_set(SenderDomains, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickedUrls = make_set(ClickedUrls, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemediationActions = make_set(RemediationActions, 10),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LastClick = max(LastClick),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LastRemediation = max(LastRemediation)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by CampaignId, CampaignName, CampaignType, CampaignSubtype&lt;BR /&gt;| extend SuggestedPriority =&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClickThroughEvents &amp;gt; 0, "High",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TotalClickEvents &amp;gt; 0, "Medium",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DeliveredMessages &amp;gt; 0, "Medium",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Low"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;| order by SuggestedPriority asc, AffectedUsers desc, Messages desc&lt;/P&gt;&lt;P&gt;This type of query can be useful during hunting sessions, incident review, and campaign reporting.&lt;/P&gt;&lt;P&gt;The goal is not only to collect more data. The goal is to help the analyst decide what needs attention first.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Correlating Campaign Activity with Microsoft Sentinel&lt;/H2&gt;&lt;P&gt;When Microsoft Defender XDR is connected to Microsoft Sentinel, incidents and alerts can be synchronized into the Sentinel incident queue.&lt;/P&gt;&lt;P&gt;This allows the SOC to correlate campaign-related email activity with other security signals, such as:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Suspicious sign-ins&lt;/LI&gt;&lt;LI&gt;Identity alerts&lt;/LI&gt;&lt;LI&gt;Endpoint alerts&lt;/LI&gt;&lt;LI&gt;Cloud app activity&lt;/LI&gt;&lt;LI&gt;OAuth consent activity&lt;/LI&gt;&lt;LI&gt;Data exfiltration attempts&lt;/LI&gt;&lt;LI&gt;Related Microsoft XDR incidents&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For example, if a user clicked a phishing URL, the SOC can then review whether the same user had suspicious sign-in activity shortly after the click.&lt;/P&gt;&lt;P&gt;The following query is a simple starting point for reviewing Microsoft XDR incidents in Microsoft Sentinel.&lt;/P&gt;&lt;P&gt;SecurityIncident&lt;BR /&gt;| where TimeGenerated &amp;gt; ago(30d)&lt;BR /&gt;| where ProviderName == "Microsoft XDR"&lt;BR /&gt;| where Title has_any ("phish", "phishing", "email", "malware", "campaign")&lt;BR /&gt;| summarize&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Incidents = count(),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HighSeverity = countif(Severity == "High"),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MediumSeverity = countif(Severity == "Medium"),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Closed = countif(Status == "Closed"),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Active = countif(Status == "Active")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by bin(TimeGenerated, 1d)&lt;BR /&gt;| order by TimeGenerated desc&lt;/P&gt;&lt;P&gt;This query does not replace campaign hunting. It simply helps analysts understand how email-related activity is represented in the Sentinel incident queue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Suggested SOC Workflow&lt;/H2&gt;&lt;P&gt;A practical campaign-centric workflow could look like this:&lt;/P&gt;&lt;H3&gt;Step 1: Start from Campaign Views&lt;/H3&gt;&lt;P&gt;Review campaigns with delivered messages, clicked users, visited links, or high user impact.&lt;/P&gt;&lt;H3&gt;Step 2: Pivot to KQL&lt;/H3&gt;&lt;P&gt;Use CampaignInfo to list campaign-related messages and affected recipients.&lt;/P&gt;&lt;H3&gt;Step 3: Validate Delivery&lt;/H3&gt;&lt;P&gt;Join with EmailEvents to confirm whether messages were blocked, junked, delivered, or replaced.&lt;/P&gt;&lt;H3&gt;Step 4: Review User Interaction&lt;/H3&gt;&lt;P&gt;Join with UrlClickEvents to identify users who clicked URLs or clicked through Safe Links warnings.&lt;/P&gt;&lt;H3&gt;Step 5: Confirm Remediation&lt;/H3&gt;&lt;P&gt;Join with EmailPostDeliveryEvents to confirm whether delivered messages were removed after delivery.&lt;/P&gt;&lt;H3&gt;Step 6: Correlate in Sentinel&lt;/H3&gt;&lt;P&gt;Review related Microsoft XDR incidents and correlate with identity, endpoint, and cloud activity.&lt;/P&gt;&lt;H3&gt;Step 7: Decide Response&lt;/H3&gt;&lt;P&gt;Depending on the impact, the SOC may decide to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Escalate the incident&lt;/LI&gt;&lt;LI&gt;Notify affected users&lt;/LI&gt;&lt;LI&gt;Review user sign-ins&lt;/LI&gt;&lt;LI&gt;Revoke user sessions&lt;/LI&gt;&lt;LI&gt;Reset passwords&lt;/LI&gt;&lt;LI&gt;Block sender domains or URLs&lt;/LI&gt;&lt;LI&gt;Submit false negatives&lt;/LI&gt;&lt;LI&gt;Create a watchlist for related indicators&lt;/LI&gt;&lt;LI&gt;Tune analytics rules or response processes&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Suggested Priority Logic&lt;/H2&gt;&lt;P&gt;Not every campaign needs the same level of response.&lt;/P&gt;&lt;P&gt;A simple triage model could be:&lt;/P&gt;&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;Condition&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Suggested priority&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;Campaign blocked before delivery&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Low&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;Campaign delivered to junk&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Low to Medium&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;Campaign delivered to inbox&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Medium&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;Campaign delivered to multiple inboxes&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Medium to High&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;User clicked URL&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;High&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;User clicked through warning&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;High&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;Priority account clicked&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;High&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;Click followed by suspicious sign-in&lt;/P&gt;&lt;/td&gt;&lt;td&gt;&lt;P&gt;Critical&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/DIV&gt;&lt;P&gt;This model should be adapted to each organization’s risk profile and response process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;Limitations and Things to Validate&lt;/H2&gt;&lt;P&gt;Before using this approach in production, validate the following:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Defender for Office 365 Plan 2 availability&lt;/LI&gt;&lt;LI&gt;Campaign Views permissions&lt;/LI&gt;&lt;LI&gt;CampaignInfo table availability&lt;/LI&gt;&lt;LI&gt;Defender XDR connector configuration&lt;/LI&gt;&lt;LI&gt;Advanced hunting event streaming&lt;/LI&gt;&lt;LI&gt;Field names in your environment&lt;/LI&gt;&lt;LI&gt;Retention period&lt;/LI&gt;&lt;LI&gt;Data latency&lt;/LI&gt;&lt;LI&gt;Join behavior using NetworkMessageId&lt;/LI&gt;&lt;LI&gt;Whether click events can be joined to email metadata in all cases&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;One important limitation is that some URL click events may not join cleanly with email metadata. For example, clicks from Drafts or Sent Items may not have the same message metadata available for correlation.&lt;/P&gt;&lt;P&gt;Also, because CampaignInfo is currently documented as Preview, I would avoid depending on it alone for critical production automation without testing and validation.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2026 12:34:22 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/campaign-centric-hunting-with-microsoft-defender-xdr-and/m-p/4527522#M2702</guid>
      <dc:creator>klianos</dc:creator>
      <dc:date>2026-06-11T12:34:22Z</dc:date>
    </item>
    <item>
      <title>Pending Approval/Provisioning for Microsoft Defender XDR Lab/Trial Environment</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/pending-approval-provisioning-for-microsoft-defender-xdr-lab/m-p/4527236#M2701</link>
      <description>&lt;P&gt;Hello Microsoft Community Team,&lt;/P&gt;&lt;P&gt;On &lt;STRONG&gt;June 26, 2026&lt;/STRONG&gt;, our organization applied for a &lt;STRONG&gt;Microsoft 365 Developer Environment / Free Trial&lt;/STRONG&gt; to support evaluation of the Microsoft Defender XDR Lab environment.&lt;/P&gt;&lt;P&gt;To date, the environment has not been provisioned, and we have not received any status updates or confirmation.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Impact:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Current Status:&lt;/STRONG&gt; We are currently utilizing our production environment to test project capabilities, which poses risks and limitations.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Future Intent:&lt;/STRONG&gt; Our organization plans to transition to a full, paid Business/Enterprise purchase immediately upon proving the platform’s benefits.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Urgency:&lt;/STRONG&gt; This delay is stalling our evaluation phase. We urgently need this environment onboarded and activated so we can proceed with deployment tests and subsequent procurement.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Request:&lt;/STRONG&gt; Please review the status of our registration and expedite the onboarding/provisioning of this developer environment.&lt;/P&gt;&lt;P&gt;Thank you for your prompt assistance.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2026 14:43:13 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/pending-approval-provisioning-for-microsoft-defender-xdr-lab/m-p/4527236#M2701</guid>
      <dc:creator>TechDefender</dc:creator>
      <dc:date>2026-06-10T14:43:13Z</dc:date>
    </item>
    <item>
      <title>Operational Notes on Microsoft Security Copilot Agents in Defender XDR and Microsoft Entra ID</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/operational-notes-on-microsoft-security-copilot-agents-in/m-p/4525826#M2696</link>
      <description>&lt;P&gt;Microsoft Security Copilot is now becoming more visible inside day-to-day security operations, especially through embedded experiences and agent-based workflows across Microsoft Defender XDR, Microsoft Entra ID, Microsoft Intune, and Microsoft Purview.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Instead of looking at Security Copilot only as a standalone prompt interface, SOC and identity teams should also understand how Security Copilot agents are deployed, how they consume Security Compute Units, how they appear in operational workflows, and where activity can be monitored.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This post summarizes practical observations from a security operations perspective, with a focus on Microsoft Defender XDR, Microsoft Entra ID, usage monitoring, and KQL-based activity review.&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H1&gt;Licensing &amp;amp; Capacity Units&lt;/H1&gt;&lt;H3&gt;Requirements&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;Requires eligible Microsoft security licensing, typically:&lt;UL&gt;&lt;LI&gt;Microsoft 365 E5&lt;/LI&gt;&lt;LI&gt;Microsoft 365 E7&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;Security Compute Units (SCUs)&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;Security Copilot capacity is measured using&amp;nbsp;&lt;STRONG&gt;Security Compute Units (SCUs)&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;SCUs are billed based on&amp;nbsp;&lt;STRONG&gt;provisioned capacity&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;Indicative pricing:&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;$4 per Provisionied SCU/hour&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;$6 per Overage SCU/hour&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Billing is calculated&amp;nbsp;&lt;STRONG&gt;hourly&lt;/STRONG&gt;, based on the amount of SCUs provisioned.&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;Included Capacity&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;Organizations with:&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;1,000 Microsoft 365 E5 licenses&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Receive:&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;400 included SCUs&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Included SCUs are shared across the tenant within a common capacity pool.&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;Scaling&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;SCU capacity can be scaled dynamically based on operational requirements and workload demand.&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;Data Retention&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;Security Copilot session and interaction data without active SCU-backed retention is typically retained for:&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;90 days&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H1&gt;Security Copilot Agents - Microsoft Defender&lt;/H1&gt;&lt;P&gt;This section outlines the Microsoft Security Copilot agents currently available in the Microsoft Defender portal.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Name&lt;/STRONG&gt;&lt;STRONG&gt;Key characteristics &lt;/STRONG&gt;Security Alert Triage Agent (Preview)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Manual setup from Defender portal&lt;/LI&gt;&lt;LI&gt;Automatically creates Unified RBAC custom role&lt;/LI&gt;&lt;LI&gt;Runs automatically when a user reports a suspicious email or when a new supported alert is generated, supported alert sources:&amp;nbsp;MDI, MDC, MDO&lt;/LI&gt;&lt;LI&gt;If an alert tuning rule is enabled, it will be automatically disabled when the agent is deployed.&lt;/LI&gt;&lt;LI&gt;Creates and connects with agentic user account:&amp;nbsp;Phishing Triage Agent (Security Copilot)&lt;/LI&gt;&lt;LI&gt;Automatic alert assignment to SecurityCopilotAgentUser-db16fec3-f1fb-4632-843e-46d07408c584@&amp;lt;tenant-domain&amp;gt;Alert was assigned to Phishing Triage Agent (Security Copilot).&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Adds Tag Agent&amp;nbsp;&lt;/STRONG&gt;to the created Incidents&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Threat Hunting Agent&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Manual setup from Defender portal&lt;/LI&gt;&lt;LI&gt;Automatically creates Unified RBAC custom role&lt;/LI&gt;&lt;LI&gt;This agent runs manually. There isn't an automatic trigger.&lt;/LI&gt;&lt;LI&gt;Creates and connects with agentic user account:&amp;nbsp;Threat Hunting Agent (Security Copilot)&lt;/LI&gt;&lt;LI&gt;Analyst Questions in natural language&lt;/LI&gt;&lt;LI&gt;Generates and executed KQL queries in Advanced hunting&lt;/LI&gt;&lt;LI&gt;Provides charts, dynamic follow-up questions and remediation actions recommendations&lt;/LI&gt;&lt;LI&gt;No activity is identified from agent's identity during agent execution&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Threat Intelligence Briefing Agent&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Manual setup from Defender portal&lt;/LI&gt;&lt;LI&gt;Provides automated TI briefing summary&lt;/LI&gt;&lt;LI&gt;Configured from&amp;nbsp;&lt;A href="https://security.microsoft.com/securitysettings/defender/agent_configuration-threatintelligencebriefingagent" target="_blank" rel="noopener"&gt;https://security.microsoft.com/securitysettings/defender/agent_configuration-threatintelligencebriefingagent&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Security Analyst Agent&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Manual setup from Defender portal&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Dynamic Threat Detection Agent (Preview)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Automatically enabled&lt;/LI&gt;&lt;LI&gt;always-on, runs continuously in the background&lt;/LI&gt;&lt;LI&gt;Correlates:&amp;nbsp;Alerts, Security events, Behavioral anomalies,&amp;nbsp; TI signals&lt;/LI&gt;&lt;LI&gt;Generates Alerts with&amp;nbsp;&lt;STRONG&gt;Detection Source: Security Copilot&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;The Alerts can be correlated with existing Multi-Stage Incidents&lt;/LI&gt;&lt;LI&gt;No agentic user account identity is used by this agent&lt;/LI&gt;&lt;LI&gt;Available free of charge during public preview, will begin consuming Security Compute Units (SCUs) once generally available (GA)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Incidents handled by&amp;nbsp;&lt;STRONG&gt;Security Alert Triage Agent&lt;/STRONG&gt;:&lt;/P&gt;&lt;img /&gt;&lt;img /&gt;&lt;P&gt;Alerts created by&amp;nbsp;&lt;STRONG&gt;Dynamic Threat Detection Agent&lt;/STRONG&gt;:&lt;/P&gt;&lt;img /&gt;&lt;img /&gt;&lt;P&gt;Execution of &lt;STRONG&gt;Threat Hunting Agent&lt;/STRONG&gt;:&lt;/P&gt;&lt;img /&gt;&lt;img /&gt;&lt;P&gt;View agents in use: &lt;A href="https://security.microsoft.com/security-copilot/agents" target="_blank" rel="noopener"&gt;https://security.microsoft.com/security-copilot/agents&lt;/A&gt;&lt;/P&gt;&lt;img /&gt;&lt;img /&gt;&lt;P&gt;View Unified RBAC custom roles:&amp;nbsp;&lt;A href="https://security.microsoft.com/mtp_roles" target="_blank" rel="noopener"&gt;https://security.microsoft.com/mtp_roles&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;img /&gt;&lt;P&gt;View Security Copilot user identities in Microsoft Entra ID:&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&lt;STRONG&gt;Notes:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CloudAppEvents activity logs only from the following agents:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Phishing Triage Agent&lt;/LI&gt;&lt;LI&gt;Conditional Access Optimization Agent&lt;/LI&gt;&lt;/UL&gt;&lt;H1&gt;Security Copilot Agents - Microsoft Entra ID&lt;/H1&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Conditional Access Optimization Agent&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H1&gt;Usage Monitoring&lt;/H1&gt;&lt;P&gt;Sign-in to Security Copilot portal using Global Admin account and navigate to the following location:&amp;nbsp;&lt;A href="https://securitycopilot.microsoft.com/usage-monitoring" target="_blank" rel="noopener"&gt;https://securitycopilot.microsoft.com/usage-monitoring&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reference:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/copilot/security/manage-usage" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/copilot/security/manage-usage&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;H1&gt;Logging Activity&lt;/H1&gt;&lt;P&gt;Copilot Agents Management:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CloudAppEvents&lt;/P&gt;&lt;P&gt;| where ActionType contains "CopilotAgent"&lt;/P&gt;&lt;P&gt;| extend AgentName = RawEventData.AgentName&lt;/P&gt;&lt;P&gt;| extend Workload = RawEventData.Workload&lt;/P&gt;&lt;P&gt;| extend ResultStatus = RawEventData.ResultStatus&lt;/P&gt;&lt;P&gt;| project TimeGenerated, ActionType, ResultStatus, AgentName, Application, Workload&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All Copilot Workload data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CloudAppEvents&lt;/P&gt;&lt;P&gt;| extend Workload = RawEventData.Workload&lt;/P&gt;&lt;P&gt;| where Workload == "Copilot"&lt;/P&gt;&lt;P&gt;| summarize EventCount = count() by ActionType, AccountDisplayName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2026 09:31:28 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/operational-notes-on-microsoft-security-copilot-agents-in/m-p/4525826#M2696</guid>
      <dc:creator>klianos</dc:creator>
      <dc:date>2026-06-05T09:31:28Z</dc:date>
    </item>
    <item>
      <title>Prompted to sign in to Microsoft Defender Platform on W11/W2025 using Entra</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/prompted-to-sign-in-to-microsoft-defender-platform-on-w11-w2025/m-p/4525520#M2694</link>
      <description>&lt;P&gt;Hi Microsoft Defender XDR community,&lt;BR /&gt;&lt;BR /&gt;Since around May 18th, our users on devices that are onboarded to Microsoft Defender for Endpoint are being prompted to sign-in to the following application using Entra on login to Windows.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Application&lt;/P&gt;&lt;P&gt;Microsoft Defender Platform&lt;/P&gt;&lt;P&gt;Application ID&lt;/P&gt;&lt;P&gt;cab96880-db5b-4e15-90a7-f3f1d62ffe39&lt;BR /&gt;&lt;BR /&gt;Is anyone aware of a change that requires user sign-in to Entra as a requirement for Microsoft Defender for Endpoint? I have tried raising a support topic on this topic.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2026 12:40:24 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr/prompted-to-sign-in-to-microsoft-defender-platform-on-w11-w2025/m-p/4525520#M2694</guid>
      <dc:creator>chrisnelmes</dc:creator>
      <dc:date>2026-06-04T12:40:24Z</dc:date>
    </item>
    <item>
      <title>The next frontier in endpoint security: Securing local AI agents with Microsoft Defender</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/the-next-frontier-in-endpoint-security-securing-local-ai-agents/ba-p/4524651</link>
      <description>&lt;P&gt;AI agents are now doing real work on the endpoint — reading files, running commands, browsing the web, and acting on behalf of the users they run under. That same power is also what makes them dangerous: agents act on whatever content they take in, and much of it comes from outside the user's control — a web page, a repository, a command's output. A single malicious instruction hidden in that content can turn an agent against the very environment it's trusted to work in. With access to source code, secrets, and the corporate resources, its identity can reach — from cloud infrastructure to SharePoint, email, and internal apps — a compromised agent becomes a path to everything that identity is trusted with.&lt;/P&gt;
&lt;P&gt;Yet most security teams can't see this activity at all. Local AI agents run as ordinary processes, with little of the visibility or context SOC teams need to understand — let alone investigate — what an agent actually did.&lt;/P&gt;
&lt;P&gt;That’s why today, we're extending Microsoft Defender to secure AI agents running locally on devices. Security teams now have the visibility, context, and control needed to manage this new frontier of endpoint risk without slowing down the developers driving innovation forward. This includes:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Discover 20+ types of local AI agents running on managed Windows and macOS devices&lt;/LI&gt;
&lt;LI&gt;Block malicious AI agent activity on the device in real time&lt;/LI&gt;
&lt;LI&gt;Assess local agent exposure across identities and reachable resources&lt;/LI&gt;
&lt;LI&gt;Investigate local AI agent activity in Advanced Hunting&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;In preview, Defender now discovers these agents across the endpoint — AI coding agents, AI assistants, local AI runtimes, agentic IDE extensions, and Model Context Protocol (MCP) servers — and adds runtime protection for popular coding agents, with coverage expanding over time. Just as important, it brings them into the same security platform teams already use for endpoints, identities, email, and cloud, so local agents are no longer running unseen alongside the tools security teams already protect, but part of one coordinated defense.&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;&lt;STRONG&gt;Watch this episode of the Ninja Show to see how Microsoft Defender brings visibility, context, and control to local AI agents, helping security teams securely adopt AI and stay ahead of emerging threats.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;div data-video-id="https://www.youtube.com/watch?v=SzTEY3sY3lA/1782496140882" data-video-remote-vid="https://www.youtube.com/watch?v=SzTEY3sY3lA/1782496140882" class="lia-video-container lia-media-is-center lia-media-size-large"&gt;&lt;iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FSzTEY3sY3lA%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DSzTEY3sY3lA&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FSzTEY3sY3lA%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" allowfullscreen="" style="max-width: 100%"&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;H4&gt;&lt;STRONG&gt;Discover local AI agents on managed devices&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Security Operation Center (SOC) teams can now identify AI agents running locally as first-class assets, not just operating system (OS) processes. In the Defender portal, security teams can view a dedicated inventory of AI agents across their environment, spanning categories such as:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Coding CLIs and terminal agents: GitHub Copilot CLI, Codex CLI, Claude Code CLI, Gemini CLI, Antigravity CLI, OpenCode&lt;/LI&gt;
&lt;LI&gt;Agentic IDEs and VS Code extensions: Cursor, Windsurf, Antigravity, Claude Code, Codex, Cline, Gemini, GitHub Copilot, Roo Code&lt;/LI&gt;
&lt;LI&gt;Desktop AI assistants: ChatGPT Desktop, Claude Desktop, Codex Desktop, Poe Desktop, Antigravity Desktop, GitHub Copilot App&lt;/LI&gt;
&lt;LI&gt;Local AI runtimes and autonomous platforms: OpenClaw, Nanobot, ZeroClaw, Ollama Desktop&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Each agent is surfaced as a security asset, with runtime context including user identity, device and process relationships, trust indicators, and integrity level. Security teams can also see configuration signals, such as “auto-approve” settings and connected services via MCP servers. Defender discovers more than 20 supported local AI agents across Windows and macOS, with coverage continuing to expand.&lt;/P&gt;
&lt;img&gt;&lt;EM&gt;Figure 1: The AI Assets (preview) inventory and an agent detail record in the Microsoft Defender portal.&lt;/EM&gt;&lt;/img&gt;
&lt;H4&gt;&lt;STRONG&gt;Block malicious AI agent activity in real time&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Discovery is the starting point. Once SOC teams know which agents are present, they need confidence that malicious behavior will be stopped to reduce impact to their organization’s environment.&lt;/P&gt;
&lt;P&gt;For popular coding agents, Defender now provides runtime protection that helps block malicious behavior inline and in real time. This capability starts with Claude Code and GitHub Copilot CLI, with OpenClaw and OpenAI Codex coming soon. When Defender identifies that an agent activity is malicious, it can automatically block it. As with other threats, the user can be notified, and the activity is logged in the protection history.&lt;/P&gt;
&lt;P&gt;The SOC analyst receives a detailed alert with agent and session context for investigation, including details on the detected threat. At the same time, the user sees a notification on the device that the activity was blocked.&lt;/P&gt;
&lt;img&gt;&lt;EM&gt;Figure 2: Runtime protection blocking malicious instructions in a post-tool response&lt;/EM&gt;&lt;/img&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img&gt;&lt;EM&gt;Figure 3: The matching Windows Security notification, blocking the detected threat&lt;/EM&gt;&lt;/img&gt;&lt;img&gt;&lt;EM&gt;Figure 4: &lt;/EM&gt; &lt;EM&gt;The corresponding security alert in the Defender portal, with the process tree and session context for investigation&lt;/EM&gt;&lt;/img&gt;
&lt;H4&gt;&lt;STRONG&gt;Assess local agent exposure&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Knowing an agent exists is only half the picture. The next step is mapping the potential blast radius: the resources the agent touches, the identities it can use, and the assets exposed to its next moves. That’s why every agent discovered is automatically mapped to the device it runs on, the identity associated with that device, the MCP servers it’s connected to, and the cloud resources the identity can reach. The exposure graph turns "this agent exists" into “this agent can do these things” by providing an understanding of the agent’s connectivity across your environment.&lt;/P&gt;
&lt;P&gt;As an example, in the map below, the SOC analyst can see that a ChatGPT Desktop agent is tied to a single AWS account, and from that identity its reach extends to S3 buckets, an AWS KMS key, EC2 instances, and an AWS Bedrock agent. The agent has no cloud permissions of its own, but it inherits the account's — so if it were compromised or misused, that reach becomes a path to encrypted data and key material. This view gives security teams a clear picture of the agent's blast radius, so they can decide how to contain it before it's abused.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img&gt;&lt;EM&gt;Figure 5: Exposure map of a local AI agent, showing its identity and the resources that identity can reach.&lt;/EM&gt;&lt;/img&gt;
&lt;H4&gt;&lt;STRONG&gt;Investigate local AI agent activity in Advanced Hunting&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Beyond the inventory and exposure views, security teams often need to hunt across the environment — to ask which agents are behaving unusually, and what else they touch. Every AI agent discovery event, MCP server connection, and configuration signal is queryable in Advanced Hunting, alongside the endpoint, identity, email, and cloud security telemetry your team already uses every day.&lt;/P&gt;
&lt;P&gt;This capability unlocks two use cases that security teams have been asking for:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Correlate agent activity&lt;/STRONG&gt; with process, file, network, identity, and cloud telemetry to see the full picture of what the agent did&lt;/LI&gt;
&lt;/UL&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Hunt for risky configurations – &lt;/STRONG&gt;for example, agents running in auto-approve mode under an identity with privileged access to production, source code, or CI/CD systems&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Security teams can turn any of these queries into a custom detection rule — for instance, raising an alert whenever a newly discovered agent appears with a risky configuration on a device tied to a privileged identity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img&gt;&lt;EM&gt;Figure 6: A KQL query in Advanced Hunting tracing which critical resources a local AI agent can reach.&lt;/EM&gt;&lt;/img&gt;
&lt;H4&gt;&lt;STRONG&gt;Securing the next frontier of endpoint activity&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;The risk that opened this post — an agent acting on a malicious instruction and reaching everything its identity can touch — is exactly what this protection is built to contain.&lt;/P&gt;
&lt;P&gt;By bringing local AI agents into the same platform teams already use for endpoints, identities, and cloud, Defender turns that blind spot into something security teams can see, investigate, and stop — without getting in the developer's way.&lt;/P&gt;
&lt;P&gt;Developers keep the AI tools accelerating their work. Defenders get the visibility and real-time protection to stay ahead of attackers as they turn to this new surface. That balance — speed for builders, control for defenders — is what securing the AI era actually requires.&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;Learn more&lt;/STRONG&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://aka.ms/Build2026/SecuringLocalAgents/Discovery" target="_blank" rel="noopener"&gt;Discover local AI agents with Microsoft Defender&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://aka.ms/Build2026/SecuringLocalAgents/RuntimeProtection" target="_blank" rel="noopener"&gt;Block malicious AI agent behavior with runtime protection&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://www.microsoft.com/en-us/microsoft-agent-365" target="_blank" rel="noopener"&gt;Manage and secure your agents with Microsoft Agent 365&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 30 Jun 2026 03:19:36 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/the-next-frontier-in-endpoint-security-securing-local-ai-agents/ba-p/4524651</guid>
      <dc:creator>Eitan_Shteinberg</dc:creator>
      <dc:date>2026-06-30T03:19:36Z</dc:date>
    </item>
    <item>
      <title>Organize your multitenant view with Tenant Groups in Microsoft Defender</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/organize-your-multitenant-view-with-tenant-groups-in-microsoft/ba-p/4522992</link>
      <description>&lt;P&gt;Managing security across many tenants shouldn’t mean drowning in a single, flat list. We’re excited to share a new capability, now in public preview in the Microsoft Defender multitenant (MTO) porta&lt;STRONG&gt;l&lt;/STRONG&gt;: &lt;STRONG&gt;Tenant Groups&lt;/STRONG&gt;—a flexible way to organize the tenants you manage and switch your view between them with a single click.&lt;/P&gt;
&lt;P&gt;If you’re a managed security service provider (MSSP), a cloud service provider (CSP), or a security team operating across multiple Entra ID tenants, this one’s for you.&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;What’s new&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;&lt;STRONG&gt;Tenant Groups&lt;/STRONG&gt; let you create logical groupings of tenants (by customer segment, geography, criticality, onboarding stage—whatever fits how you work) and seamlessly switch the Defender MTO view to show data from only the tenants in that group.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;NOTICE: &lt;/STRONG&gt;The feature previously called &lt;EM&gt;Tenant groups&lt;/EM&gt;—used for content distribution—has been renamed to &lt;STRONG&gt;Deployment profiles&lt;/STRONG&gt;. The name “Tenant Groups” now refers to this new grouping experience.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;H4&gt;&lt;STRONG&gt;Why it matters&lt;/STRONG&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Focus, faster&lt;/STRONG&gt; – Investigate incidents, hunt threats, and review posture against just the tenants you care about right now—without noise from the rest.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Operational clarity &lt;/STRONG&gt;– Group tenants the way your team actually works (e.g., Tier 1 customers, EMEA, Pilot rollout).&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Permissions-aware &lt;/STRONG&gt;– Even if a Tenant Group contains more tenants, you’ll only see the ones where you have B2B/GDAP (granular delegated admin privileges) access. Your existing access controls stay in charge.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H4&gt;&lt;STRONG&gt;Permissions you’ll need&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;To work with Tenant Groups, your account needs one of the following:&lt;/P&gt;
&lt;H5&gt;Entra ID roles&lt;/H5&gt;
&lt;UL&gt;
&lt;LI&gt;Security Administrator&lt;/LI&gt;
&lt;LI&gt;Security Operator&lt;/LI&gt;
&lt;LI&gt;Global Administrator&lt;/LI&gt;
&lt;/UL&gt;
&lt;H5&gt;Product-specific (MDE, MDI, etc.) role-based access control (RBAC)&lt;/H5&gt;
&lt;UL&gt;
&lt;LI&gt;Global Administrator&lt;/LI&gt;
&lt;LI&gt;Security Administrator&lt;/LI&gt;
&lt;LI&gt;Plus, any custom RBAC roles required to see data across products&lt;/LI&gt;
&lt;/UL&gt;
&lt;H5&gt;Unified RBAC (URBAC)&lt;/H5&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Security/read&lt;/STRONG&gt;—to view Tenant Groups&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Security/manage&lt;/STRONG&gt;—to create Tenant Groups&lt;/LI&gt;
&lt;/UL&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Remember:&lt;/STRONG&gt; A Tenant Group can include tenants you don’t have access to. You’ll only ever see the ones your permissions allow.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;H4&gt;&lt;STRONG&gt;Getting started&lt;/STRONG&gt;&lt;/H4&gt;
&lt;H5&gt;1. Open Tenant Groups&lt;/H5&gt;
&lt;P&gt;Sign in to the &lt;STRONG&gt;Microsoft Defender portal&lt;/STRONG&gt; with administrative credentials, then navigate to &lt;STRONG&gt;Multitenant Management &amp;gt; Tenant Groups&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;You’ll find a built-in group called &lt;STRONG&gt;My private group&lt;/STRONG&gt; that contains all the tenants from your previous setup. You can add or remove tenants from it, but it can’t be deleted.&lt;/P&gt;
&lt;H5&gt;2. Create a Tenant Group&lt;/H5&gt;
&lt;OL&gt;
&lt;LI&gt;Select &lt;STRONG&gt;+ Create tenant group&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Give it a descriptive name (e.g., Healthcare customers, EMEA Tier 1).&lt;/LI&gt;
&lt;LI&gt;Optionally, add a description so teammates know the group’s intent.&lt;/LI&gt;
&lt;LI&gt;Select the tenants you want to include.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;That’s it—your group is ready.&lt;/P&gt;
&lt;H5&gt;3. Switch between Tenant Groups&lt;/H5&gt;
&lt;OL start="5"&gt;
&lt;LI&gt;In the top-left corner of the portal, select &lt;STRONG&gt;Open multitenant management&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Choose the group you just created.&lt;/LI&gt;
&lt;/OL&gt;
&lt;img /&gt;
&lt;P&gt;Navigate around the Defender MTO portal—incidents, alerts, devices, hunting—and you’ll see only data from the tenants in that group. Switch groups anytime to refocus.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Live change detection: &lt;/STRONG&gt;If a teammate edits a Tenant Group (adds or removes tenants) while you’re viewing it, the portal surfaces a notification so you know the underlying scope has changed. No stale views, no surprises.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;img /&gt;
&lt;H5&gt;4. Edit a Tenant Group&lt;/H5&gt;
&lt;OL start="7"&gt;
&lt;LI&gt;Go back to &lt;STRONG&gt;Multitenant Management &amp;gt; Tenant Groups&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Select the group and choose &lt;STRONG&gt;Edit&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Add or remove tenants as your environment evolves, then re-test your views.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;STRONG&gt;Tips for getting the most out of Tenant Groups&lt;/STRONG&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Start with how your team triages&lt;/STRONG&gt; – Name groups after the workflows you actually run (On-call queue, Customer A—production).&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Keep groups small and purposeful &lt;/STRONG&gt;– Overlapping, focused groups beat one giant catch-all.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Pair with Deployment profiles &lt;/STRONG&gt;–&lt;STRONG&gt; &lt;/STRONG&gt;Use Tenant Groups for viewing, and Deployment profiles for distributing content—two clean, complementary concepts.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Audit access regularly &lt;/STRONG&gt;–&lt;STRONG&gt; &lt;/STRONG&gt;Because group membership is independent of B2B/GDAP access, periodic reviews keep expectations aligned.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H4&gt;&lt;STRONG&gt;We want your feedback&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Tenant Groups are designed around real multitenant operations work—and we’d love to hear how you’re using them. Try it out in your environment, share what’s working (and what isn’t), and let us know what you’d like to see next.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 16:00:00 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-defender-xdr-blog/organize-your-multitenant-view-with-tenant-groups-in-microsoft/ba-p/4522992</guid>
      <dc:creator>Simaya_Ouli</dc:creator>
      <dc:date>2026-05-27T16:00:00Z</dc:date>
    </item>
  </channel>
</rss>

