<?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>Microsoft Sentinel topics</title>
    <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/bd-p/MicrosoftSentinel</link>
    <description>Microsoft Sentinel topics</description>
    <pubDate>Thu, 11 Jun 2026 03:32:30 GMT</pubDate>
    <dc:creator>MicrosoftSentinel</dc:creator>
    <dc:date>2026-06-11T03:32:30Z</dc:date>
    <item>
      <title>Detecting AI agents and non-human identities in Microsoft Sentinel: the classic-agent blind spot</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/detecting-ai-agents-and-non-human-identities-in-microsoft/m-p/4526787#M12940</link>
      <description>&lt;P&gt;Build 2026 made the direction official. The industry is moving from the app era into the agent era, and Microsoft spent a real share of the keynote on securing agents across their lifecycle, from discovering what is exploitable to governing what is running in production. On the identity side the centerpiece is Microsoft Entra Agent ID, now generally available, which gives AI agents first-class identities and extends Conditional Access, Identity Protection, and full audit logging to them.&lt;/P&gt;&lt;P&gt;That is good news for agents you build the new way. It is not the whole picture, and the gap is where most SOCs will get hurt first.&lt;/P&gt;&lt;H3&gt;Modern agents are covered. Classic agents are not.&lt;/H3&gt;&lt;P&gt;Entra Agent ID draws a hard line between two kinds of agent.&lt;/P&gt;&lt;P&gt;Modern agents are created through the Agent ID platform, each backed by an agent identity blueprint. They carry a proper Agent ID, a full audit trail, and the complete set of governance capabilities, including Identity Protection for Agents, which establishes a baseline for an agent's normal activity and flags anomalies automatically.&lt;/P&gt;&lt;P&gt;Classic agents are everything that came before, or that gets built outside the platform: AI agents implemented as ordinary service principals or app registrations, for example Copilot Studio agents created before Agent ID was enabled, or any home-grown automation calling Graph with client credentials. In the Entra agent registry they appear with "Has Agent ID: No," and that flag matters, because the Agent ID protections apply to identities that actually hold an Agent ID. Classic agents sit outside Identity Protection for Agents and Conditional Access for Agents.&lt;/P&gt;&lt;P&gt;Here is the uncomfortable part. The non-human identities you already run, the service principals behind your pipelines, your integrations, your scripts, your pre-platform Copilot Studio bots, are almost all classic agents. They tend to outnumber your human accounts, they have no MFA in any meaningful sense, and a credential added to one does not show up in the Azure portal. The new platform protections do not reach them. Until you migrate them, the only place you get detection coverage on that population is your SIEM.&lt;/P&gt;&lt;P&gt;So this is the job Sentinel does that Agent ID does not: detect risky behavior on the classic, service-principal-backed agents that the platform cannot yet protect.&lt;/P&gt;&lt;H3&gt;The telemetry you have, and the one switch people forget&lt;/H3&gt;&lt;P&gt;Three tables carry most of the signal.&lt;/P&gt;&lt;P&gt;AADServicePrincipalSignInLogs records service principal authentications, the client-credentials sign-ins your agents and automation use. No user, no MFA, just an app proving it holds a secret or certificate.&lt;/P&gt;&lt;P&gt;AADManagedIdentitySignInLogs does the same for managed identities.&lt;/P&gt;&lt;P&gt;AuditLogs records directory changes, including the one that matters most for persistence: a new credential added to an application or service principal.&lt;/P&gt;&lt;P&gt;One practical warning before any of this works. Service principal and managed identity sign-in logs are not streamed by default. You have to enable those categories explicitly in the Entra diagnostic settings feeding your workspace. Plenty of teams write the detection, never check, and never notice the table is empty. Verify that first.&lt;/P&gt;&lt;H3&gt;Detection 1: a new credential on a service principal or app&lt;/H3&gt;&lt;P&gt;Adding a secret or certificate to an existing service principal is one of the cleanest persistence techniques in a Microsoft cloud. The attacker compromises a privileged user or app, drops a fresh credential on a service principal that already holds useful Graph permissions, and now has access that survives password resets and session revocation. It maps to MITRE T1098.001, Account Manipulation: Additional Cloud Credentials. For a classic agent it is especially nasty, because there is no Identity Protection baseline watching it.&lt;/P&gt;&lt;LI-CODE lang="kusto"&gt;// Detection 1: new secret or certificate added to an application or service principal
// MITRE T1098.001 - Account Manipulation: Additional Cloud Credentials
AuditLogs
| where OperationName has_any ("Add service principal", "Certificates and secrets management")
| where Result =~ "success"
| extend Initiator = coalesce(
        tostring(InitiatedBy.user.userPrincipalName),
        tostring(InitiatedBy.app.displayName))
| extend InitiatorIp = tostring(InitiatedBy.user.ipAddress)
| mv-apply Target = TargetResources on (
    where Target.type =~ "Application"
    | extend TargetName  = tostring(Target.displayName),
             TargetId    = tostring(Target.id),
             KeyChanges  = Target.modifiedProperties
  )
| mv-apply Prop = KeyChanges on (
    where tostring(Prop.displayName) =~ "KeyDescription"
    | extend NewKeys = parse_json(tostring(Prop.newValue)),
             OldKeys = parse_json(tostring(Prop.oldValue))
  )
| extend AddedKeys = set_difference(NewKeys, OldKeys)
| where array_length(AddedKeys) &amp;gt; 0
| project TimeGenerated, Initiator, InitiatorIp, TargetName, TargetId, AddedKeys
| order by TimeGenerated desc&lt;/LI-CODE&gt;&lt;P&gt;The operation filter catches the three shapes this event takes in the log: "Add service principal," "Add service principal credentials," and "Update application - Certificates and secrets management." The modifiedProperties parsing isolates the KeyDescription change, and set_difference confirms a key was actually added rather than removed, so rotating out an old credential does not, on its own, fire the rule.&lt;/P&gt;&lt;P&gt;False positives come from legitimate rotation and from automation that provisions app credentials (CI/CD, infrastructure as code). The initiator is the discriminant. A credential added by your deployment pipeline's service account at the usual time is routine. The same change initiated by an interactive admin out of hours, or by an account that never normally touches app credentials, is what you want to surface. Allow-list the expected initiators, not the targets.&lt;/P&gt;&lt;H3&gt;Detection 2: a classic agent signing in from a first-seen IP&lt;/H3&gt;&lt;P&gt;A service principal that has only ever authenticated from your Azure regions and suddenly signs in from somewhere new is a strong signal that its credential has been lifted and is being used elsewhere. Service principals have stable, boring network behavior, which makes a first-seen IP a far cleaner indicator for them than it is for roaming human users. This is the behavioral baseline Identity Protection gives you for free on modern agents, rebuilt in KQL for the classic ones it ignores. MITRE T1078.004, Valid Accounts: Cloud Accounts.&lt;/P&gt;&lt;LI-CODE lang="kusto"&gt;// Detection 2: classic-agent service principal signing in from a previously unseen IP
// MITRE T1078.004 - Valid Accounts: Cloud Accounts
let baseline  = 14d;
let detection = 1d;
let KnownIPs =
    AADServicePrincipalSignInLogs
    | where TimeGenerated between (ago(baseline + detection) .. ago(detection))
    | where tostring(ResultType) == "0"
    | summarize KnownIPSet = make_set(IPAddress) by AppId;
AADServicePrincipalSignInLogs
| where TimeGenerated &amp;gt; ago(detection)
| where tostring(ResultType) == "0"
| lookup kind=leftouter KnownIPs on AppId
| where set_has_element(KnownIPSet, IPAddress) == false
| summarize FirstSeen = min(TimeGenerated),
            Resources = make_set(ResourceDisplayName, 10)
  by ServicePrincipalName, AppId, IPAddress
