Entra ID MFA Disabled for User

Identifies when multi-factor authentication (MFA) is disabled for an Entra ID user account. An adversary may disable MFA for a user account in order to weaken the authentication requirements for the account.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2020/08/20"
  3integration = ["azure"]
  4maturity = "production"
  5updated_date = "2025/08/29"
  6
  7[rule]
  8author = ["Elastic"]
  9description = """
 10Identifies when multi-factor authentication (MFA) is disabled for an Entra ID user account. An adversary may disable MFA
 11for a user account in order to weaken the authentication requirements for the account.
 12"""
 13from = "now-9m"
 14index = ["filebeat-*", "logs-azure.auditlogs-*"]
 15language = "kuery"
 16license = "Elastic License v2"
 17name = "Entra ID MFA Disabled for User"
 18note = """## Triage and analysis
 19
 20### Investigating Entra ID MFA Disabled for User
 21
 22Multi-factor authentication is a process in which users are prompted during the sign-in process for an additional form of identification, such as a code on their cellphone or a fingerprint scan.
 23
 24If you only use a password to authenticate a user, it leaves an insecure vector for attack. If the password is weak or has been exposed elsewhere, an attacker could be using it to gain access. When you require a second form of authentication, security is increased because this additional factor isn't something that's easy for an attacker to obtain or duplicate.
 25
 26For more information about using MFA in Microsoft Entra ID, access the [official documentation](https://docs.microsoft.com/en-us/azure/active-directory/authentication/concept-mfa-howitworks#how-to-enable-and-use-azure-ad-multi-factor-authentication).
 27
 28This rule identifies the deactivation of MFA for an Entra ID user account. This modification weakens account security and can lead to the compromise of accounts and other assets.
 29
 30#### Possible investigation steps
 31
 32- Identify the user account that performed the action and whether it should perform this kind of action.
 33- Investigate other alerts associated with the user account during the past 48 hours.
 34- Contact the account and resource owners and confirm whether they are aware of this activity.
 35- Correlate with Entra ID Sign-In Logs to identify anomalous sign-in attempts following MFA disablement.
 36- This rule does not identify if the user was removed from a conditional access policy (CAP) with MFA requirements.
 37    - Instead the rule identifies both legacy and modern MFA disablement through user settings.
 38- Check if this operation was approved and performed according to the organization's change management policy.
 39- If you suspect the account has been compromised, scope potentially compromised assets by tracking servers, services, and data accessed by the account in the last 24 hours.
 40
 41### False positive analysis
 42
 43- While this activity can be done by administrators, all users must use MFA. The security team should address any potential benign true positive (B-TP), as this configuration can risk the user and domain.
 44
 45### Response and remediation
 46
 47- Initiate the incident response process based on the outcome of the triage.
 48- Disable or limit the account during the investigation and response.
 49- Identify the possible impact of the incident and prioritize accordingly; the following actions can help you gain context:
 50    - Identify the account role in the cloud environment.
 51    - Assess the criticality of affected services and servers.
 52    - Work with your IT team to identify and minimize the impact on users.
 53    - Identify if the attacker is moving laterally and compromising other accounts, servers, or services.
 54    - Identify any regulatory or legal ramifications related to this activity.
 55- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords or delete API keys as needed to revoke the attacker's access to the environment. Work with your IT teams to minimize the impact on business operations during these actions.
 56- Reactivate multi-factor authentication for the user.
 57- Review the permissions assigned to the implicated user to ensure that the least privilege principle is being followed.
 58- Implement security defaults [provided by Microsoft](https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/concept-fundamentals-security-defaults).
 59- Determine the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
 60- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
 61"""
 62risk_score = 47
 63rule_id = "dafa3235-76dc-40e2-9f71-1773b96d24cf"
 64severity = "medium"
 65tags = [
 66    "Domain: Cloud",
 67    "Domain: Identity",
 68    "Data Source: Azure",
 69    "Data Source: Microsoft Entra ID",
 70    "Data Source: Microsoft Entra ID Audit Logs",
 71    "Use Case: Identity and Access Audit",
 72    "Resources: Investigation Guide",
 73    "Tactic: Persistence",
 74]
 75timestamp_override = "event.ingested"
 76type = "query"
 77
 78query = '''
 79event.dataset: "azure.auditlogs" and
 80    (azure.auditlogs.operation_name: "Disable Strong Authentication" or
 81    (
 82        azure.auditlogs.operation_name: "User deleted security info" and
 83        azure.auditlogs.properties.additional_details.key: "AuthenticationMethod"
 84    )) and event.outcome: (Success or success)
 85'''
 86
 87[[rule.threat]]
 88framework = "MITRE ATT&CK"
 89[[rule.threat.technique]]
 90id = "T1556"
 91name = "Modify Authentication Process"
 92reference = "https://attack.mitre.org/techniques/T1556/"
 93[[rule.threat.technique.subtechnique]]
 94id = "T1556.006"
 95name = "Multi-Factor Authentication"
 96reference = "https://attack.mitre.org/techniques/T1556/006/"
 97
 98
 99
100[rule.threat.tactic]
101id = "TA0003"
102name = "Persistence"
103reference = "https://attack.mitre.org/tactics/TA0003/"

Triage and analysis

Investigating Entra ID MFA Disabled for User

Multi-factor authentication is a process in which users are prompted during the sign-in process for an additional form of identification, such as a code on their cellphone or a fingerprint scan.

If you only use a password to authenticate a user, it leaves an insecure vector for attack. If the password is weak or has been exposed elsewhere, an attacker could be using it to gain access. When you require a second form of authentication, security is increased because this additional factor isn't something that's easy for an attacker to obtain or duplicate.

For more information about using MFA in Microsoft Entra ID, access the official documentation.

This rule identifies the deactivation of MFA for an Entra ID user account. This modification weakens account security and can lead to the compromise of accounts and other assets.

Possible investigation steps

  • Identify the user account that performed the action and whether it should perform this kind of action.
  • Investigate other alerts associated with the user account during the past 48 hours.
  • Contact the account and resource owners and confirm whether they are aware of this activity.
  • Correlate with Entra ID Sign-In Logs to identify anomalous sign-in attempts following MFA disablement.
  • This rule does not identify if the user was removed from a conditional access policy (CAP) with MFA requirements.
    • Instead the rule identifies both legacy and modern MFA disablement through user settings.
  • Check if this operation was approved and performed according to the organization's change management policy.
  • If you suspect the account has been compromised, scope potentially compromised assets by tracking servers, services, and data accessed by the account in the last 24 hours.

False positive analysis

  • While this activity can be done by administrators, all users must use MFA. The security team should address any potential benign true positive (B-TP), as this configuration can risk the user and domain.

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • Disable or limit the account during the investigation and response.
  • Identify the possible impact of the incident and prioritize accordingly; the following actions can help you gain context:
    • Identify the account role in the cloud environment.
    • Assess the criticality of affected services and servers.
    • Work with your IT team to identify and minimize the impact on users.
    • Identify if the attacker is moving laterally and compromising other accounts, servers, or services.
    • Identify any regulatory or legal ramifications related to this activity.
  • Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords or delete API keys as needed to revoke the attacker's access to the environment. Work with your IT teams to minimize the impact on business operations during these actions.
  • Reactivate multi-factor authentication for the user.
  • Review the permissions assigned to the implicated user to ensure that the least privilege principle is being followed.
  • Implement security defaults provided by Microsoft.
  • Determine the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
  • Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).

Related rules

to-top