Multiple Logon Failure from the same Source Address

Identifies multiple consecutive logon failures from the same source address and within a short time interval. Adversaries will often brute force login attempts across multiple users with a common or known password, in an attempt to gain access to accounts.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2020/08/29"
  3integration = ["system", "windows"]
  4maturity = "production"
  5updated_date = "2024/10/15"
  6min_stack_version = "8.14.0"
  7min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
  8
  9[transform]
 10[[transform.osquery]]
 11label = "Osquery - Retrieve DNS Cache"
 12query = "SELECT * FROM dns_cache"
 13
 14[[transform.osquery]]
 15label = "Osquery - Retrieve All Services"
 16query = "SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services"
 17
 18[[transform.osquery]]
 19label = "Osquery - Retrieve Services Running on User Accounts"
 20query = """
 21SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services WHERE
 22NOT (user_account LIKE '%LocalSystem' OR user_account LIKE '%LocalService' OR user_account LIKE '%NetworkService' OR
 23user_account == null)
 24"""
 25
 26[[transform.osquery]]
 27label = "Osquery - Retrieve Service Unsigned Executables with Virustotal Link"
 28query = """
 29SELECT concat('https://www.virustotal.com/gui/file/', sha1) AS VtLink, name, description, start_type, status, pid,
 30services.path FROM services JOIN authenticode ON services.path = authenticode.path OR services.module_path =
 31authenticode.path JOIN hash ON services.path = hash.path WHERE authenticode.result != 'trusted'
 32"""
 33
 34
 35[rule]
 36author = ["Elastic"]
 37description = """
 38Identifies multiple consecutive logon failures from the same source address and within a short time interval.
 39Adversaries will often brute force login attempts across multiple users with a common or known password, in an attempt
 40to gain access to accounts.
 41"""
 42from = "now-9m"
 43index = ["winlogbeat-*", "logs-system.security*", "logs-windows.forwarded*"]
 44language = "eql"
 45license = "Elastic License v2"
 46name = "Multiple Logon Failure from the same Source Address"
 47note = """## Triage and analysis
 48
 49### Investigating Multiple Logon Failure from the same Source Address
 50
 51Adversaries with no prior knowledge of legitimate credentials within the system or environment may guess passwords to attempt access to accounts. Without knowledge of the password for an account, an adversary may opt to guess the password using a repetitive or iterative mechanism systematically. More details can be found [here](https://attack.mitre.org/techniques/T1110/001/).
 52
 53This rule identifies potential password guessing/brute force activity from a single address.
 54
 55> **Note**:
 56> This investigation guide uses the [Osquery Markdown Plugin](https://www.elastic.co/guide/en/security/master/invest-guide-run-osquery.html) introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.
 57
 58#### Possible investigation steps
 59
 60- Investigate the logon failure reason code and the targeted user names.
 61  - Prioritize the investigation if the account is critical or has administrative privileges over the domain.
 62- Investigate the source IP address of the failed Network Logon attempts.
 63  - Identify whether these attempts are coming from the internet or are internal.
 64- Investigate other alerts associated with the involved users and source host during the past 48 hours.
 65- Identify the source and the target computer and their roles in the IT environment.
 66- Check whether the involved credentials are used in automation or scheduled tasks.
 67- If this activity is suspicious, contact the account owner and confirm whether they are aware of it.
 68- Examine the source host for derived artifacts that indicate compromise:
 69  - Observe and collect information about the following activities in the alert source host:
 70    - Attempts to contact external domains and addresses.
 71      - Examine the DNS cache for suspicious or anomalous entries.
 72        - $osquery_0
 73    - Examine the host services for suspicious or anomalous entries.
 74      - $osquery_1
 75      - $osquery_2
 76      - $osquery_3
 77- Investigate potentially compromised accounts. Analysts can do this by searching for login events (for example, 4624) to the host which is the source of this activity
 78
 79### False positive analysis
 80
 81- Understand the context of the authentications by contacting the asset owners. This activity can be related to a new or existing automation or business process that is in a failing state.
 82- Authentication misconfiguration or obsolete credentials.
 83- Service account password expired.
 84- Domain trust relationship issues.
 85- Infrastructure or availability issues.
 86
 87### Related rules
 88
 89- Multiple Logon Failure Followed by Logon Success - 4e85dc8a-3e41-40d8-bc28-91af7ac6cf60
 90
 91### Response and remediation
 92
 93- Initiate the incident response process based on the outcome of the triage.
 94- Isolate the source host to prevent further post-compromise behavior.
 95- If the asset is exposed to the internet with RDP or other remote services available, take the necessary measures to restrict access to the asset. If not possible, limit the access via the firewall to only the needed IP addresses. Also, ensure the system uses robust authentication mechanisms and is patched regularly.
 96- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
 97- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 98- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 99- 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).
100"""
101references = [
102    "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4625",
103    "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventid=4624",
104    "https://social.technet.microsoft.com/Forums/ie/en-US/c82ac4f3-a235-472c-9fd3-53aa646cfcfd/network-information-missing-in-event-id-4624?forum=winserversecurity",
105    "https://serverfault.com/questions/379092/remote-desktop-failed-logon-event-4625-not-logging-ip-address-on-2008-terminal-s/403638#403638",
106]
107risk_score = 47
108rule_id = "48b6edfc-079d-4907-b43c-baffa243270d"
109setup = """## Setup
110
111- In some cases the source network address in Windows events 4625/4624 is not populated due to Microsoft logging limitations (examples in the references links). This edge case will break the rule condition and it won't trigger an alert.
112"""
113severity = "medium"
114tags = [
115    "Domain: Endpoint",
116    "OS: Windows",
117    "Use Case: Threat Detection",
118    "Tactic: Credential Access",
119    "Resources: Investigation Guide",
120    "Data Source: System",
121]
122type = "eql"
123
124query = '''
125sequence by winlog.computer_name, source.ip with maxspan=10s
126  [authentication where event.action == "logon-failed" and
127    /* event 4625 need to be logged */
128    winlog.logon.type : "Network" and
129    source.ip != null and source.ip != "127.0.0.1" and source.ip != "::1" and
130    not user.name : ("ANONYMOUS LOGON", "-", "*$") and not user.domain == "NT AUTHORITY" and
131
132    /*
133    noisy failure status codes often associated to authentication misconfiguration :
134     0xC000015B - The user has not been granted the requested logon type (also called the logon right) at this machine.
135     0XC000005E	- There are currently no logon servers available to service the logon request.
136     0XC0000133	- Clocks between DC and other computer too far out of sync.
137     0XC0000192	An attempt was made to logon, but the Netlogon service was not started.
138    */
139    not winlog.event_data.Status : ("0xC000015B", "0XC000005E", "0XC0000133", "0XC0000192")] with runs=10
140'''
141
142
143[[rule.threat]]
144framework = "MITRE ATT&CK"
145[[rule.threat.technique]]
146id = "T1110"
147name = "Brute Force"
148reference = "https://attack.mitre.org/techniques/T1110/"
149[[rule.threat.technique.subtechnique]]
150id = "T1110.001"
151name = "Password Guessing"
152reference = "https://attack.mitre.org/techniques/T1110/001/"
153
154[[rule.threat.technique.subtechnique]]
155id = "T1110.003"
156name = "Password Spraying"
157reference = "https://attack.mitre.org/techniques/T1110/003/"
158
159
160
161[rule.threat.tactic]
162id = "TA0006"
163name = "Credential Access"
164reference = "https://attack.mitre.org/tactics/TA0006/"