| order by FirstSeen desc&lt;/LI-CODE&gt;&lt;P&gt;The query builds a per-application baseline of source IPs over the previous two weeks, then flags any successful sign-in today from an address outside that set. Two tuning notes. Brand-new service principals have no baseline, so they surface on first use. That is usually worth seeing once, but you can exclude AppIds younger than the baseline window if it gets noisy. And if your agents egress through shifting cloud IP ranges, widen the comparison from an exact IP to the autonomous system number or a known-range allow-list, otherwise you will chase your own infrastructure.&lt;/P&gt;&lt;P&gt;This complements Agent ID, it does not replace it!&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The endgame is not to run these rules forever. It is to shrink the population they apply to.&lt;/STRONG&gt; Inventory your tenant for agents marked "Has Agent ID: No," prioritize the ones holding sensitive Graph permissions, and migrate them onto the Agent ID platform, where Identity Protection and Conditional Access take over the baselining you are doing here by hand. Microsoft has signaled a migration path from classic to modern agents. Treat these two detections as the coverage you need in the meantime, and as a permanent safety net for anything that never makes the move.&lt;/P&gt;&lt;P&gt;If you do one thing this week: enable the service principal sign-in log category, deploy detection 1, and pull a list of every service principal that had a credential added in the last 90 days. That list alone tends to be more interesting than people expect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers, Marcel&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2026 13:57:23 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/detecting-ai-agents-and-non-human-identities-in-microsoft/m-p/4526787#M12940</guid>
      <dc:creator>Marcel_Graewer</dc:creator>
      <dc:date>2026-06-09T13:57:23Z</dc:date>
    </item>
    <item>
      <title>MSSP migration to Unified portal: how are you sequencing your customer portfolio?</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/mssp-migration-to-unified-portal-how-are-you-sequencing-your/m-p/4526191#M12939</link>
      <description>&lt;P&gt;Following the automation and SOAR discussion, I wanted to open a conversation specifically focused on the MSSP and multi-tenant side of the migration, because this is where the coordination challenges are an order of magnitude higher than the technical ones.&lt;/P&gt;&lt;P&gt;A few things I am working through before writing this up as Part 5 of the migration series.&lt;/P&gt;&lt;P&gt;On Workspace Manager: Microsoft's own documentation now points you away from Workspace Manager at the point of onboarding to the Defender portal, directing you to Microsoft Defender multitenant management instead. For MSSPs who built their operating model around Workspace Manager, this is a significant structural change. For those implementing now, the recommendation is to go straight to the multitenant portal. I am interested in what the transition has looked like in practice for teams who were mid-flight on Workspace Manager when this became clear.&lt;/P&gt;&lt;P&gt;On access delegation: one of the more honest framings I want to include in the article is around the GDAP plus Unified RBAC gap. A Microsoft employee confirmed in the RSAC 2026 thread that Unified RBAC support for GDAP in the Defender portal is on the roadmap with no firm date. MSSPs choosing between Entra B2B and the governance relationships model today are making an architectural call that is difficult to reverse. I want to present this accurately, and real experience from practitioners will sharpen that framing.&lt;/P&gt;&lt;P&gt;On the connector deployment constraint: you cannot deploy connectors from a managed workspace configured with Azure Lighthouse alone, you also need GDAP. This makes a layered delegation architecture, Lighthouse plus GDAP plus B2B or governance relationships, necessary rather than optional. I am curious whether MSSPs are already running this layered model or whether most are still trying to make Lighthouse work as a single mechanism.&lt;/P&gt;&lt;P&gt;On migration sequencing: the question I want to ask specifically is how teams are structuring their customer portfolio migration. Are you running waves based on customer complexity, based on contract renewal timing, based on customer risk appetite, or some other factor? And when something goes wrong in one tenant's migration, how are you containing the impact on the rest of the programme?&lt;/P&gt;&lt;P&gt;Sharing the full article once it is written. Happy to discuss anything above in more detail in the thread.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2026 01:13:15 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/mssp-migration-to-unified-portal-how-are-you-sequencing-your/m-p/4526191#M12939</guid>
      <dc:creator>AnthonyPorter</dc:creator>
      <dc:date>2026-06-08T01:13:15Z</dc:date>
    </item>
    <item>
      <title>SentinelHealth: Scheduled Rule Retry Logging Does Not Match Docs</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/sentinelhealth-scheduled-rule-retry-logging-does-not-match-docs/m-p/4525128#M12938</link>
      <description>&lt;P&gt;## Objective&lt;/P&gt;&lt;P&gt;I am working on a health checks architecture for Microsoft Sentinel analytic rules. The goal is to build a set of monitoring queries/approaches that cover rule execution failures, configuration issues (entity mapping, partial success), rule audit tracking, and auto-disabled rule detection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;## My Current Approach&lt;/P&gt;&lt;P&gt;So far I have built monitoring for the following areas using the SentinelHealth and SentinelAudit tables:&lt;/P&gt;&lt;P&gt;- Scheduled rule window failures (retry exhaustion)&lt;/P&gt;&lt;P&gt;- NRT rule execution delays (cumulative delay over 25 minutes)&lt;/P&gt;&lt;P&gt;- Partial success and configuration issues (entity mapping drops, alert size limits, semantic errors) with transient error codes filtered out&lt;/P&gt;&lt;P&gt;- Auto-disabled rules detection&lt;/P&gt;&lt;P&gt;- Rule disable/delete audit tracking via SentinelAudit + AzActivity&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;## The Issue: Scheduled Rule Retry Logging&lt;/P&gt;&lt;P&gt;The documentation at https://learn.microsoft.com/en-us/azure/sentinel/monitor-analytics-rule-integrity#scheduled-rules states that when a scheduled rule fails, it is retried 5 more times on the same window (6 total attempts). It also provides this query to detect completely skipped windows:&lt;/P&gt;&lt;P&gt;```kql&lt;/P&gt;&lt;P&gt;_SentinelHealth()&lt;/P&gt;&lt;P&gt;| where SentinelResourceType == @"Analytics Rule"&lt;/P&gt;&lt;P&gt;| where SentinelResourceKind == "Scheduled"&lt;/P&gt;&lt;P&gt;| where Status != "Success"&lt;/P&gt;&lt;P&gt;| extend startTime = tostring(ExtendedProperties["QueryStartTimeUTC"])&lt;/P&gt;&lt;P&gt;| summarize failuresByStartTime = count() by startTime, SentinelResourceId&lt;/P&gt;&lt;P&gt;| where failuresByStartTime == 6&lt;/P&gt;&lt;P&gt;| summarize count() by SentinelResourceId&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This query assumes that each retry attempt is logged as a separate event in SentinelHealth, all sharing the same QueryStartTimeUTC. You would then count 6 failure records per startTime to identify a fully skipped window.&lt;/P&gt;&lt;P&gt;However, in practice I am seeing different behavior. I ran a diagnostic query with a 90-day lookback (480 non-success events total, 73 unique rules). Every single event had a count of 1 per unique (SentinelResourceName, startTime) combination. No grouping of retries was observed at all.&lt;/P&gt;&lt;P&gt;I then found an actual failed-window event that confirms this. Here is the record:&lt;/P&gt;&lt;P&gt;- Rule: Port scan detected (ASIM Network Session schema)&lt;/P&gt;&lt;P&gt;- Status: Failure&lt;/P&gt;&lt;P&gt;- Description: "Rule's scheduled run at 06/01/2026 10:43:55 failed after numerous attempts. It will be re-executed over the next scheduled time."&lt;/P&gt;&lt;P&gt;- Issue Code: SemanticErrorInQuery&lt;/P&gt;&lt;P&gt;- Only 1 SentinelHealth record exists for this failed window&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Description field says "failed after numerous attempts" which indicates the retries happened internally, but only one consolidated Failure event was written to SentinelHealth after all retries were exhausted. The individual retry attempts do not appear as separate records.&lt;/P&gt;&lt;P&gt;This means the failuresByStartTime == 6 query from the documentation would never match this pattern, because there is only 1 record per failed window, not 6.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;## Why This Matters&lt;/P&gt;&lt;P&gt;Yes, completely skipped windows are rare. In my 90-day dataset most failures were permanent types (SemanticErrorInQuery, QueryGeneralError) that would not benefit from retries anyway. But they still happen, and if a tenant experiences a transient issue that causes a higher rate of failed windows, the documented query would silently return nothing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For my health checks I have rewritten the detection to simply look for Status == "Failure" with Description containing "failed after numerous attempts" which matches the actual consolidated event Sentinel writes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;## Questions&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is the documented failuresByStartTime == 6 query still accurate? Or has the retry logging behavior changed to write a single consolidated event per failed window?&lt;/LI&gt;&lt;LI&gt;Are there specific failure types or conditions where individual retries are logged as separate events? Perhaps transient failures behave differently from permanent ones in this regard?&lt;/LI&gt;&lt;LI&gt;For anyone else building health monitoring on SentinelHealth - am I missing any important use cases beyond what I described above?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any clarification would be appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2026 09:41:53 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/sentinelhealth-scheduled-rule-retry-logging-does-not-match-docs/m-p/4525128#M12938</guid>
      <dc:creator>SomeZnimav</dc:creator>
      <dc:date>2026-06-03T09:41:53Z</dc:date>
    </item>
    <item>
      <title>Sentinel SOAR migration to Unified portal: what broke? anyone evaluated the AI playbook generator?</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/sentinel-soar-migration-to-unified-portal-what-broke-anyone/m-p/4519890#M12935</link>
      <description>&lt;P&gt;I want to open a conversation specifically focused on the automation and SOAR side of the migration, because this is the area where problems most commonly surface after onboarding rather than during it.&lt;/P&gt;&lt;P&gt;A quick orientation: the Unified portal introduces a specific constraint that catches teams by surprise. Alert-triggered automation for alerts created by Microsoft Defender XDR is not available in the Defender portal. The main use case for alert-triggered automation in this context is responding to alerts from analytics rules where incident creation is disabled. If you had alert-triggered playbooks firing on Defender XDR signals, those need to be re-evaluated against the incident trigger model. This is documented by Microsoft, but it is easy to miss in the volume of migration guidance.&lt;/P&gt;&lt;P&gt;The automation failure mode I have seen most consistently: automation rules built around incident title conditions. The Defender XDR correlation engine assigns its own incident names, so any condition keyed to "if incident title contains X" stops matching without throwing an error. The rule is still active, the automation is still enabled, and everything looks fine until someone notices a class of enrichment or response has gone quiet. Microsoft's recommendation is to use Analytic rule name as the condition instead.&lt;/P&gt;&lt;P&gt;There is also a firm near-term deadline separate from the March 2027 portal retirement: queries and automation need to be updated by July 1, 2026 for standardised account entity naming. The Name field will consistently hold only the UPN prefix from that date. Any automation comparing AccountName against a full UPN will break.&lt;/P&gt;&lt;P&gt;A few specific questions for practitioners:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;When you onboarded or reviewed your automation post-onboarding, what broke silently versus what produced a visible error? Silent failures are the dangerous ones and sharing specific patterns would be genuinely useful for the community.&lt;/LI&gt;&lt;LI&gt;Has anyone evaluated the new AI playbook generator in the Defender portal? It requires Security Copilot with SCUs available and generates Python-based automation coauthored with Cline in an embedded VS Code environment. Interested in real-world comparisons against existing Logic Apps workflows for the same use case.&lt;/LI&gt;&lt;LI&gt;For those who have migrated alert-triggered playbooks to automation rule invocation: did you find edge cases in the migration, particularly around playbooks used by multiple analytics rules simultaneously?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Writing this up as Part 4 of the migration series. Sharing the article link once it is live for anyone who wants the full detail.&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2026 23:42:29 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/sentinel-soar-migration-to-unified-portal-what-broke-anyone/m-p/4519890#M12935</guid>
      <dc:creator>AnthonyPorter</dc:creator>
      <dc:date>2026-05-14T23:42:29Z</dc:date>
    </item>
    <item>
      <title>XdrLogRaider Defender XDR portal telemetry</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/xdrlograider-defender-xdr-portal-telemetry/m-p/4517753#M12932</link>
      <description>&lt;P&gt;&lt;STRONG&gt;A Microsoft Sentinel custom data connector that ingests Microsoft Defender XDR portal-only telemetry — configuration, compliance, drift, exposure, governance — that public Microsoft APIs (Graph Security, Microsoft 365 Defender, MDE) don't expose.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://github.com/akefallonitis/xdrlograider— Defender XDR portal telemetry&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Happy Hunting 🥳 🎉&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2026 08:45:47 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/xdrlograider-defender-xdr-portal-telemetry/m-p/4517753#M12932</guid>
      <dc:creator>alkefallonitis</dc:creator>
      <dc:date>2026-05-08T08:45:47Z</dc:date>
    </item>
    <item>
      <title>Sentinel Foundry - MCP Server (Preview) (Github Community Release)</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/sentinel-foundry-mcp-server-preview-github-community-release/m-p/4517063#M12928</link>
      <description>&lt;P&gt;I’ve been cooking something that a lot of people in SOC have been struggling with — especially on the engineering side of &lt;A href="https://www.linkedin.com/company/microsoft/" target="_blank"&gt;&lt;STRONG&gt;Microsoft&lt;/STRONG&gt;&lt;/A&gt; Sentinel. Thanks to the &lt;A href="https://www.linkedin.com/company/microsoft-security/" target="_blank"&gt;&lt;STRONG&gt;Microsoft Security&lt;/STRONG&gt;&lt;/A&gt; team for shaping the capabilities of Sentinel even better with Sentinel Data Lake &amp;amp; Modern SecOps.&lt;/P&gt;&lt;P&gt;Today’s the day I can finally share it.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-text-color-8"&gt;&lt;STRONG&gt;Note: This is not an official Microsoft product, but it is designed to make the Sentinel Build even better (complement) with much more intelligence.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;🚀 &lt;STRONG&gt;Sentinel Foundry is now in public preview with 43 tools. (&lt;A class="lia-external-url" href="https://github.com/prabhukiranveesam/Sentinel-Foundry" target="_blank"&gt;Sentinel Foundry - MCP Server&lt;/A&gt;&lt;/STRONG&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;BR /&gt;It’s an MCP server built to act like the brain of a strong Sentinel engineer — helping make building, improving, and operating Sentinel far more practical, faster, and honestly more enjoyable.&lt;/P&gt;&lt;P&gt;For a lot of teams, the challenge is not understanding what Sentinel can do. The hard part is the engineering work around it:&lt;BR /&gt;-&amp;gt; Deciding what data should actually be ingested&lt;BR /&gt;-&amp;gt; Building a clean, scalable Sentinel foundation&lt;BR /&gt;-&amp;gt; Writing useful detections instead of noisy ones&lt;BR /&gt;-&amp;gt; Balancing security value with cost&lt;BR /&gt;-&amp;gt; Turning ideas into deployable engineering outputs&lt;/P&gt;&lt;P&gt;That is exactly why I built Sentinel Foundry to help communities grow stronger.&lt;/P&gt;&lt;P&gt;It helps with the real engineering tasks behind Sentinel — from architecture thinking to detection design, deployment planning, ingestion strategy, automation ideas, and many of the workflows outlined in the GitHub project.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How does it work?&lt;/STRONG&gt;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;Here’s one of the flagship prompts I ran with it:&lt;/P&gt;&lt;P&gt;“Give me a complete security posture report for our workspace. Score each pillar and tell me what to prioritise.”&lt;/P&gt;&lt;P&gt;And within seconds, it produced a structured engineering blueprint that would normally take a lot longer to pull together manually.&lt;/P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;P&gt;You can see the example prompts here in what it can do: &lt;A href="https://github.com/prabhukiranveesam/Sentinel-Foundry#what-can-it-do" target="_blank"&gt;https://github.com/prabhukiranveesam/Sentinel-Foundry#what-can-it-do&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I want building Sentinel to feel less like repetitive engineering overhead — and more like real security engineering that is fast, creative, and enjoyable.&lt;/P&gt;&lt;P&gt;If you work with Sentinel as a SOC L2 analyst, engineer, detection engineer, consultant, or architect, I’d genuinely love for you to try it and tell me what you think.&lt;BR /&gt;&lt;BR /&gt;🔗 &lt;STRONG&gt;Public Preview:&lt;/STRONG&gt; &lt;A href="https://github.com/prabhukiranveesam/Sentinel-Foundry" target="_blank"&gt;https://github.com/prabhukiranveesam/Sentinel-Foundry&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This is just the start of an AI era — and I’m excited to keep shaping it with more powerful features over the coming days.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is very easy to set up and will be available to all of you at no cost during this month as part of the public preview, and your feedback is extremely valuable to shape this as a powerful solution.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 18:05:13 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/sentinel-foundry-mcp-server-preview-github-community-release/m-p/4517063#M12928</guid>
      <dc:creator>veesamprabhukiran</dc:creator>
      <dc:date>2026-05-05T18:05:13Z</dc:date>
    </item>
    <item>
      <title>Sentinel RBAC in the Unified portal: who has activated Unified RBAC, and how did it go?</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/sentinel-rbac-in-the-unified-portal-who-has-activated-unified/m-p/4513181#M12923</link>
      <description>&lt;P&gt;Following the RSAC 2026 announcements last month, I have been working through the full permission picture for the Unified portal and wanted to open a discussion here given how much has shifted in a short period.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A quick framing of where things stand. The baseline is still that Azure RBAC carries across for Sentinel SIEM access when you onboard, no changes required. But there are now two significant additions in public preview: Unified RBAC for Sentinel SIEM itself (extending the Defender Unified RBAC model to cover Sentinel directly), and a new Defender-native GDAP model for non-CSP organisations managing delegated access across tenants.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The GDAP piece in particular is worth discussing carefully, because I want to be precise about what has and has not changed. The existing limitation from Microsoft's onboarding documentation, that GDAP with Azure Lighthouse is not supported for Sentinel data in the Defender portal, has not changed. What is new is a separate, Defender-portal-native GDAP mechanism announced at RSAC, which is a different thing. These are not the same capability. If you were using Entra B2B as the interim path based on earlier guidance, that guidance was correct and that path remains the generally available option today.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A few things I would genuinely like to hear from practitioners:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;For those who have activated Unified RBAC for a Sentinel workspace in the Defender portal: what did the migration from Azure RBAC roles look like in practice? Did the import function bring roles across cleanly, or did you find gaps particularly around custom roles?&lt;/LI&gt;&lt;LI&gt;For environments using Playbook Operator, Automation Contributor, or Workbook Contributor role assignments: how are you handling the fact those three roles are not yet in Unified RBAC and still require Azure portal management? Is the dual-management posture creating operational friction?&lt;/LI&gt;&lt;LI&gt;For MSSPs evaluating the new Defender-native GDAP model against their existing Entra B2B setup: what factors are driving the decision either way at your scale?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Writing this up as Part 3 of the migration series and the community experience here is directly useful for making sure the practitioner angle is grounded.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2026 06:04:28 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/sentinel-rbac-in-the-unified-portal-who-has-activated-unified/m-p/4513181#M12923</guid>
      <dc:creator>AnthonyPorter</dc:creator>
      <dc:date>2026-04-21T06:04:28Z</dc:date>
    </item>
    <item>
      <title>Stuck looking up a watchlist value</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/stuck-looking-up-a-watchlist-value/m-p/4507743#M12907</link>
      <description>&lt;P&gt;Hiya,&lt;/P&gt;&lt;P&gt;I get stuck working with watchlists sometimes.&lt;/P&gt;&lt;P&gt;In this example, I'm wanting to focus on account activity from a list of UPNs.&lt;/P&gt;&lt;P&gt;If I split the elements up, I get the individual results, but can't seem to pull it all together.&lt;/P&gt;&lt;P&gt;=====================================================&lt;/P&gt;&lt;P&gt;In its entirety, the query returns zero results:&lt;/P&gt;&lt;P&gt;let ServiceAccounts=(_GetWatchlist('ServiceAccounts_Monitoring'))| project SearchKey;&lt;/P&gt;&lt;P&gt;let OpName = dynamic(['Reset password (self-service)','Reset User Password','Change user password','User reset password','User started password reset','Enable Account','Change password (self-service)','Update PasswordProfile','Self-service password reset flow activity progress']);&lt;/P&gt;&lt;P&gt;AuditLogs&lt;/P&gt;&lt;P&gt;| where OperationName has_any (OpName)&lt;/P&gt;&lt;P&gt;| extend upn = TargetResources.[0].userPrincipalName&lt;/P&gt;&lt;P&gt;| where upn in (ServiceAccounts) //&amp;lt;=This is where I think I'm wrong&lt;/P&gt;&lt;P&gt;| project upn&lt;/P&gt;&lt;P&gt;=====================================================&lt;/P&gt;&lt;P&gt;This line on its own, returns the user on the list:&lt;/P&gt;&lt;P&gt;let ServiceAccounts=(_GetWatchlist('ServiceAccounts_Monitoring'))| project SearchKey;&lt;/P&gt;&lt;P&gt;=====================================================&lt;/P&gt;&lt;P&gt;This section on its own, returns all the activity&lt;/P&gt;&lt;P&gt;let OpName = dynamic(['Reset password (self-service)','Reset User Password','Change user password','User reset password','User started password reset','Enable Account','Change password (self-service)','Update PasswordProfile','Self-service password reset flow activity progress']);&lt;/P&gt;&lt;P&gt;AuditLogs&lt;/P&gt;&lt;P&gt;| where OperationName has_any (OpName)&lt;/P&gt;&lt;P&gt;| extend upn = TargetResources.[0].userPrincipalName&lt;/P&gt;&lt;P&gt;| where upn contains "username" //This is the name on the watchlistlist - so I know the activity exists)&lt;/P&gt;&lt;P&gt;====================================================&lt;/P&gt;&lt;P&gt;I'm doing something wrong when I'm trying to use the watchlist cache (I think)&lt;/P&gt;&lt;P&gt;Any help\guidance or wisdom would be greatly appreciated!&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Wed, 01 Apr 2026 14:25:42 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/stuck-looking-up-a-watchlist-value/m-p/4507743#M12907</guid>
      <dc:creator>MrD</dc:creator>
      <dc:date>2026-04-01T14:25:42Z</dc:date>
    </item>
    <item>
      <title>Security Copilot Integration with Microsoft Sentinel - Why Automation matters now</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/security-copilot-integration-with-microsoft-sentinel-why/m-p/4507293#M12906</link>
      <description>&lt;P&gt;Security Operations Centers face a relentless challenge - the volume of security alerts far exceeds the capacity of human analysts. On average, a mid-sized SOC receives thousands of alerts per day, and analysts spend up to 80% of their time on initial triage. That means determining whether an alert is a true positive, understanding its scope, and deciding on next steps. With Microsoft Security Copilot now deeply integrated into Microsoft Sentinel, there is finally a practical path to automating the most time-consuming parts of this workflow.&lt;/P&gt;&lt;P&gt;So I decided to walk you through how to combine Security Copilot with Sentinel to build an automated incident triage pipeline - complete with KQL queries, automation rule patterns, and practical scenarios drawn from common enterprise deployments.&lt;/P&gt;&lt;P&gt;Traditional triage workflows rely on analysts manually reviewing each incident - reading alert details, correlating entities across data sources, checking threat intelligence, and making a severity assessment. This is slow, inconsistent, and does not scale.&lt;/P&gt;&lt;P&gt;Security Copilot changes this equation by providing:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Natural language incident summarization&lt;/STRONG&gt; - turning complex, multi-alert incidents into analyst-readable narratives&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Automated entity enrichment&lt;/STRONG&gt; - pulling threat intelligence, user risk scores, and device compliance state without manual lookups&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Guided response recommendations&lt;/STRONG&gt; - suggesting containment and remediation steps based on the incident type and organizational context&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The key insight is that Copilot does not replace analysts - it handles the repetitive first-pass triage so analysts can focus on decision-making and complex investigations.&lt;/P&gt;&lt;H2&gt;Architecture - How the Pieces Fit Together&lt;/H2&gt;&lt;P&gt;The automated triage pipeline consists of four layers:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Detection Layer - Sentinel analytics rules generate incidents from log data&lt;/LI&gt;&lt;LI&gt;Enrichment Layer - Automation rules trigger Logic Apps that call Security Copilot&lt;/LI&gt;&lt;LI&gt;Triage Layer - Copilot analyzes the incident, enriches entities, and produces a triage summary&lt;/LI&gt;&lt;LI&gt;Routing Layer - Based on Copilot's assessment, incidents are routed, re-prioritized, or auto-closed&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;(Forgive my AI-painted illustration here, but I find it a nice way to display dependencies.)&lt;/P&gt;&lt;LI-CODE lang=""&gt;+-----------------------------------------------------------+
