<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Security on Nicola Suter</title><link>https://nicolasuter.ch/tags/security/</link><description>Recent content in Security on Nicola Suter</description><generator>Hugo -- gohugo.io</generator><language>en-US</language><copyright>© 2026 Nicola Suter</copyright><lastBuildDate>Fri, 01 Dec 2023 00:00:00 +0000</lastBuildDate><atom:link href="https://nicolasuter.ch/tags/security/rss.xml" rel="self" type="application/rss+xml"/><item><title>Have you heard about passkeys and AAGuids?</title><link>https://nicolasuter.ch/have-you-heard-about-passkeys-and-aaguids/</link><pubDate>Fri, 01 Dec 2023 00:00:00 +0000</pubDate><guid>https://nicolasuter.ch/have-you-heard-about-passkeys-and-aaguids/</guid><description>&lt;p&gt;With the availability of passkeys the FIDO2 standards become more accessible in the form of password managers, web-browsers and (mobile) operating systems — without the need for dedicated hardware such as FIDO2 keys.&lt;/p&gt;
&lt;p&gt;Microsoft is currently in the process of developing support for passkeys and shipping the public preview in Q1 2024:&lt;/p&gt;
&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://nicolasuter.ch/content/images/1__pwNnOdcgBQPCEwZRTpGKNg.png"
 &gt;&lt;/figure&gt;
&lt;p&gt;While this is a very welcome addition to make passwordless authentication easily accessible without dedicated hardware such as FIDO2 security keys this also introduces new risks, especially for high value accounts — But why’s that?&lt;/p&gt;
&lt;p&gt;Let’s imagine a fictive scenario (that might become reality in the future) of a user registering a passkey with his password manager app for a Microsoft Entra account. The security of this passkey is now determined by the security measures on the password manager app.&lt;/p&gt;
&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://nicolasuter.ch/content/images/0__7Mdx6OFRnIJ__wVbJ.jpg"
 &gt;&lt;/figure&gt;
&lt;p&gt;For the Microsoft roadmap this scenario is not (yet) applicable as Entra will only support device-bound passkeys. At the end of the day it is a similar situation as the security of the passkey depends on the device with the authenticator (passkey) on it and that’s not necessarily under the umbrella of IT security measures.&lt;/p&gt;
&lt;p&gt;Fortunately there is hope and the FIDO alliance included that critical aspect of distinguishing authenticators in their standards as we’ll find out below.&lt;/p&gt;</description></item><item><title>Enriching Microsoft Sentinel tables with eligible Entra directory roles</title><link>https://nicolasuter.ch/enriching-microsoft-sentinel-tables-with-eligible-entra-directory-roles/</link><pubDate>Fri, 17 Nov 2023 00:00:00 +0000</pubDate><guid>https://nicolasuter.ch/enriching-microsoft-sentinel-tables-with-eligible-entra-directory-roles/</guid><description>&lt;p&gt;Microsoft 365 Defender and Sentinel provide an &lt;em&gt;IdentityInfo&lt;/em&gt; table that contains various information that is helpful for threat hunting and detections. One key piece are also the assigned Entra directory roles for a specific identity. Unfortunately only permanently assigned permissions are covered and in times of Entra Privileged Identity Management (PIM) we should have standing permissions only for non-privileged roles and break-glass accounts.&lt;/p&gt;
&lt;p&gt;Within this blog post I want to share a few tips and tricks to answer the following questions with Sentinel and a little bit of scripting and KQL:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;How can we enrich the &lt;em&gt;IdentityInfo&lt;/em&gt; table to include eligible assigned directory roles?&lt;/li&gt;
&lt;li&gt;Which synchronized user accounts have permanent or eligible directory roles assigned? (Spoiler: this should be avoided at all cost)&lt;/li&gt;
&lt;li&gt;Were eligible directory role assignments not used within the last couple of days and can therefore be removed?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;As a bonus I also prepared an analytics rule for mass unassignment of highly privileged Entra roles, as this tactic was used for example by the LAPSUS$ group.&lt;/p&gt;

