Audit Logs / Microsoft Entra ID AuditLogs category
Audit Logs: IdentityProtection
| OperationName | Description | Sample | Rule |
|---|---|---|---|
| Update Identity | Configuration change to an Entra ID Protection risk policy (sign-in or user risk). | N | N |
| Update Notification | Notification settings for the hybrid authentication subsystem were updated. | N | N |
Update IdentityProtectionPolicy
#Description
Records a configuration change to a Microsoft Entra ID Protection risk policy (sign-in risk or user risk) that governs automated responses such as requiring MFA or blocking access. Weakening or disabling these policies reduces protection against risky sign-ins and can aid defense evasion.
References #
Update NotificationSettings
#Description
Notification settings within the hybrid authentication subsystem were updated, for example the email-alert configuration that notifies administrators when the on-premises hybrid identity infrastructure is unhealthy. The exact feature behind this audit operation was not confirmed against a single Learn doc.
References #
Rules often query computed field names, not native AuditLogs columns #
Many Entra detection rules pivot on field names that are not columns in this table but KQL projections the rule author computes from two dynamic columns. Searching the field list for those names finds nothing; use the canonical paths instead.
InitiatingUserPrincipalName(and siblingInitiating*names) is not a column. Rules project it fromInitiatedBy, for exampleextend InitiatingUserPrincipalName = tostring(InitiatedBy.user.userPrincipalName). The native paths areInitiatedBy.user.userPrincipalName,InitiatedBy.user.displayName, andInitiatedBy.user.idfor user actors, andInitiatedBy.app.displayName/InitiatedBy.app.appIdfor application or service-principal actors.- What changed lives in
TargetResources, adynamicarray. Expand it before filtering on the change:AuditLogs | mv-expand TargetResources | extend props = TargetResources.modifiedProperties, then readprops[].displayName,props[].oldValue, andprops[].newValue.
Column shapes per the AuditLogs table reference and the Graph directoryAudit resource.