Unusual Number of Remote Endpoint Authentication Events

Original Source: [splunk source]
Name:Unusual Number of Remote Endpoint Authentication Events
id:acb5dc74-5324-11ec-a36d-acde48001122
version:4
date:2024-10-17
author:Mauricio Velazco, Splunk
status:experimental
type:Hunting
Description:The following analytic identifies an unusual number of remote authentication attempts from a single source by leveraging Windows Event ID 4624, which logs successful account logons. It uses statistical analysis, specifically the 3-sigma rule, to detect deviations from normal behavior. This activity is significant for a SOC as it may indicate lateral movement, malware staging, or reconnaissance. If confirmed malicious, this behavior could allow an attacker to move laterally within the network, escalate privileges, or gather information for further attacks.
Data_source:
  • -Windows Event Log Security 4624
search:`wineventlog_security` EventCode=4624 Logon_Type=3 Account_Name!="*$"
| eval Source_Account = mvindex(Account_Name, 1)
| bucket span=2m _time
| stats dc(ComputerName) AS unique_targets values(ComputerName) as target_hosts by _time, Source_Network_Address, Source_Account
| eventstats avg(unique_targets) as comp_avg , stdev(unique_targets) as comp_std by Source_Network_Address, Source_Account
| eval upperBound=(comp_avg+comp_std*3)
| eval isOutlier=if(unique_targets >10 and unique_targets >= upperBound, 1, 0)
| `unusual_number_of_remote_endpoint_authentication_events_filter`


how_to_implement:To successfully implement this search, you need to be ingesting Windows Event Logs from domain controllers as well as member servers and workstations. The Advanced Security Audit policy setting `Audit Logon` within `Logon/Logoff` needs to be enabled.
known_false_positives:An single endpoint authenticating to a large number of hosts is not common behavior. Possible false positive scenarios include but are not limited to vulnerability scanners, jump servers and missconfigured systems.
References:
  -https://attack.mitre.org/techniques/T1078/
drilldown_searches:
  :
tags:
  analytic_story:
    - 'Active Directory Lateral Movement'
    - 'Active Directory Privilege Escalation'
  asset_type:Endpoint
  confidence:60
  impact:70
  message:Unusual number of remote authentication events from $Source_Network_Address$
  mitre_attack_id:
    - 'T1078'
  observable:
    name:'target_hosts'
    type:'Endpoint'
    - role:
      - 'Victim'
  product:
    - 'Splunk Enterprise'
    - 'Splunk Enterprise Security'
    - 'Splunk Cloud'
  required_fields:
    - '_time'
    - 'EventCode'
    - 'Logon_Type'
    - 'Caller_Process_Name'
    - 'Security_ID'
    - 'Account_Name'
    - 'ComputerName'
  risk_score:42
  security_domain:endpoint

tests:
  :
manual_test:None