&lt;h2 class="relative group"&gt;Gathering PIM eligible Entra Directory Roles
 &lt;div id="gathering-pim-eligible-entra-directory-roles" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#gathering-pim-eligible-entra-directory-roles" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;As the &lt;em&gt;IdentityInfo&lt;/em&gt; and other available built-in data sources do not include eligible role assignments we need a way to gather the existing role assignments. Fortunately, we can query the following Microsoft Graph endpoint to get the eligible permission assignments:&lt;/p&gt;</description></item><item><title>Maintaining Microsoft Sentinel Analytic Rules in JSON and YAML with GitHub Actions</title><link>https://nicolasuter.ch/maintaining-microsoft-sentinel-analytic-rules-in-json-and-yaml-with-github-actions/</link><pubDate>Mon, 13 Nov 2023 00:00:00 +0000</pubDate><guid>https://nicolasuter.ch/maintaining-microsoft-sentinel-analytic-rules-in-json-and-yaml-with-github-actions/</guid><description>&lt;p&gt;Microsoft Sentinel Analytic Rules can be shared in both the YAML and ARM format, whereas the ARM format leverages JSON as file type. Within…&lt;/p&gt;
&lt;p&gt;Microsoft Sentinel Analytic Rules can be shared in both the YAML and ARM format, whereas the ARM format leverages JSON as file type. Within this short post I want to demonstrate an approach that leverages a GitHub Action to automatically build and update the rules in YAML format — so you can just export and update existing rules without any manual conversion effort.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://twitter.com/fabian_bader" target="_blank" rel="noreferrer"&gt;Fabian Bader&lt;/a&gt; built a cool solution called &lt;a href="https://cloudbrothers.info/convert-sentinel-analytics-rules/" target="_blank" rel="noreferrer"&gt;SentinelARConverter&lt;/a&gt; that allows conversion of exported Sentinel Analctic rules from ARM/JSON to YAML (and vice-versa). To emphasize sharing of analytic rules I wanted to adopt also the YAML format without the need to always manually convert the rules. Therefore I incorporated his solution into a GitHub Action.&lt;/p&gt;
&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://nicolasuter.ch/content/images/1__epyol1VOFkyQ9BI2j7__Agg.png"
 &gt;&lt;/figure&gt;

&lt;h3 class="relative group"&gt;Building a GitHub Action
 &lt;div id="building-a-githubaction" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#building-a-githubaction" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;p&gt;The automation of this task is fairly simple if you are already familiar with GitHub actions. In case you want to directly see the full pipeline, you can find it &lt;a href="https://github.com/nicolonsky/ITDR/blob/main/.github/workflows/build-yaml-rules.yml" target="_blank" rel="noreferrer"&gt;here&lt;/a&gt;. Otherwise keep on reading.&lt;/p&gt;
&lt;p&gt;The GitHub action should be triggered as soon as I upload a new Export of an Analytics Rule to the repository. For that, we need to define a folder structure. I maintain the rules within a folder called &lt;code&gt;AnalyticRules&lt;/code&gt;. Based on that we can define the triggers for the workflow and filter only for the analytic rules path. This will only run the Action, when a file within that folder get’s changed. Additionally, I added a &lt;code&gt;workflow_dispatch&lt;/code&gt; trigger, this allows manual execution of the pipeline.&lt;/p&gt;</description></item><item><title>Have you heard of workload identity access token replay?</title><link>https://nicolasuter.ch/have-you-heard-of-workload-identity-access-token-replay/</link><pubDate>Wed, 08 Nov 2023 00:00:00 +0000</pubDate><guid>https://nicolasuter.ch/have-you-heard-of-workload-identity-access-token-replay/</guid><description>&lt;p&gt;Microsoft recently made the Microsoft Graph Activity Logs available as part of the Microsoft Entra ID diagnostic settings. This means we can use the &lt;em&gt;MicrosoftGraphActivityLogs&lt;/em&gt; Table to enrich custom detections and analytic rules.&lt;/p&gt;
&lt;p&gt;Within this post I want to elaborate closer on an attack scenario for workload identities that leverage workload identity federation and don’t have any persistent credentials or long lived secrets. But one type of credential artefacts is still theft-able — the short lived access tokens.&lt;/p&gt;
&lt;p&gt;Adversaries can try to exfiltrate the access token from the CI/CD environment such as a GitHub action and replay the token within another system to access Entra ID protected resources.&lt;/p&gt;
&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://nicolasuter.ch/content/images/1__iTbbTvAIBrAQsd2KErnBGg.png"
 &gt;&lt;/figure&gt;
