Enumeration of Privileged Local Groups Membership
Identifies instances of an unusual process enumerating built-in Windows privileged local groups membership like Administrators or Remote Desktop users.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2020/10/15"
3integration = ["system", "windows"]
4maturity = "production"
5min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
6min_stack_version = "8.14.0"
7updated_date = "2024/10/28"
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[rule]
35author = ["Elastic"]
36description = """
37Identifies instances of an unusual process enumerating built-in Windows privileged local groups membership like
38Administrators or Remote Desktop users.
39"""
40from = "now-9m"
41index = ["winlogbeat-*", "logs-system.*", "logs-windows.*"]
42language = "kuery"
43license = "Elastic License v2"
44name = "Enumeration of Privileged Local Groups Membership"
45note = """## Triage and analysis
46
47### Investigating Enumeration of Privileged Local Groups Membership
48
49After 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.
50
51This rule looks for the enumeration of privileged local groups' membership by suspicious processes, and excludes known legitimate utilities and programs installed. Attackers can use this information to decide the next steps of the attack, such as mapping targets for credential compromise and other post-exploitation activities.
52
53> **Note**:
54> 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.
55
56#### Possible investigation steps
57
58- Identify the process, host and user involved on the event.
59- 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.
60- Investigate other alerts associated with the user/host during the past 48 hours.
61- Investigate any abnormal account behavior, such as command executions, file creations or modifications, and network connections.
62- Examine the host for derived artifacts that indicate suspicious activities:
63 - Analyze the process executable using a private sandboxed analysis system.
64 - Observe and collect information about the following activities in both the sandbox and the alert subject host:
65 - Attempts to contact external domains and addresses.
66 - Use the Elastic Defend network events to determine domains and addresses contacted by the subject process by filtering by the process' `process.entity_id`.
67 - Examine the DNS cache for suspicious or anomalous entries.
68 - $osquery_0
69 - Use the Elastic Defend registry events to examine registry keys accessed, modified, or created by the related processes in the process tree.
70 - Examine the host services for suspicious or anomalous entries.
71 - $osquery_1
72 - $osquery_2
73 - $osquery_3
74 - Retrieve the files' SHA-256 hash values using the PowerShell `Get-FileHash` cmdlet and search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
75- Investigate potentially compromised accounts. Analysts can do this by searching for login events (for example, 4624) to the target host after the registry modification.
76
77### False positive analysis
78
79- 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.
80- If this rule is noisy in your environment due to expected activity, consider adding exceptions — preferably with a combination of user and command line conditions.
81
82### Response and remediation
83
84- Initiate the incident response process based on the outcome of the triage.
85- Isolate the involved hosts to prevent further post-compromise behavior.
86- 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.
87- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
88- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
89- 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).
90"""
91risk_score = 47
92rule_id = "291a0de9-937a-4189-94c0-3e847c8b13e4"
93setup = """## Setup
94
95The 'Audit Security Group Management' audit policy must be configured (Success).
96Steps to implement the logging policy with Advanced Audit Configuration:
Computer Configuration > Policies > Windows Settings > Security Settings > Advanced Audit Policies Configuration > Audit Policies > Account Management > Audit Security Group Management (Success)
1
2Microsoft introduced the [event used](https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4799) in this detection rule on Windows 10 and Windows Server 2016 or later operating systems.
3
4If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2,
5events will not define `event.ingested` and default fallback for EQL rules was not added until version 8.2.
6Hence for this rule to work effectively, users will need to add a custom ingest pipeline to populate
7`event.ingested` to @timestamp.
8For more details on adding a custom ingest pipeline refer - https://www.elastic.co/guide/en/fleet/current/data-streams-pipeline-tutorial.html
9"""
10severity = "medium"
11tags = [
12 "Domain: Endpoint",
13 "OS: Windows",
14 "Use Case: Threat Detection",
15 "Tactic: Discovery",
16 "Resources: Investigation Guide",
17 "Data Source: System",
18]
19timestamp_override = "event.ingested"
20type = "new_terms"
21
22query = '''
23host.os.type:windows and event.category:iam and event.action:user-member-enumerated and
24 (
25 group.name:(*Admin* or "RemoteDesktopUsers") or
26 winlog.event_data.TargetSid:("S-1-5-32-544" or "S-1-5-32-555")
27 ) and
28 not (
29 winlog.event_data.SubjectUserName: *$ or
30 winlog.event_data.SubjectUserSid: ("S-1-5-19" or "S-1-5-20") or
31 winlog.event_data.CallerProcessName:("-" or
32 C\:\\Windows\\System32\\VSSVC.exe or
33 C\:\\Windows\\System32\\SearchIndexer.exe or
34 C\:\\Windows\\System32\\CompatTelRunner.exe or
35 C\:\\Windows\\System32\\oobe\\msoobe.exe or
36 C\:\\Windows\\System32\\net1.exe or
37 C\:\\Windows\\System32\\svchost.exe or
38 C\:\\Windows\\System32\\Netplwiz.exe or
39 C\:\\Windows\\System32\\msiexec.exe or
40 C\:\\Windows\\System32\\CloudExperienceHostBroker.exe or
41 C\:\\Windows\\System32\\RuntimeBroker.exe or
42 C\:\\Windows\\System32\\wbem\\WmiPrvSE.exe or
43 C\:\\Windows\\System32\\SrTasks.exe or
44 C\:\\Windows\\System32\\diskshadow.exe or
45 C\:\\Windows\\System32\\dfsrs.exe or
46 C\:\\Windows\\System32\\vssadmin.exe or
47 C\:\\Windows\\System32\\dllhost.exe or
48 C\:\\Windows\\System32\\mmc.exe or
49 C\:\\Windows\\System32\\SettingSyncHost.exe or
50 C\:\\Windows\\System32\\inetsrv\\w3wp.exe or
51 C\:\\Windows\\System32\\wsmprovhost.exe or
52 C\:\\Windows\\System32\\mstsc.exe or
53 C\:\\Windows\\System32\\esentutl.exe or
54 C\:\\Windows\\System32\\RecoveryDrive.exe or
55 C\:\\Windows\\System32\\SystemPropertiesComputerName.exe or
56 C\:\\Windows\\SysWOW64\\msiexec.exe or
57 C\:\\Windows\\System32\\taskhostw.exe or
58 C\:\\Windows\\ImmersiveControlPanel\\SystemSettings.exe or
59 C\:\\Windows\\Temp\\rubrik_vmware*\\snaptool.exe or
60 C\:\\Windows\\VeeamVssSupport\\VeeamGuestHelper.exe or
61 C\:\\WindowsAzure\\*WaAppAgent.exe or
62 C\:\\$WINDOWS.~BT\\Sources\\*.exe
63 )
64 )
65'''
66
67[[rule.filters]]
68[rule.filters.meta]
69negate = true
70[rule.filters.query.wildcard."winlog.event_data.CallerProcessName"]
71"case_insensitive" = true
72"value" = "C:\\\\Program Files (x86)\\\\*.exe"
73
74[[rule.filters]]
75[rule.filters.meta]
76negate = true
77[rule.filters.query.wildcard."winlog.event_data.CallerProcessName"]
78"case_insensitive" = true
79"value" = "C:\\\\Program Files\\\\*.exe"
80
81[[rule.threat]]
82framework = "MITRE ATT&CK"
83
84[[rule.threat.technique]]
85id = "T1069"
86name = "Permission Groups Discovery"
87reference = "https://attack.mitre.org/techniques/T1069/"
88
89[[rule.threat.technique.subtechnique]]
90id = "T1069.001"
91name = "Local Groups"
92reference = "https://attack.mitre.org/techniques/T1069/001/"
93
94[rule.threat.tactic]
95id = "TA0007"
96name = "Discovery"
97reference = "https://attack.mitre.org/tactics/TA0007/"
98
99[rule.new_terms]
100field = "new_terms_fields"
101value = ["host.id", "winlog.event_data.SubjectUserName", "winlog.event_data.CallerProcessName"]
102
103[[rule.new_terms.history_window_start]]
104field = "history_window_start"
105value = "now-14d"
Triage and analysis
Investigating Enumeration of Privileged Local Groups Membership
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 enumeration of privileged local groups' membership by suspicious processes, and excludes known legitimate utilities and programs installed. Attackers can use this information to decide the next steps of the attack, such as mapping targets for credential compromise and other post-exploitation activities.
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
- Identify the process, host and user involved on the event.
- 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.
- 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.
- Examine the host for derived artifacts that indicate suspicious activities:
- Analyze the process executable using a private sandboxed analysis system.
- Observe and collect information about the following activities in both the sandbox and the alert subject host:
- Attempts to contact external domains and addresses.
- Use the Elastic Defend network events to determine domains and addresses contacted by the subject process by filtering by the process'
process.entity_id
. - Examine the DNS cache for suspicious or anomalous entries.
- $osquery_0
- Use the Elastic Defend network events to determine domains and addresses contacted by the subject process by filtering by the process'
- Use the Elastic Defend registry events to examine registry keys accessed, modified, or created by the related processes in the process tree.
- Examine the host services for suspicious or anomalous entries.
- $osquery_1
- $osquery_2
- $osquery_3
- Attempts to contact external domains and addresses.
- Retrieve the files' SHA-256 hash values using the PowerShell
Get-FileHash
cmdlet and search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
- Investigate potentially compromised accounts. Analysts can do this by searching for login events (for example, 4624) to the target host after the registry modification.
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.
- If this rule is noisy in your environment due to expected activity, consider adding exceptions — preferably with a combination of user and command line conditions.
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
- Whoami Process Activity
- Account Configured with Never-Expiring Password
- First Time Seen Commonly Abused Remote Access Tool Execution
- FirstTime Seen Account Performing DCSync
- High Number of Process and/or Service Terminations