Triage and analysis

Investigating Multiple Logon Failure from the same Source Address

Adversaries with no prior knowledge of legitimate credentials within the system or environment may guess passwords to attempt access to accounts. Without knowledge of the password for an account, an adversary may opt to guess the password using a repetitive or iterative mechanism systematically. More details can be found here.

This rule identifies potential password guessing/brute force activity from a single address.

Note: This investigation guide uses the Osquery Markdown Plugin introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.

Possible investigation steps

  • Investigate the logon failure reason code and the targeted user names.
    • Prioritize the investigation if the account is critical or has administrative privileges over the domain.
  • Investigate the source IP address of the failed Network Logon attempts.
    • Identify whether these attempts are coming from the internet or are internal.
  • Investigate other alerts associated with the involved users and source host during the past 48 hours.
  • Identify the source and the target computer and their roles in the IT environment.
  • Check whether the involved credentials are used in automation or scheduled tasks.
  • If this activity is suspicious, contact the account owner and confirm whether they are aware of it.
  • Examine the source host for derived artifacts that indicate compromise:
    • Observe and collect information about the following activities in the alert source host:
      • Attempts to contact external domains and addresses.
        • Examine the DNS cache for suspicious or anomalous entries.
          • $osquery_0
      • Examine the host services for suspicious or anomalous entries.
        • $osquery_1
        • $osquery_2
        • $osquery_3
  • Investigate potentially compromised accounts. Analysts can do this by searching for login events (for example, 4624) to the host which is the source of this activity

False positive analysis

  • Understand the context of the authentications by contacting the asset owners. This activity can be related to a new or existing automation or business process that is in a failing state.
  • Authentication misconfiguration or obsolete credentials.
  • Service account password expired.
  • Domain trust relationship issues.
  • Infrastructure or availability issues.
  • Multiple Logon Failure Followed by Logon Success - 4e85dc8a-3e41-40d8-bc28-91af7ac6cf60

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • Isolate the source host to prevent further post-compromise behavior.
  • If the asset is exposed to the internet with RDP or other remote services available, take the necessary measures to restrict access to the asset. If not possible, limit the access via the firewall to only the needed IP addresses. Also, ensure the system uses robust authentication mechanisms and is patched regularly.
  • Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
  • Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
  • Determine the initial vector abused by the attacker and take action to prevent reinfection through 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).

References

Related rules

to-top