&lt;p&gt;This tactic could also be used in scenarios with App Registrations that leverage certificates or clients secrets where adversaries don’t have access to the credentials but get possession of the access token due to exposure in cleartext such as in log files or decrypted TLS traffic.&lt;/p&gt;

&lt;h3 class="relative group"&gt;Stealing and replaying workload identity access tokens
 &lt;div id="stealing-and-replaying-workload-identity-accesstokens" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#stealing-and-replaying-workload-identity-accesstokens" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;p&gt;To demonstrate a scenario to steal and replay an access token of a workload identity, I prepared a demo scenario with a GitHub action that acquires access tokens for the Microsoft Graph API and the Azure Resource Manager API. The pipeline leverages federated credentials (also referred to as workload identity federation).&lt;/p&gt;</description></item><item><title>Microsoft Entra Connect Sync Hardening</title><link>https://nicolasuter.ch/entra-connect-hardening/</link><pubDate>Sun, 24 Sep 2023 00:00:00 +0000</pubDate><guid>https://nicolasuter.ch/entra-connect-hardening/</guid><description>&lt;p&gt;Microsoft Entra Connect Sync (aka Azure AD Connect) allows establishing hybrid identity scenarios by interconnecting on-premises Active Directory and Entra ID (aka Azure AD) and leveraging synchronisation features in both directions. As you might already know, this brings potential for abuse of the assigned permissions to the involved service accounts and permissions of this service.&lt;/p&gt;
&lt;p&gt;On the internet are already some posts with subset of this information but I wanted to provide an actionable post with individual measures to implement. Of course should we do MFA for all admins and AD tiering but some of those steps involve more complex measures to implement and I will try to provide some individual building blocks you can use to harden the configuration of your Entra Connect service accounts.&lt;/p&gt;

&lt;h3 class="relative group"&gt;Understanding the scope
 &lt;div id="understanding-thescope" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#understanding-thescope" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;p&gt;To understand the scope of hardening we need to have an overview of the inner workings of that service. Entra Connect uses three different kind of service accounts for the different systems:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Entra: For the connected Entra tenant, per each Entra Connect installation a cloud only account is created by the wizard: &lt;em&gt;Sync_EIDC02_bba3d8efb72a@nicoladev.onmicrosoft.com&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Active Directory: The active directory account is used to connect a forest and allows both reading and depending on the leveraged synchronisation options also modifying the objects for password reset or group write-back scenarios&lt;/li&gt;
&lt;li&gt;Synchronisation Service: Under this principal, the actual Entra Connect service is running on the server&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Each kind of service account has various interesting privileges that can be abused by attackers. While the security of the server running Entra connect is also an important aspect I want to focus more on the leveraged user accounts as they are subject to multiple well-known attack scenarios.&lt;/p&gt;</description></item><item><title>Why you should use Entra Workload Identity Federation</title><link>https://nicolasuter.ch/why-you-should-use-entra-workload-identity-federation/</link><pubDate>Thu, 07 Sep 2023 00:00:00 +0000</pubDate><guid>https://nicolasuter.ch/why-you-should-use-entra-workload-identity-federation/</guid><description>&lt;p&gt;Microsoft Entra Workload Identity Federation is a hidden gem when dealing with app registrations and service principals because it will significantly improve the security posture of your workload identities. While I already blogged about the more technical and implementation specific details in my &lt;a href="https://nicolasuter.medium.com/github-action-with-azure-ad-workload-identity-federation-fb4e9d8bbf5c" target="_blank" rel="noreferrer"&gt;GitHub Actions with Entra Workload Identity Federation&lt;/a&gt; post, I want to highlight the benefits and scenarios where you can use Workload Identity Federation to access Entra ID protected resources.&lt;/p&gt;

