Microsoft 365 Global Administrator Role Assigned

edit
A newer version is available. Check out the latest documentation.

Microsoft 365 Global Administrator Role Assigned

edit

In Microsoft Entra ID, permissions to manage resources are assigned using roles. The Global Administrator / Company Administrator is a role that enables users to have access to all administrative features in Entra ID and services that use Entra ID identities like the Microsoft 365 Defender portal, the Microsoft 365 compliance center, Exchange, SharePoint Online, and Skype for Business Online. Adversaries can add users as Global Administrators to maintain access and manage all subscriptions and their settings and resources.

Rule type: query

Rule indices:

  • filebeat-*
  • logs-o365.audit-*

Severity: medium

Risk score: 47

Runs every: 5m

Searches indices from: now-9m (Date Math format, see also Additional look-back time)

Maximum alerts per execution: 100

References:

Tags:

  • Domain: Cloud
  • Domain: SaaS
  • Data Source: Microsoft 365
  • Data Source: Microsoft 365 Audit Logs
  • Use Case: Identity and Access Audit
  • Tactic: Persistence
  • Resources: Investigation Guide

Version: 210

Rule authors:

  • Elastic

Rule license: Elastic License v2

Investigation guide

edit

Triage and Analysis

Investigating Microsoft 365 Global Administrator Role Assigned

The Microsoft 365 Global Administrator role grants comprehensive administrative access across Entra ID and services such as Microsoft 365 Defender, Exchange, SharePoint, and Skype for Business. Adversaries who compromise an account may assign this role to themselves or other users to ensure persistent and privileged access. This rule identifies successful assignments of this role by inspecting audit logs from Azure Active Directory (Entra ID) where the role display name matches "Administrator."

Possible investigation steps

  • Review the user.id and user.name fields to determine who performed the role assignment. Assess whether this user normally has permissions to modify high-privilege roles.
  • Confirm the event.action is "Add member to role." and that the Role_DisplayName.NewValue is "Global Administrator" or a similarly privileged role.
  • Review the user.target.id and user.target.name fields to identify the user or service principal that received the role.
  • Inspect o365.audit.ExtendedProperties.additionalDetails for context on how the action was performed (e.g., via Admin Portal, Graph API).
  • Pivot to sign-in logs for the assigning account to check for recent anomalies such as logins from new geolocations, unrecognized devices, or suspicious IP ranges.
  • Investigate if the account assignment occurred outside of known change windows, during non-business hours, or by a user with no change history.
  • Correlate with other role assignments or directory changes to check for broader role abuse or privilege escalation campaigns.

False positive analysis

  • Role assignments by IT administrators as part of routine maintenance or incident response may appear suspicious in environments without change tracking or ticket correlation.
  • PIM (Privileged Identity Management) activations may temporarily elevate accounts to Global Administrator and then revoke the role afterward.
  • Onboarding processes or internal audits may require temporary elevation to Global Administrator for legitimate users.
  • Automation tools and scripts may trigger this alert if misconfigured to assign Global Administrator privileges during provisioning or sync jobs.

Response and remediation

  • If the assignment is unapproved or suspicious, immediately revoke the Global Administrator role from the assigned user or service principal.
  • Reset credentials and initiate containment steps for the assigning account, especially if compromise is suspected.
  • Enable or verify enforcement of MFA for both assigning and assigned accounts.
  • Review Azure AD activity logs for additional signs of privilege misuse or suspicious directory changes.
  • Notify the appropriate identity and security operations teams to investigate further and begin incident response procedures.
  • Limit the number of Global Administrator accounts and enforce role-based access control (RBAC) using least privilege principles.
  • Consider implementing conditional access policies to limit role assignment actions to specific networks, devices, or user groups.

Rule query

edit
event.dataset:o365.audit
    and event.code:"AzureActiveDirectory"
    and event.action:"Add member to role."
    and event.outcome: "success"
    and o365.audit.ModifiedProperties.Role_DisplayName.NewValue: (
        "Global Administrator" or "Company Administrator"
    )
    and o365.audit.AzureActiveDirectoryEventType: 1
    and o365.audit.RecordType: 8
    and not o365.audit.Target.Type: (4 or 5 or 6)

Framework: MITRE ATT&CKTM