|                    Microsoft Sentinel                     |
|                                                           |
|  Analytics Rules --&amp;gt; Incidents --&amp;gt; Automation Rules        |
|                                        |                  |
|                                        v                  |
|                              Logic App / Playbook         |
|                                        |                  |
|                                        v                  |
|                              Security Copilot API         |
|                              +-----------------+          |
|                              | Summarize       |          |
|                              | Enrich Entities |          |
|                              | Assess Risk     |          |
|                              | Recommend Action|          |
|                              +--------+--------+          |
|                                       |                   |
|                                       v                   |
|                     +-----------------------------+       |
|                     |  Update Incident            |       |
|                     |  - Add triage summary tag   |       |
|                     |  - Adjust severity          |       |
|                     |  - Assign to analyst/team   |       |
|                     |  - Auto-close false positive|       |
|                     +-----------------------------+       |
+-----------------------------------------------------------+&lt;/LI-CODE&gt;&lt;H2&gt;Step 1 - Identify High-Volume Triage Candidates&lt;/H2&gt;&lt;P&gt;Not every incident type benefits equally from automated triage. Start with alert types that are high in volume but often turn out to be false positives or low severity. Use this KQL query to identify your top candidates:&lt;/P&gt;&lt;LI-CODE lang="kusto"&gt;SecurityIncident
| where TimeGenerated &amp;gt; ago(30d)
| summarize
    TotalIncidents = count(),
    AutoClosed = countif(Classification == "FalsePositive" or Classification == "BenignPositive"),
    AvgTimeToTriageMinutes = avg(datetime_diff('minute', FirstActivityTime, CreatedTime))
    by Title