&lt;h2 class="relative group"&gt;Quick recap on Workload Identities
 &lt;div id="quick-recap-on-workload-identities" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#quick-recap-on-workload-identities" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;Should you read this post and wonder what a Workload Identity is, here a quick recap:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A workload identity (can be either a managed identity or service principal) is &lt;strong&gt;used to access resources protected by Entra ID&lt;/strong&gt; (Azure AD) from a service or automation&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;service principal is an instance&lt;/strong&gt; of an &lt;strong&gt;app registration&lt;/strong&gt;. To leverage a service principal authentication with either a client secret, certificate, or federated credential is required.&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;managed identity&lt;/strong&gt; is a Microsoft managed identity of a resource such as a Logic App, Automation Account or VM. Microsoft manages the credentials of those managed identities. This allows for secure access as the credentials are not exposed to other services.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Managed Identity is the recommended type for workload identities for workloads that live in the Microsoft Azure ecosystem. For services and automations outside of Azure, service principals (app registrations) are the only option. The usage and credential configuration is unfortunately not a simple process.&lt;/p&gt;</description></item><item><title>Retrieving Windows LAPS Azure AD Passwords with PowerShell</title><link>https://nicolasuter.ch/retrieving-windows-laps-azure-ad-passwords-with-powershell/</link><pubDate>Wed, 10 May 2023 00:00:00 +0000</pubDate><guid>https://nicolasuter.ch/retrieving-windows-laps-azure-ad-passwords-with-powershell/</guid><description>&lt;p&gt;Did you know that for the new Windows LAPS Azure AD is also maintaining the password history? The built in PowerShell commandlet relies on the Microsoft Graph PowerShell SDK and within this post I want to show you how to work with the &lt;code&gt;Get-LapsAADPassword&lt;/code&gt; cmdlet.&lt;/p&gt;
&lt;p&gt;Kudos to &lt;a href="https://medium.com/u/b214ce59ec84" target="_blank" rel="noreferrer"&gt;Niklas Tinner&lt;/a&gt; as he brought this to my attention while working together.&lt;/p&gt;

&lt;h2 class="relative group"&gt;Where is this command originating from?
 &lt;div id="where-is-this-command-originating-from" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#where-is-this-command-originating-from" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;The &lt;code&gt;Get-LapsAADPassword&lt;/code&gt; cmdlet is part of the &lt;code&gt;LAPS&lt;/code&gt; PowerShell module that was baked into the Windows Operating system with the April 2023 quality updates.&lt;/p&gt;
&lt;p&gt;The module is maintained as part of the Operating System and builds the Interface to interact with Windows LAPS locally on a device. The module binaries reside within &lt;code&gt;C:\Windows\system32\WindowsPowerShell\v1.0\Modules\LAPS&lt;/code&gt; and consist of DLLs and PowerShell files:&lt;/p&gt;
&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="static/content/images/1__qcPzW4MPs441N6xsGkF2sA.png"
 &gt;&lt;/figure&gt;

&lt;h3 class="relative group"&gt;Let’s retrieve some passwords
 &lt;div id="lets-retrieve-some-passwords" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#lets-retrieve-some-passwords" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;p&gt;Before we can start retrieving passwords we need to make sure, that we have the appropriate &lt;a href="https://github.com/microsoftgraph/msgraph-sdk-powershell" target="_blank" rel="noreferrer"&gt;Microsoft Graph PowerShell SDK&lt;/a&gt; module present.&lt;/p&gt;
