Azure AD Unusual Number of Failed Authentications From Ip

Original Source: [splunk source]
Name:Azure AD Unusual Number of Failed Authentications From Ip
id:3d8d3a36-93b8-42d7-8d91-c5f24cec223d
version:5
date:2024-09-30
author:Mauricio Velazco, Gowthamaraj Rajendran, Splunk
status:production
type:Anomaly
Description:The following analytic identifies a single source IP failing to authenticate with multiple valid users, potentially indicating a Password Spraying attack against an Azure Active Directory tenant. It uses Azure SignInLogs data and calculates the standard deviation for source IPs, applying the 3-sigma rule to detect unusual numbers of failed authentication attempts. This activity is significant as it may signal an adversary attempting to gain initial access or elevate privileges. If confirmed malicious, this could lead to unauthorized access, privilege escalation, and potential compromise of sensitive information.
Data_source:
  • -Azure Active Directory
search:`azure_monitor_aad` category=SignInLogs properties.status.errorCode=50126 properties.authenticationDetails{}.succeeded=false
| rename properties.* as *
| bucket span=5m _time
| stats dc(userPrincipalName) AS unique_accounts values(userPrincipalName) as userPrincipalName by _time, ipAddress
| eventstats avg(unique_accounts) as ip_avg, stdev(unique_accounts) as ip_std by ipAddress
| eval upperBound=(ip_avg+ip_std*3)
| eval isOutlier=if(unique_accounts > 10 and unique_accounts >= upperBound, 1,0)
| where isOutlier = 1
| `azure_ad_unusual_number_of_failed_authentications_from_ip_filter`


how_to_implement:You must install the latest version of Splunk Add-on for Microsoft Cloud Services from Splunkbase (https://splunkbase.splunk.com/app/3110/#/details). You must be ingesting Azure Active Directory events into your Splunk environment through an EventHub. This analytic was written to be used with the azure:monitor:aad sourcetype leveraging the Signin log category.
known_false_positives:A source Ip failing to authenticate with multiple users is not a common for legitimate behavior.
References:
  -https://attack.mitre.org/techniques/T1110/003/
  -https://docs.microsoft.com/en-us/security/compass/incident-response-playbook-password-spray
  -https://www.cisa.gov/uscert/ncas/alerts/aa21-008a
  -https://docs.microsoft.com/azure/active-directory/reports-monitoring/reference-sign-ins-error-codes
drilldown_searches:
name:'View the detection results for - "$userPrincipalName$"'
search:'%original_detection_search% | search userPrincipalName = "$userPrincipalName$"'
earliest_offset:'$info_min_time$'
latest_offset:'$info_max_time$'
name:'View risk events for the last 7 days for - "$userPrincipalName$"'
search:'| from datamodel Risk.All_Risk | search normalized_risk_object IN ("$userPrincipalName$") starthoursago=168 | stats count min(_time) as firstTime max(_time) as lastTime values(search_name) as "Search Name" values(risk_message) as "Risk Message" values(analyticstories) as "Analytic Stories" values(annotations._all) as "Annotations" values(annotations.mitre_attack.mitre_tactic) as "ATT&CK Tactics" by normalized_risk_object | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`'
earliest_offset:'$info_min_time$'
latest_offset:'$info_max_time$'
tags:
  analytic_story:
    - 'Azure Active Directory Account Takeover'
  asset_type:Azure Active Directory
  confidence:90
  impact:60
  message:Possible Password Spraying attack against Azure AD from source ip $ipAddress$
  mitre_attack_id:
    - 'T1586'
    - 'T1586.003'
    - 'T1110'
    - 'T1110.003'
    - 'T1110.004'
  observable:
    name:'userPrincipalName'
    type:'User'
    - role:
      - 'Victim'
    name:'ipAddress'
    type:'IP Address'
    - role:
      - 'Attacker'
  product:
    - 'Splunk Enterprise'
    - 'Splunk Enterprise Security'
    - 'Splunk Cloud'
  required_fields:
    - '_time'
    - 'properties.status.errorCode'
    - 'category'
    - 'properties.authenticationDetails'
    - 'properties.userPrincipalName'
    - 'properties.ipAddress'
  risk_score:54
  security_domain:access

tests:
name:'True Positive Test'
 attack_data:
  data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1110.003/password_spraying_azuread/azuread_signin.log
  source: Azure AD
  sourcetype: azure:monitor:aad
  update_timestamp: True
manual_test:None