| extend FalsePositiveRate = round(AutoClosed * 100.0 / TotalIncidents, 1)
| where TotalIncidents &amp;gt; 10
| order by TotalIncidents desc
| take 20&lt;/LI-CODE&gt;&lt;P&gt;This query surfaces the incident types where automation will deliver the highest ROI. Based on publicly available data and community reports, the following categories consistently appear at the top:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Impossible travel alerts (high volume, around 60% false positive rate)&lt;/LI&gt;&lt;LI&gt;Suspicious sign-in activity from unfamiliar locations&lt;/LI&gt;&lt;LI&gt;Mass file download and share events&lt;/LI&gt;&lt;LI&gt;Mailbox forwarding rule creation&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;Step 2 - Build the Copilot-Powered Triage Playbook&lt;/H2&gt;&lt;P&gt;Create a Logic App playbook that triggers on incident creation and leverages the Security Copilot connector. The core flow looks like this:&lt;/P&gt;&lt;P&gt;Trigger: Microsoft Sentinel Incident - When an incident is created&lt;/P&gt;&lt;P&gt;Action 1 - Get incident entities:&lt;/P&gt;&lt;LI-CODE lang="kusto"&gt;let incidentEntities = SecurityIncident
| where IncidentNumber == &amp;lt;IncidentNumber&amp;gt;
| mv-expand AlertIds
| join kind=inner (SecurityAlert | extend AlertId = SystemAlertId) on $left.AlertIds == $right.AlertId
| mv-expand Entities
| extend EntityData = parse_json(Entities)
| project EntityType = tostring(EntityData.Type),
          EntityValue = coalesce(
              tostring(EntityData.HostName),
              tostring(EntityData.Address),
              tostring(EntityData.Name),
              tostring(EntityData.DnsDomain)
          );
