Multiple Logon Failure Followed by Logon Success
Identifies multiple logon failures followed by a successful one from the same source address. 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 = "2025/03/20"
6
7[transform]
8[[transform.osquery]]
9label = "Osquery - Retrieve DNS Cache"
10query = "SELECT * FROM dns_cache"
11
12[[transform.osquery]]
13label = "Osquery - Retrieve All Services"
14query = "SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services"
15
16[[transform.osquery]]
17label = "Osquery - Retrieve Services Running on User Accounts"
18query = """
19SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services WHERE
20NOT (user_account LIKE '%LocalSystem' OR user_account LIKE '%LocalService' OR user_account LIKE '%NetworkService' OR
21user_account == null)
22"""
23
24[[transform.osquery]]
25label = "Osquery - Retrieve Service Unsigned Executables with Virustotal Link"
26query = """
27SELECT concat('https://www.virustotal.com/gui/file/', sha1) AS VtLink, name, description, start_type, status, pid,
28services.path FROM services JOIN authenticode ON services.path = authenticode.path OR services.module_path =
29authenticode.path JOIN hash ON services.path = hash.path WHERE authenticode.result != 'trusted'
30"""
31
32
33[rule]
34author = ["Elastic"]
35description = """
36Identifies multiple logon failures followed by a successful one from the same source address. Adversaries will often
37brute force login attempts across multiple users with a common or known password, in an attempt to gain access to
38accounts.
39"""
40from = "now-9m"
41index = ["logs-system.security*", "logs-windows.forwarded*", "winlogbeat-*"]
42language = "eql"
43license = "Elastic License v2"
44name = "Multiple Logon Failure Followed by Logon Success"
45note = """## Triage and analysis
46
47### Investigating Multiple Logon Failure Followed by Logon Success
48
49Adversaries 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/).
50
51This rule identifies potential password guessing/brute force activity from a single address, followed by a successful logon, indicating that an attacker potentially successfully compromised the account.
52
53> **Note**:
54> This investigation guide uses the [Osquery Markdown Plugin](https://www.elastic.co/guide/en/security/current/invest-guide-run-osquery.html) introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.
55
56#### Possible investigation steps
57
58- Investigate the logon failure reason code and the targeted user name.
59 - Prioritize the investigation if the account is critical or has administrative privileges over the domain.
60- Investigate the source IP address of the failed Network Logon attempts.
61 - Identify whether these attempts are coming from the internet or are internal.
62- Investigate other alerts associated with the involved users and source host during the past 48 hours.
63- Identify the source and the target computer and their roles in the IT environment.
64- Check whether the involved credentials are used in automation or scheduled tasks.
65- If this activity is suspicious, contact the account owner and confirm whether they are aware of it.
66- Examine the source host for derived artifacts that indicate compromise:
67 - Observe and collect information about the following activities in the alert source host:
68 - Attempts to contact external domains and addresses.
69 - Examine the DNS cache for suspicious or anomalous entries.
70 - $osquery_0
71 - Examine the host services for suspicious or anomalous entries.
72 - $osquery_1
73 - $osquery_2
74 - $osquery_3
75- 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.
76
77### False positive analysis
78
79- Authentication misconfiguration or obsolete credentials.
80- Service account password expired.
81- Domain trust relationship issues.
82- Infrastructure or availability issues.
83
84### Related rules
85
86- Multiple Logon Failure from the same Source Address - 48b6edfc-079d-4907-b43c-baffa243270d
87
88### Response and remediation
89
90- Initiate the incident response process based on the outcome of the triage.
91- Isolate the source host to prevent further post-compromise behavior.
92- 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.
93- 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.
94- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
95- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
96- 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).
97"""
98references = ["https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4625"]
99risk_score = 47
100rule_id = "4e85dc8a-3e41-40d8-bc28-91af7ac6cf60"
101severity = "medium"
102tags = [
103 "Domain: Endpoint",
104 "OS: Windows",
105 "Use Case: Threat Detection",
106 "Tactic: Credential Access",
107 "Resources: Investigation Guide",
108 "Data Source: Windows Security Event Logs",
109]
110type = "eql"
111
112query = '''
113sequence by winlog.computer_name, source.ip with maxspan=5s
114 [authentication where event.action == "logon-failed" and
115 /* event 4625 need to be logged */
116 winlog.logon.type : "Network" and user.id != null and
117 source.ip != null and source.ip != "127.0.0.1" and source.ip != "::1" and
118 not winlog.event_data.TargetUserSid : "S-1-0-0" and not user.id : "S-1-0-0" and
119 not user.name : ("ANONYMOUS LOGON", "-", "*$") and not user.domain == "NT AUTHORITY" and
120
121 /* noisy failure status codes often associated to authentication misconfiguration */
122 not winlog.event_data.Status : ("0xC000015B", "0XC000005E", "0XC0000133", "0XC0000192")] with runs=5
123 [authentication where event.action == "logged-in" and
124 /* event 4624 need to be logged */
125 winlog.logon.type : "Network" and
126 source.ip != null and source.ip != "127.0.0.1" and source.ip != "::1" and
127 not user.name : ("ANONYMOUS LOGON", "-", "*$") and not user.domain == "NT AUTHORITY"]
128'''
129
130
131[[rule.threat]]
132framework = "MITRE ATT&CK"
133[[rule.threat.technique]]
134id = "T1110"
135name = "Brute Force"
136reference = "https://attack.mitre.org/techniques/T1110/"
137[[rule.threat.technique.subtechnique]]
138id = "T1110.001"
139name = "Password Guessing"
140reference = "https://attack.mitre.org/techniques/T1110/001/"
141
142[[rule.threat.technique.subtechnique]]
143id = "T1110.003"
144name = "Password Spraying"
145reference = "https://attack.mitre.org/techniques/T1110/003/"
146
147
148
149[rule.threat.tactic]
150id = "TA0006"
151name = "Credential Access"
152reference = "https://attack.mitre.org/tactics/TA0006/"
Triage and analysis
Investigating Multiple Logon Failure Followed by Logon Success
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, followed by a successful logon, indicating that an attacker potentially successfully compromised the account.
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 name.
- 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 DNS cache for suspicious or anomalous entries.
- Examine the host services for suspicious or anomalous entries.
- $osquery_1
- $osquery_2
- $osquery_3
- Attempts to contact external domains and addresses.
- Observe and collect information about the following activities in the alert source host:
- 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
- Authentication misconfiguration or obsolete credentials.
- Service account password expired.
- Domain trust relationship issues.
- Infrastructure or availability issues.
Related rules
- Multiple Logon Failure from the same Source Address - 48b6edfc-079d-4907-b43c-baffa243270d
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
- Access to a Sensitive LDAP Attribute
- Creation of a DNS-Named Record
- Credential Acquisition via Registry Hive Dumping
- FirstTime Seen Account Performing DCSync
- Kerberos Pre-authentication Disabled for User