&lt;p&gt;We can easily check this with the following PowerShell command:&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-powershell" data-lang="powershell"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nb"&gt;Get-Module&lt;/span&gt; &lt;span class="n"&gt;-Name&lt;/span&gt; &lt;span class="n"&gt;Microsoft&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="py"&gt;Graph&lt;/span&gt; &lt;span class="n"&gt;-ListAvailable&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;If you do not retrieve any output, you need to install the module with local Administrator privileges with:&lt;/p&gt;</description></item><item><title>Provoking Defender for Identity suspicious certificate usage alerts</title><link>https://nicolasuter.ch/provoking-defender-for-identity-suspicious-certificate-usage-alerts/</link><pubDate>Tue, 11 Apr 2023 00:00:00 +0000</pubDate><guid>https://nicolasuter.ch/provoking-defender-for-identity-suspicious-certificate-usage-alerts/</guid><description>&lt;p&gt;Microsoft Defender for Identity (MDI) has announced a new capability back in February to detect suspicious certificate usage for Kerberos authentication. It is already well-known, that Active Directory Certificate Services (ADCS) is a lucrative target for adversaries to achieve persistence in Active Directory as ADCS can be easily misconfigured resulting in an easy way to exploit those misconfigurations. In this post I want to show you how easy those misconfigurations can be abused and how and when such an attempt is detected by Microsoft Defender for Identity new detection capabilities for suspicious certificate usage.&lt;/p&gt;

&lt;h2 class="relative group"&gt;What makes a vulnerable environment
 &lt;div id="what-makes-a-vulnerable-environment" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#what-makes-a-vulnerable-environment" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;To be vulnerable for the certificate abuse scenario I will demonstrate an environment needs to have the following conditions present:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ADCS Enterprise Certification Authority (CA)&lt;/li&gt;
&lt;li&gt;CA certificate must be present in NTAuth store (default behaviour when an enterprise ADCS CA is installed)&lt;/li&gt;
&lt;li&gt;At least one domain controller needs to have a kerberos authentication certificate enrolled&lt;/li&gt;
&lt;li&gt;At least one vulnerable certificate template that meets one of the following criteria&amp;rsquo;s:&lt;br&gt;
– “specify subject name in the request” flag enabled AND granting enroll permissions to low privileged principals like domain users or domain computers (or equivalent)&lt;br&gt;
– grants modify permissions to low privileged principals like domain users or computers (or equivalent)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The first three conditions are usually present in a standard Active Directory deployment and provide key functionality for other services. Certificate templates are also a standard thing, but there it really comes down to the (mis)configuration and hardening. Specterops documents those very well and provides tools to check for potential misconfigurations¹.&lt;/p&gt;</description></item><item><title>You must not touch my endpoint security settings!</title><link>https://nicolasuter.ch/you-must-not-touch-my-endpoint-security-settings/</link><pubDate>Sun, 12 Mar 2023 00:00:00 +0000</pubDate><guid>https://nicolasuter.ch/you-must-not-touch-my-endpoint-security-settings/</guid><description>&lt;p&gt;Intune Endpoint Security Configuration Settings have become the way to go for configuring security features on various platforms. What did start with Microsoft Defender for Endpoint settings for Windows clients has evolved to settings for macOS, Windows Servers and is treated like a first class citizen. So it is important to guard those sensitive configurations as they control (and can potentially disable) vital security features on endpoints such as defender tamper protection, attack surface reduction rules, firewall and many more.&lt;/p&gt;
&lt;p&gt;Within this post I want to show you an approach to monitor changes to Intune Endpoint security settings with Microsoft Sentinel and watchlists that can be easily customised based on your environment and needs. My main idea is to classify the sensitive configurations in the environment and only creating incidents for those. Of course you could alert on every Intune configuration change but for most of the environments this would lead to many alerts without providing value.&lt;/p&gt;

&lt;h3 class="relative group"&gt;Prerequisites
 &lt;div id="prerequisites" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#prerequisites" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;p&gt;Changes to the Intune Endpoint security settings area are visible like other changes within the Intune Audit Logs.&lt;/p&gt;
&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://nicolasuter.ch/content/images/1__S01x0aIYMgr7n9fchKevyg.png"
 &gt;&lt;/figure&gt;
&lt;p&gt;To have the audit events within our Sentinel workspace we need to enable the forwarding for at least &lt;em&gt;AuditLogs&lt;/em&gt;. This can be done within the Intune Tenant Administration &amp;gt; Diagnostic Settings blade.&lt;/p&gt;</description></item></channel></rss>