incidentEntities&lt;/LI-CODE&gt;&lt;P&gt;Note: The &amp;lt;IncidentNumber&amp;gt; placeholder above is a Logic App dynamic content variable. When building your playbook, select the incident number from the trigger output rather than hardcoding a value.&lt;/P&gt;&lt;P&gt;Action 2 - Copilot prompt session:&lt;/P&gt;&lt;P&gt;Send a structured prompt to Security Copilot that requests:&lt;/P&gt;&lt;LI-CODE lang=""&gt;Analyze this Microsoft Sentinel incident and provide a triage assessment:

Incident Title: {IncidentTitle}
Severity: {Severity}
Description: {Description}
Entities involved: {EntityList}
Alert count: {AlertCount}

Please provide:
1. A concise summary of what happened (2-3 sentences)
2. Entity risk assessment for each IP, user, and host
3. Whether this appears to be a true positive, benign positive, or false positive
4. Recommended next steps
5. Suggested severity adjustment (if any)&lt;/LI-CODE&gt;&lt;P&gt;Action 3 - Parse and route:&lt;/P&gt;&lt;P&gt;Use the Copilot response to update the incident. The Logic App parses the structured output and:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adds the triage summary as an incident comment&lt;/LI&gt;&lt;LI&gt;Tags the incident with copilot-triaged&lt;/LI&gt;&lt;LI&gt;Adjusts severity if Copilot recommends it&lt;/LI&gt;&lt;LI&gt;Routes to the appropriate analyst tier based on the assessment&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;Step 3 - Enrich with Contextual KQL Lookups&lt;/H2&gt;&lt;P&gt;Security Copilot's assessment improves dramatically when you feed it contextual data. Before sending the prompt, enrich the incident with organization-specific signals:&lt;/P&gt;&lt;LI-CODE lang="kusto"&gt;// Check if the user has a history of similar alerts (repeat offender vs. first time)
let userAlertHistory = SecurityAlert
| where TimeGenerated &amp;gt; ago(90d)
| mv-expand Entities
| extend EntityData = parse_json(Entities)
| where EntityData.Type == "account"
| where tostring(EntityData.Name) == "&amp;lt;UserPrincipalName&amp;gt;"
| summarize
    PriorAlertCount = count(),
    DistinctAlertTypes = dcount(AlertName),
    LastAlertTime = max(TimeGenerated)
| extend IsRepeatOffender = PriorAlertCount &amp;gt; 5;
userAlertHistory&lt;/LI-CODE&gt;&lt;LI-CODE lang="kusto"&gt;// Check user risk level from Entra ID Protection
AADUserRiskEvents
| where TimeGenerated &amp;gt; ago(7d)
| where UserPrincipalName == "&amp;lt;UserPrincipalName&amp;gt;"
| summarize
    arg_max(TimeGenerated, RiskLevel),
    RecentRiskEvents = count()
| project RiskLevel, RecentRiskEvents&lt;/LI-CODE&gt;&lt;P&gt;Including this context in the Copilot prompt transforms generic assessments into organization-aware triage decisions. A "suspicious sign-in" for a user who travels internationally every week is very different from the same alert for a user who has never left their home country.&lt;/P&gt;&lt;H2&gt;Step 4 - Implement Feedback Loops&lt;/H2&gt;&lt;P&gt;Automated triage is only as good as its accuracy over time. Build a feedback mechanism by tracking Copilot's assessments against analyst final classifications:&lt;/P&gt;&lt;LI-CODE lang="kusto"&gt;SecurityIncident
| where Tags has "copilot-triaged"
| where TimeGenerated &amp;gt; ago(30d)
| where Classification != ""
| mv-expand Comments
| extend CopilotAssessment = extract("Assessment: (True Positive|False Positive|Benign Positive)", 1, tostring(Comments))
| where isnotempty(CopilotAssessment)
| summarize
    Total = dcount(IncidentNumber),
    Correct = dcountif(IncidentNumber,
        (CopilotAssessment == "False Positive" and Classification == "FalsePositive") or
        (CopilotAssessment == "True Positive" and Classification == "TruePositive") or
        (CopilotAssessment == "Benign Positive" and Classification == "BenignPositive")
    )
    by bin(TimeGenerated, 7d)
| extend AccuracyPercent = round(Correct * 100.0 / Total, 1)
| order by TimeGenerated asc&lt;/LI-CODE&gt;&lt;P&gt;For this query to work reliably, the automation playbook must write the assessment in a consistent format within the incident comments. Use a structured prefix such as Assessment: True Positive so the regex extraction remains stable.&lt;/P&gt;&lt;P&gt;According to Microsoft's published benchmarks and community feedback, Copilot-assisted triage typically achieves 85-92% agreement with senior analyst classifications after prompt tuning - significantly reducing the manual triage burden.&lt;/P&gt;&lt;H2&gt;A Note on Licensing and Compute Units&lt;/H2&gt;&lt;P&gt;Security Copilot is licensed through Security Compute Units (SCUs), which are provisioned in Azure. Each prompt session consumes SCUs based on the complexity of the request. For automated triage at scale, plan your SCU capacity carefully - high-volume playbooks can accumulate significant usage. Start with a conservative allocation, monitor consumption through the Security Copilot usage dashboard, and scale up as you validate ROI. Microsoft provides detailed guidance on SCU sizing in the official Security Copilot documentation.&lt;/P&gt;&lt;H2&gt;Example Scenario - Impossible Travel at Scale&lt;/H2&gt;&lt;P&gt;Consider a typical enterprise that generates over 200 impossible travel alerts per week. The SOC team spends roughly 15 hours weekly just triaging these. Here is how automated triage addresses this:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Detection - Sentinel's built-in impossible travel analytics rule flags the incidents&lt;/LI&gt;&lt;LI&gt;Enrichment - The playbook pulls each user's typical travel patterns from sign-in logs over the past 90 days, VPN usage, and whether the "impossible" location matches any known corporate office or VPN egress point&lt;/LI&gt;&lt;LI&gt;Copilot Analysis - Security Copilot receives the enriched context and classifies each incident&lt;/LI&gt;&lt;LI&gt;Expected Result - Based on common deployment patterns, around 70-75% of impossible travel incidents are auto-closed as benign (VPN, known travel patterns), roughly 20% are downgraded to informational with a triage note, and only about 5% are escalated to analysts as genuine suspicious activity&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;This type of automation can reclaim over 10 hours per week - time that analysts can redirect to proactive threat hunting.&lt;/P&gt;&lt;H2&gt;Getting Started - Practical Recommendations&lt;/H2&gt;&lt;P&gt;For teams ready to implement automated triage with Security Copilot and Sentinel, here is a recommended approach:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Start small. Pick one high-volume, high-false-positive incident type. Do not try to automate everything at once.&lt;/LI&gt;&lt;LI&gt;Run in shadow mode first. Have the playbook add triage comments but do not auto-close or re-route. Let analysts compare Copilot's assessment with their own for two to four weeks.&lt;/LI&gt;&lt;LI&gt;Tune your prompts. Generic prompts produce generic results. Include organization-specific context - naming conventions, known infrastructure, typical user behavior patterns.&lt;/LI&gt;&lt;LI&gt;Monitor accuracy continuously. Use the feedback loop KQL above. If accuracy drops below 80%, pause automation and investigate.&lt;/LI&gt;&lt;LI&gt;Maintain human oversight. Even at 90%+ accuracy, keep a human review step for high-severity incidents. Automation handles volume - analysts handle judgment.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The combination of Security Copilot and Microsoft Sentinel represents a genuine step forward for SOC efficiency. By automating the initial triage pass - summarizing incidents, enriching entities, and providing classification recommendations - analysts are freed to focus on what humans do best: making nuanced security decisions under uncertainty.&lt;/P&gt;&lt;P&gt;Feel free to like or/and connect :)&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2026 13:09:01 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/security-copilot-integration-with-microsoft-sentinel-why/m-p/4507293#M12906</guid>
      <dc:creator>Marcel_Graewer</dc:creator>
      <dc:date>2026-03-31T13:09:01Z</dc:date>
    </item>
    <item>
      <title>Webinar Cancellation</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/webinar-cancellation/m-p/4507045#M12905</link>
      <description>&lt;img /&gt;
