Enumeration of Administrator Accounts
Identifies instances of lower privilege accounts enumerating Administrator accounts or groups using built-in Windows tools.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2020/12/04"
3integration = ["endpoint", "windows", "system", "m365_defender", "crowdstrike"]
4maturity = "production"
5updated_date = "2025/03/20"
6
7[rule]
8author = ["Elastic"]
9description = """
10Identifies instances of lower privilege accounts enumerating Administrator accounts or groups using built-in Windows
11tools.
12"""
13from = "now-9m"
14index = [
15 "endgame-*",
16 "logs-crowdstrike.fdr*",
17 "logs-endpoint.events.process-*",
18 "logs-m365_defender.event-*",
19 "logs-system.security*",
20 "logs-windows.forwarded*",
21 "winlogbeat-*",
22]
23language = "eql"
24license = "Elastic License v2"
25name = "Enumeration of Administrator Accounts"
26note = """## Triage and analysis
27
28### Investigating Enumeration of Administrator Accounts
29
30After successfully compromising an environment, attackers may try to gain situational awareness to plan their next steps. This can happen by running commands to enumerate network resources, users, connections, files, and installed security software.
31
32This rule looks for the execution of the `net` and `wmic` utilities to enumerate administrator-related users or groups in the domain and local machine scope. Attackers can use this information to plan their next steps of the attack, such as mapping targets for credential compromise and other post-exploitation activities.
33
34#### Possible investigation steps
35
36- Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
37- Identify the user account that performed the action and whether it should perform this kind of action.
38- Investigate other alerts associated with the user/host during the past 48 hours.
39- Investigate any abnormal account behavior, such as command executions, file creations or modifications, and network connections.
40
41### False positive analysis
42
43- Discovery activities are not inherently malicious if they occur in isolation. As long as the analyst did not identify suspicious activity related to the user or host, such alerts can be dismissed.
44
45### Related rules
46
47- AdFind Command Activity - eda499b8-a073-4e35-9733-22ec71f57f3a
48
49### Response and remediation
50
51- Initiate the incident response process based on the outcome of the triage.
52- Isolate the involved hosts to prevent further post-compromise behavior.
53- 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.
54- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
55- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
56- 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).
57"""
58risk_score = 21
59rule_id = "871ea072-1b71-4def-b016-6278b505138d"
60severity = "low"
61tags = [
62 "Domain: Endpoint",
63 "OS: Windows",
64 "Use Case: Threat Detection",
65 "Tactic: Discovery",
66 "Resources: Investigation Guide",
67 "Data Source: Elastic Endgame",
68 "Data Source: Elastic Defend",
69 "Data Source: Windows Security Event Logs",
70 "Data Source: Microsoft Defender for Endpoint",
71 "Data Source: Crowdstrike",
72]
73timestamp_override = "event.ingested"
74type = "eql"
75
76query = '''
77process where host.os.type == "windows" and event.type == "start" and
78(
79 (
80 (
81 (process.name : "net.exe" or ?process.pe.original_file_name == "net.exe") or
82 ((process.name : "net1.exe" or ?process.pe.original_file_name == "net1.exe") and not process.parent.name : "net.exe")
83 ) and
84 process.args : ("group", "user", "localgroup") and
85 process.args : ("*admin*", "Domain Admins", "Remote Desktop Users", "Enterprise Admins", "Organization Management")
86 and not process.args : ("/add", "/delete")
87 ) or
88 (
89 (process.name : "wmic.exe" or ?process.pe.original_file_name == "wmic.exe") and
90 process.args : ("group", "useraccount")
91 )
92) and not user.id : ("S-1-5-18", "S-1-5-19", "S-1-5-20")
93'''
94
95
96[[rule.threat]]
97framework = "MITRE ATT&CK"
98[[rule.threat.technique]]
99id = "T1069"
100name = "Permission Groups Discovery"
101reference = "https://attack.mitre.org/techniques/T1069/"
102[[rule.threat.technique.subtechnique]]
103id = "T1069.001"
104name = "Local Groups"
105reference = "https://attack.mitre.org/techniques/T1069/001/"
106
107[[rule.threat.technique.subtechnique]]
108id = "T1069.002"
109name = "Domain Groups"
110reference = "https://attack.mitre.org/techniques/T1069/002/"
111
112
113[[rule.threat.technique]]
114id = "T1087"
115name = "Account Discovery"
116reference = "https://attack.mitre.org/techniques/T1087/"
117[[rule.threat.technique.subtechnique]]
118id = "T1087.001"
119name = "Local Account"
120reference = "https://attack.mitre.org/techniques/T1087/001/"
121
122[[rule.threat.technique.subtechnique]]
123id = "T1087.002"
124name = "Domain Account"
125reference = "https://attack.mitre.org/techniques/T1087/002/"
126
127
128
129[rule.threat.tactic]
130id = "TA0007"
131name = "Discovery"
132reference = "https://attack.mitre.org/tactics/TA0007/"
toml
Triage and analysis
Investigating Enumeration of Administrator Accounts
After successfully compromising an environment, attackers may try to gain situational awareness to plan their next steps. This can happen by running commands to enumerate network resources, users, connections, files, and installed security software.
This rule looks for the execution of the net
and wmic
utilities to enumerate administrator-related users or groups in the domain and local machine scope. Attackers can use this information to plan their next steps of the attack, such as mapping targets for credential compromise and other post-exploitation activities.
Possible investigation steps
- Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
- Identify the user account that performed the action and whether it should perform this kind of action.
- Investigate other alerts associated with the user/host during the past 48 hours.
- Investigate any abnormal account behavior, such as command executions, file creations or modifications, and network connections.
False positive analysis
- Discovery activities are not inherently malicious if they occur in isolation. As long as the analyst did not identify suspicious activity related to the user or host, such alerts can be dismissed.
Related rules
- AdFind Command Activity - eda499b8-a073-4e35-9733-22ec71f57f3a
Response and remediation
- Initiate the incident response process based on the outcome of the triage.
- Isolate the involved hosts to prevent further post-compromise behavior.
- 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).
Related rules
- AdFind Command Activity
- Enumerating Domain Trusts via DSQUERY.EXE
- Enumerating Domain Trusts via NLTEST.EXE
- Group Policy Discovery via Microsoft GPResult Utility
- Peripheral Device Discovery