&lt;P&gt;Hi everyone!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The webinar originally scheduled for April 14th on "Using distributed content to manage your multi-tenant SecOps" has unfortunately been cancelled for now. We apologize for the inconvenience and hope to reschedule it in the future.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find other available webinars at: &lt;A class="lia-external-url" href="http://aka.ms/securitycommunity" target="_blank"&gt;http://aka.ms/securitycommunity&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All the best,&lt;/P&gt;
&lt;P&gt;The Microsoft Security Community Team&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2026 21:40:40 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/webinar-cancellation/m-p/4507045#M12905</guid>
      <dc:creator>emilyfalla</dc:creator>
      <dc:date>2026-03-30T21:40:40Z</dc:date>
    </item>
    <item>
      <title>Your Sentinel AMA Logs &amp; Queries Are Public by Default — AMPLS Architectures to Fix That</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/your-sentinel-ama-logs-queries-are-public-by-default-ampls/m-p/4505699#M12899</link>
      <description>&lt;P&gt;When you deploy Microsoft Sentinel, security log ingestion travels over public Azure Data Collection Endpoints by default. The connection is encrypted, and the data arrives correctly — but the endpoint is publicly reachable, and so is the workspace itself, queryable from any browser on any network.&lt;/P&gt;&lt;P&gt;For many organisations, that trade-off is fine. For others — regulated industries, healthcare, financial services, critical infrastructure — it is the exact problem they need to solve.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Azure Monitor Private Link Scope (AMPLS)&lt;/STRONG&gt;&amp;nbsp;is how you solve it.&lt;/P&gt;&lt;H3&gt;What AMPLS Actually Does&lt;/H3&gt;&lt;P&gt;AMPLS is a single Azure resource that wraps your monitoring pipeline and controls two settings:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Where logs are allowed to go&lt;/STRONG&gt;&amp;nbsp;(ingestion mode:&amp;nbsp;Open&amp;nbsp;or&amp;nbsp;PrivateOnly)&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Where analysts are allowed to query from&lt;/STRONG&gt;&amp;nbsp;(query mode:&amp;nbsp;Open&amp;nbsp;or&amp;nbsp;PrivateOnly)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Change those two settings and you fundamentally change the security posture — not as a policy recommendation, but as a&amp;nbsp;&lt;STRONG&gt;hard platform enforcement&lt;/STRONG&gt;. Set ingestion to&amp;nbsp;PrivateOnly&amp;nbsp;and the public endpoint stops working. It does not fall back gracefully. It returns an error. That is the point.&lt;/P&gt;&lt;P&gt;It is not a firewall rule someone can bypass or a policy someone can override. Control is baked in at the infrastructure level.&lt;/P&gt;&lt;H3&gt;Three Patterns — One Spectrum&lt;/H3&gt;&lt;P&gt;There is no universally correct answer. The right architecture depends on your organisation's risk appetite, existing network infrastructure, and how much operational complexity your team can realistically manage. These three patterns cover the full range:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;Architecture 1 — Open / Public (Basic)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;No AMPLS. Logs travel to public Data Collection Endpoints over the internet. The workspace is open to queries from anywhere. This is the default — operational in minutes with zero network setup.&lt;/P&gt;&lt;P&gt;Cloud service connectors (Microsoft 365, Defender, third-party) work immediately because they are server-side/API/Graph pulls and are unaffected by AMPLS. Azure Monitor Agents and Azure Arc agents handle ingestion from cloud or on-prem machines via public network.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;UL&gt;&lt;LI&gt;Simplicity: 9/10 | Security: 6/10&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Good for:&lt;/STRONG&gt;&amp;nbsp;Dev environments, teams getting started, low-sensitivity workloads&lt;/LI&gt;&lt;/UL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;Architecture 2 — Hybrid: Private Ingestion, Open Queries (Recommended for most)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;AMPLS is in place. Ingestion is locked to&amp;nbsp;PrivateOnly&amp;nbsp;— logs from virtual machines travel through a Private Endpoint inside your own network, never touching a public route. On-premises or hybrid machines connect through Azure Arc over VPN or a dedicated circuit and feed into the same private pipeline.&lt;/P&gt;&lt;P&gt;Query access stays open, so analysts can work from anywhere without needing a VPN/Jumpbox to reach the Sentinel portal — the investigation workflow stays flexible, but the log ingestion path is fully ring-fenced. You can also split ingestion mode per DCE if you need some sources public and some private.&lt;/P&gt;&lt;P&gt;This is the architecture most organisations land on as their steady state.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;UL&gt;&lt;LI&gt;Simplicity: 6/10 | Security: 8/10&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Good for:&lt;/STRONG&gt;&amp;nbsp;Organisations with mixed cloud and on-premises estates that need private ingestion without restricting analyst access&lt;/LI&gt;&lt;/UL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;Architecture 3 — Fully Private (Maximum Control)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Infrastructure is essentially identical to Architecture 2 — AMPLS, Private Endpoints, Private DNS zones, VPN or dedicated circuit, Azure Arc for on-premises machines. The single difference:&amp;nbsp;&lt;STRONG&gt;query mode is also set to&amp;nbsp;PrivateOnly&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Analysts can only reach Sentinel from inside the private network. VPN or Jumpbox required to access the portal. Both the pipe that carries logs in and the channel analysts use to read them are fully contained within the defined boundary.&lt;/P&gt;&lt;P&gt;This is the right choice when your organisation needs to demonstrate — not just claim — that security data never moves outside a defined network perimeter.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;UL&gt;&lt;LI&gt;Simplicity: 2/10 | Security: 10/10&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Good for:&lt;/STRONG&gt;&amp;nbsp;Organisations with strict data boundary requirements (regulated industries, audit, compliance mandates)&lt;/LI&gt;&lt;/UL&gt;&lt;img /&gt;&lt;H3&gt;Quick Reference — Which Pattern Fits?&lt;/H3&gt;&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Scenario&lt;/th&gt;&lt;th&gt;Architecture&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Getting started / low-sensitivity workloads&lt;/td&gt;&lt;td&gt;&lt;STRONG&gt;Arch 1&lt;/STRONG&gt;&amp;nbsp;— No network setup, public endpoints accepted&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Private log ingestion, analysts work anywhere&lt;/td&gt;&lt;td&gt;&lt;STRONG&gt;Arch 2&lt;/STRONG&gt;&amp;nbsp;— AMPLS&amp;nbsp;PrivateOnly&amp;nbsp;ingestion, query mode open&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Both ingestion and queries must be fully private&lt;/td&gt;&lt;td&gt;&lt;STRONG&gt;Arch 3&lt;/STRONG&gt;&amp;nbsp;— Same as Arch 2 + query mode set to&amp;nbsp;PrivateOnly&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;One thing all three share:&lt;/STRONG&gt; Microsoft 365, Entra ID, and Defender connectors work in every pattern — they are server-side pulls by Sentinel and are not affected by your network posture.&lt;/P&gt;&lt;img /&gt;&lt;P&gt;Please feel free to reach out if you have any questions regarding the information provided.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2026 23:19:39 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/your-sentinel-ama-logs-queries-are-public-by-default-ampls/m-p/4505699#M12899</guid>
      <dc:creator>veesamprabhukiran</dc:creator>
      <dc:date>2026-03-25T23:19:39Z</dc:date>
    </item>
    <item>
      <title>Sentinel datalake: private link/private endpoint</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/sentinel-datalake-private-link-private-endpoint/m-p/4504688#M12894</link>
      <description>&lt;P&gt;Has anyone already configured Sentinel Datalake with a private link/private endpoint setup? I can't find any instructions for this specific case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I use the wizard in the Defender XDR portal, or does it require specific configuration steps?&lt;/P&gt;&lt;P&gt;Or does it require configuring a private link/private endpoint setup on the Datalake component after activation via the wizard?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2026 11:40:25 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/sentinel-datalake-private-link-private-endpoint/m-p/4504688#M12894</guid>
      <dc:creator>munterweger</dc:creator>
      <dc:date>2026-03-23T11:40:25Z</dc:date>
    </item>
    <item>
      <title>RSAC 2026: What the Sentinel Playbook Generator actually means for SOC automation</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/rsac-2026-what-the-sentinel-playbook-generator-actually-means/m-p/4504463#M12893</link>
      <description>&lt;P&gt;RSAC 2026 brought a wave of Sentinel announcements, but the one I keep coming back to is the playbook generator. Not because it's the flashiest, but because it touches something that's been a real operational pain point for years: the gap between what SOC teams need to automate and what they can realistically build and maintain.&lt;/P&gt;&lt;P&gt;I want to unpack what this actually changes from an operational perspective, because I think the implications go further than "you can now vibe-code a playbook."&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The problem it solves&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If you've built and maintained Logic Apps playbooks in Sentinel at any scale, you know the friction. You need a connector for every integration. If there isn't one, you're writing custom HTTP actions with authentication handling, pagination, error handling - all inside a visual designer that wasn't built for complex branching logic. Debugging is painful. Version control is an afterthought. And when something breaks at 2am, the person on call needs to understand both the Logic Apps runtime AND the security workflow to fix it.&lt;/P&gt;&lt;P&gt;The result in most environments I've seen: teams build a handful of playbooks for the obvious use cases (isolate host, disable account, post to Teams) and then stop. The long tail of automation - the enrichment workflows, the cross-tool correlation, the conditional response chains - stays manual because building it is too expensive relative to the time saved.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What's actually different now&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The playbook generator produces Python. Not Logic Apps JSON, not ARM templates - actual Python code with documentation and a visual flowchart. You describe the workflow in natural language, the system proposes a plan, asks clarifying questions, and then generates the code once you approve.&lt;/P&gt;&lt;P&gt;The Integration Profile concept is where this gets interesting. Instead of relying on predefined connectors, you define a base URL, auth method, and credentials for any service - and the generator creates dynamic API calls against it. This means you can automate against ServiceNow, Jira, Slack, your internal CMDB, or any REST API without waiting for Microsoft or a partner to ship a connector.&lt;/P&gt;&lt;P&gt;The embedded VS Code experience with plan mode and act mode is a deliberate design choice. Plan mode lets you iterate on the workflow before any code is generated. Act mode produces the implementation. You can then validate against real alerts and refine through conversation or direct code edits. This is a meaningful improvement over the "deploy and pray" cycle most of us have with Logic Apps.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where I see the real impact&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For environments running Sentinel at scale, the playbook generator could unlock the automation long tail I mentioned above. The workflows that were never worth the Logic Apps development effort might now be worth a 15-minute conversation with the generator. Think: enrichment chains that pull context from three different tools before deciding on a response path, or conditional escalation workflows that factor in asset criticality, time of day, and analyst availability.&lt;/P&gt;&lt;P&gt;There's also an interesting angle for teams that operate across Microsoft and non-Microsoft tooling. If your SOC uses Sentinel for SIEM but has Palo Alto, CrowdStrike, or other vendors in the stack, the Integration Profile approach means you can build cross-vendor response playbooks without middleware.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The questions I'd genuinely like to hear about&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;A few things that aren't clear from the documentation and that I think matter for production use:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Security Copilot dependency:&lt;/STRONG&gt; The prerequisites require a Security Copilot workspace with EU or US capacity. Someone in the blog comments already flagged this as a potential blocker for organizations that have Sentinel but not Security Copilot. Is this a hard requirement going forward, or will there be a path for Sentinel-only customers?&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Code lifecycle management:&lt;/STRONG&gt; The generated Python runs... where exactly? What's the execution runtime? How do you version control, test, and promote these playbooks across dev/staging/prod? Logic Apps had ARM templates and CI/CD patterns. What's the equivalent here?&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Integration Profile security:&lt;/STRONG&gt; You're storing credentials for potentially every tool in your security stack inside these profiles. What's the credential storage model? Is this backed by Key Vault? How do you rotate credentials without breaking running playbooks?&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Debugging in production:&lt;/STRONG&gt; When a generated playbook fails at 2am, what does the troubleshooting experience look like? Do you get structured logs, execution traces, retry telemetry? Or are you reading Python stack traces?&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Coexistence with Logic Apps:&lt;/STRONG&gt; Most environments won't rip and replace overnight. What's the intended coexistence model between generated Python playbooks and existing Logic Apps automation rules?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I'm genuinely optimistic about this direction. Moving from a low-code visual designer to an AI-assisted coding model with transparent, editable output feels like the right architectural bet for where SOC automation needs to go. But the operational details around lifecycle, security, and debugging will determine whether this becomes a production staple or stays a demo-only feature.&lt;/P&gt;&lt;P&gt;Would be interested to hear from anyone who's been in the preview - what's the reality like compared to the pitch?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Mar 2026 12:22:31 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/rsac-2026-what-the-sentinel-playbook-generator-actually-means/m-p/4504463#M12893</guid>
      <dc:creator>Marcel_Graewer</dc:creator>
      <dc:date>2026-03-22T12:22:31Z</dc:date>
    </item>
    <item>
      <title>Ingest Microsoft XDR Advanced Hunting Data into Microsoft Sentinel</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/ingest-microsoft-xdr-advanced-hunting-data-into-microsoft/m-p/4503622#M12889</link>
      <description>&lt;P&gt;I had difficulty finding a guide that can query Microsoft Defender vulnerability management Advanced Hunting tables in Microsoft Sentinel for alerting and automation. As a result, I put together this guide to demonstrate how to ingest Microsoft XDR Advanced Hunting query results into Microsoft Sentinel using Azure Logic Apps and System‑Assigned Managed Identity.&lt;/P&gt;&lt;P&gt;The solution allows you to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Run Advanced Hunting queries on a schedule&lt;/LI&gt;&lt;LI&gt;Collect high‑risk vulnerability data (or other hunting results)&lt;/LI&gt;&lt;LI&gt;Send the results to a Sentinel workspace as custom logs&lt;/LI&gt;&lt;LI&gt;Create alerts and automation rules based on this data&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This approach avoids credential storage and follows least privilege and managed identity best practices.&lt;/P&gt;&lt;P&gt;Prerequisites&lt;/P&gt;&lt;P&gt;Before you begin, ensure you have:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Microsoft Defender XDR access&lt;/LI&gt;&lt;LI&gt;Microsoft Sentinel deployed&lt;/LI&gt;&lt;LI&gt;Azure Logic Apps permission&lt;/LI&gt;&lt;LI&gt;Application Administrator or higher in Microsoft Entra ID&lt;/LI&gt;&lt;LI&gt;PowerShell with Az modules installed&lt;/LI&gt;&lt;LI&gt;Contributor access to the Sentinel workspace&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Architecture at a Glance&lt;/P&gt;&lt;P&gt;Logic App (Managed Identity)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ↓&lt;/P&gt;&lt;P&gt;Microsoft XDR Advanced Hunting API&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ↓&lt;/P&gt;&lt;P&gt;Logic App&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ↓&lt;/P&gt;&lt;P&gt;Log Analytics Data Collector API&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ↓&lt;/P&gt;&lt;P&gt;Microsoft Sentinel (Custom Log)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Step 1: Create a Logic App&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;In the Azure Portal, go to Logic Apps&lt;/LI&gt;&lt;LI&gt;Create a new Consumption Logic App&lt;/LI&gt;&lt;LI&gt;Choose the appropriate:&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;Subscription&lt;/LI&gt;&lt;LI&gt;Resource Group&lt;/LI&gt;&lt;LI&gt;Region&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;Step 2: Enable System‑Assigned Managed Identity&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Open the Logic App&lt;/LI&gt;&lt;LI&gt;Navigate to Settings → Identity&lt;/LI&gt;&lt;LI&gt;Enable System‑assigned managed identity&lt;/LI&gt;&lt;LI&gt;Click Save&lt;/LI&gt;&lt;LI&gt;Note the Object ID&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This identity will later be granted permission to run Advanced Hunting queries.&lt;/P&gt;&lt;P&gt;Step 3: Locate the Logic App in Entra ID&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Go to Microsoft Entra ID → Enterprise Applications&lt;/LI&gt;&lt;LI&gt;Change filter to All Applications&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Search for your Logic App name&lt;/LI&gt;&lt;LI&gt;Select the app to confirm it exists&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Step 4: Grant Advanced Hunting Permissions (PowerShell)&lt;/P&gt;&lt;P&gt;Advanced Hunting permissions cannot be assigned via the portal and must be done using PowerShell.&lt;/P&gt;&lt;P&gt;Required Permission&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;AdvancedQuery.Read.All&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;PowerShell Script&lt;/P&gt;&lt;LI-CODE lang="powershell"&gt;# Your tenant ID (in the Azure portal, under Azure Active Directory &amp;gt; Overview).
$TenantID=”Your TenantID”
Connect-AzAccount -TenantId $TenantID
# Get the ID of the managed identity for the app.
$spID = “Your Managed Identity”
# Get the service principal for Microsoft Graph by providing the AppID of WindowsDefender ATP
$GraphServicePrincipal = Get-AzADServicePrincipal -Filter "AppId eq 'fc780465-2017-40d4-a0c5-307022471b92'" | Select-Object Id
# Extract the Advanced query ID.
$AppRole = $GraphServicePrincipal.AppRole | `
Where-Object {$_.Value -contains "AdvancedQuery.Read.All"}
# If AppRoleID comes up with blank value, it can be replaced with 93489bf5-0fbc-4f2d-b901-33f2fe08ff05
# Now add the permission to the app to read the advanced queries
New-AzADServicePrincipalAppRoleAssignment -ServicePrincipalId $spID -ResourceId $GraphServicePrincipal.Id -AppRoleId $AppRole.Id
# Or
New-AzADServicePrincipalAppRoleAssignment -ServicePrincipalId $spID -ResourceId $GraphServicePrincipal.Id -AppRoleId 93489bf5-0fbc-4f2d-b901-33f2fe08ff05&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After successful execution, verify the permission under Enterprise Applications → Permissions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Step 5: Build the Logic App Workflow&lt;/P&gt;&lt;P&gt;Open Logic App Designer and create the following flow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;Trigger&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Recurrence (e.g., every 24 hours&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Run Advanced Hunting Query&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Connector: Microsoft Defender ATP&lt;/LI&gt;&lt;LI&gt;Authentication: System‑Assigned Managed Identity&lt;/LI&gt;&lt;LI&gt;Action: Run Advanced Hunting Query&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Sample KQL Query (High‑Risk Vulnerabilities)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;Send Data to Log Analytics (Sentinel)&lt;/P&gt;&lt;P&gt;On Send Data, create a new connection and provide the workspace information where the Sentinel log exists. Obtaining the Workspace Key is not straightforward, we need to retrieve using the PowerShell command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="powershell"&gt;Get-AzOperationalInsightsWorkspaceSharedKey `
-ResourceGroupName "&amp;lt;ResourceGroupName&amp;gt;" `
-Name "&amp;lt;WorkspaceName&amp;gt;"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Configuration Details&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Workspace ID&lt;/LI&gt;&lt;LI&gt;Primary key&lt;/LI&gt;&lt;LI&gt;Log Type (example): XDRVulnerability_CL&lt;/LI&gt;&lt;LI&gt;Request body: Results array from Advanced Hunting&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Step 6: Run the Logic app to return results&lt;/P&gt;&lt;P&gt;In the logic app designer select run,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the run is successful data will be sent to sentinel workspace.&lt;/P&gt;&lt;P&gt;Step 7: Validate Data in Microsoft Sentinel&lt;/P&gt;&lt;P&gt;In Sentinel, run the query:&lt;/P&gt;&lt;LI-CODE lang="kusto"&gt;XDRVulnerability_CL
| where TimeGenerated &amp;gt; ago(24h)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&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;If data appears, ingestion is successful.&lt;/P&gt;&lt;P&gt;Step 8: Create Alerts &amp;amp; Automation Rules&lt;/P&gt;&lt;P&gt;Use Sentinel to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Create analytics rules for:&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;CVSS &amp;gt; 9&lt;/LI&gt;&lt;LI&gt;Exploit available&lt;/LI&gt;&lt;LI&gt;New vulnerabilities in last 24 hours&lt;/LI&gt;&lt;/UL&gt;&lt;LI&gt;Trigger:&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;Email notifications&lt;/LI&gt;&lt;LI&gt;Incident creation&lt;/LI&gt;&lt;LI&gt;SOAR playbooks&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;Conclusion&lt;/P&gt;&lt;P&gt;By combining Logic Apps, Managed Identities, Microsoft XDR, and Microsoft Sentinel, you can create a powerful, secure, and scalable pipeline for ingesting hunting intelligence and triggering proactive detections.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2026 23:38:49 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/ingest-microsoft-xdr-advanced-hunting-data-into-microsoft/m-p/4503622#M12889</guid>
      <dc:creator>muraly005</dc:creator>
      <dc:date>2026-03-18T23:38:49Z</dc:date>
    </item>
    <item>
      <title>Clarification on UEBA Behaviors Layer Support for Zscaler and Fortinet Logs</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/clarification-on-ueba-behaviors-layer-support-for-zscaler-and/m-p/4496720#M12879</link>
      <description>&lt;P&gt;I would like to confirm whether the new UEBA Behaviors Layer in Microsoft Sentinel currently supports generating behavior insights for Zscaler and Fortinet log sources.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on the documentation, the preview version of the Behaviors Layer only supports specific vendors under CommonSecurityLog (CyberArk Vault and Palo Alto Threats), AWS CloudTrail services, and GCP Audit Logs. Since Zscaler and Fortinet are not listed among the supported vendors, I want to verify:&lt;/P&gt;&lt;P&gt;Does the UEBA Behaviors Layer generate behavior records for Zscaler and Fortinet logs, or are these vendors currently unsupported for behavior generation? As logs from Zscaler and Fortinet will also be get ingested in CommonSecurityLog table only.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2026 16:54:36 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/clarification-on-ueba-behaviors-layer-support-for-zscaler-and/m-p/4496720#M12879</guid>
      <dc:creator>RohitN026</dc:creator>
      <dc:date>2026-02-24T16:54:36Z</dc:date>
    </item>
    <item>
      <title>McasShadowItReporting / Cloud Discovery in Azure Sentinel</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/mcasshadowitreporting-cloud-discovery-in-azure-sentinel/m-p/4495351#M12871</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;&lt;BR /&gt;I´m trying to Query the&amp;nbsp;McasShadowItReporting Table, for Cloud App DISCOVERYs&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The Table is empty at the moment, the connector is warning me that the Workspace is onboarded to Unified Security Operations Platform&lt;BR /&gt;So I cant activate it here&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I cant mange it via &lt;A class="lia-external-url" href="https://security.microsoft.com/," target="_blank"&gt;https://security.microsoft.com/,&lt;/A&gt; too&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The Documentation ( &lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/defender-cloud-apps/siem-sentinel#integrating-with-microsoft-sentinel" target="_blank"&gt;https://learn.microsoft.com/en-us/defender-cloud-apps/siem-sentinel#integrating-with-microsoft-sentinel&lt;/A&gt; )&amp;nbsp;&lt;/P&gt;&lt;P&gt;Leads me to the SIEM Integration, which is configured for (for a while)&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&lt;BR /&gt;I wonder if something is misconfigured here and why there is no log ingress / how I can query them&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2026 09:48:47 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/mcasshadowitreporting-cloud-discovery-in-azure-sentinel/m-p/4495351#M12871</guid>
      <dc:creator>Felix87</dc:creator>
      <dc:date>2026-02-17T09:48:47Z</dc:date>
    </item>
    <item>
      <title>CrowdStrike API Data Connector (via Codeless Connector Framework) (Preview)</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/crowdstrike-api-data-connector-via-codeless-connector-framework/m-p/4494852#M12870</link>
      <description>&lt;P&gt;API scopes created. Added to Connector however only streams observed are from Alerts and Hosts.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Detections is not logging? Anyone experiencing this issue? Github has post about it apears to be escalated for feature request.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CrowdStrikeDetections. not ingested&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Anyone have this setup and working?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 17:04:32 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/crowdstrike-api-data-connector-via-codeless-connector-framework/m-p/4494852#M12870</guid>
      <dc:creator>logger2115</dc:creator>
      <dc:date>2026-02-13T17:04:32Z</dc:date>
    </item>
    <item>
      <title>Salesforce Service Cloud (via Codeless Connector Framework)</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/salesforce-service-cloud-via-codeless-connector-framework/m-p/4494850#M12869</link>
      <description>&lt;P&gt;We have 3 environments, does this connector support multiple tenants or is it limited to onle one FQDN?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 16:53:06 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/salesforce-service-cloud-via-codeless-connector-framework/m-p/4494850#M12869</guid>
      <dc:creator>logger2115</dc:creator>
      <dc:date>2026-02-13T16:53:06Z</dc:date>
    </item>
    <item>
      <title>Dedicated cluster for Sentinels in different tenants</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/dedicated-cluster-for-sentinels-in-different-tenants/m-p/4494529#M12868</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;&lt;BR /&gt;I see that there is a possibility to use a dedicated cluster for a workspace in the same Azure region. What about workspaces that reside in different tenants but are in the same Azure region? Is that possible?&lt;/P&gt;&lt;P&gt;We are utilizing multiple tenants, and we want to keep this operational model. However, there is a central SOC, and we wonder if there is a possibility to utilize a dedicated cluster for cost optimization.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2026 08:47:30 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/dedicated-cluster-for-sentinels-in-different-tenants/m-p/4494529#M12868</guid>
      <dc:creator>de3no2</dc:creator>
      <dc:date>2026-02-12T08:47:30Z</dc:date>
    </item>
    <item>
      <title>How Should a Fresher Learn Microsoft Sentinel Properly?</title>
      <link>https://techcommunity.microsoft.com/t5/microsoft-sentinel/how-should-a-fresher-learn-microsoft-sentinel-properly/m-p/4494249#M12866</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am a fresher interested in learning Microsoft Sentinel and preparing for SOC roles.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since Sentinel is a cloud-native enterprise tool and usually used inside organizations, I am unsure how individuals without company access are expected to gain real hands-on experience.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to hear from professionals who actively use Sentinel:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- How do freshers typically learn and practice Sentinel?&lt;/P&gt;&lt;P&gt;- What learning resources or environments are commonly used by beginners?&lt;/P&gt;&lt;P&gt;- What level of hands-on experience is realistically expected at entry level?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking for guidance based on real industry practice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Feb 2026 02:38:02 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/microsoft-sentinel/how-should-a-fresher-learn-microsoft-sentinel-properly/m-p/4494249#M12866</guid>
      <dc:creator>Arjun34</dc:creator>
      <dc:date>2026-02-11T02:38:02Z</dc:date>
    </item>
  </channel>
</rss>

