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 = "KQL handles backslash and ? characters differently in 8.12+."
 6min_stack_version = "8.12.0"
 7updated_date = "2024/03/12"
 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 = ["Domain: Endpoint",
 12        "OS: Windows",
 13        "Use Case: Threat Detection",
 14        "Tactic: Discovery",
 15        "Resources: Investigation Guide"
 16        ]
 17timestamp_override = "event.ingested"
 18type = "new_terms"
 19
 20query = '''
 21host.os.type:windows and event.category:iam and event.action:user-member-enumerated and 
 22  (
 23    group.name:(*Admin* or "RemoteDesktopUsers") or
 24    winlog.event_data.TargetSid:("S-1-5-32-544" or "S-1-5-32-555")
 25  ) and 
 26  not (
 27    winlog.event_data.SubjectUserName: *$ or
 28    winlog.event_data.SubjectUserSid: ("S-1-5-19" or "S-1-5-20") or 
 29    winlog.event_data.CallerProcessName:("-" or 
 30                                       C\:\\Windows\\System32\\VSSVC.exe or 
 31                                       C\:\\Windows\\System32\\SearchIndexer.exe or 
 32                                       C\:\\Windows\\System32\\CompatTelRunner.exe or 
 33                                       C\:\\Windows\\System32\\oobe\\msoobe.exe or
 34                                       C\:\\Windows\\System32\\net1.exe or 
 35                                       C\:\\Windows\\System32\\svchost.exe or 
 36                                       C\:\\Windows\\System32\\Netplwiz.exe or 
 37                                       C\:\\Windows\\System32\\msiexec.exe or
 38                                       C\:\\Windows\\System32\\CloudExperienceHostBroker.exe or
 39                                       C\:\\Windows\\System32\\RuntimeBroker.exe or
 40                                       C\:\\Windows\\System32\\wbem\\WmiPrvSE.exe or
 41                                       C\:\\Windows\\System32\\SrTasks.exe or
 42                                       C\:\\Windows\\System32\\diskshadow.exe or
 43                                       C\:\\Windows\\System32\\dfsrs.exe or
 44                                       C\:\\Windows\\System32\\vssadmin.exe or
 45                                       C\:\\Windows\\System32\\dllhost.exe or
 46                                       C\:\\Windows\\System32\\mmc.exe or
 47                                       C\:\\Windows\\System32\\SettingSyncHost.exe or
 48                                       C\:\\Windows\\System32\\inetsrv\\w3wp.exe or
 49                                       C\:\\Windows\\System32\\wsmprovhost.exe or
 50                                       C\:\\Windows\\System32\\mstsc.exe or
 51                                       C\:\\Windows\\System32\\esentutl.exe or
 52                                       C\:\\Windows\\System32\\RecoveryDrive.exe or
 53                                       C\:\\Windows\\System32\\SystemPropertiesComputerName.exe or
 54                                       C\:\\Windows\\SysWOW64\\msiexec.exe or
 55                                       C\:\\Windows\\ImmersiveControlPanel\\SystemSettings.exe or
 56                                       C\:\\Windows\\Temp\\rubrik_vmware*\\snaptool.exe or
 57                                       C\:\\Windows\\VeeamVssSupport\\VeeamGuestHelper.exe or
 58                                       C\:\\WindowsAzure\\*WaAppAgent.exe or
 59                                       C\:\\$WINDOWS.~BT\\Sources\\*.exe
 60                                      )
 61  )
 62'''
 63
 64[[rule.filters]]
 65[rule.filters.meta]
 66negate = true
 67[rule.filters.query.wildcard."winlog.event_data.CallerProcessName"]
 68"case_insensitive" = true
 69"value" = "C:\\\\Program Files (x86)\\\\*.exe"
 70
 71[[rule.filters]]
 72[rule.filters.meta]
 73negate = true
 74[rule.filters.query.wildcard."winlog.event_data.CallerProcessName"]
 75"case_insensitive" = true
 76"value" = "C:\\\\Program Files\\\\*.exe"
 77
 78[[rule.threat]]
 79framework = "MITRE ATT&CK"
 80
 81[[rule.threat.technique]]
 82id = "T1069"
 83name = "Permission Groups Discovery"
 84reference = "https://attack.mitre.org/techniques/T1069/"
 85
 86[[rule.threat.technique.subtechnique]]
 87id = "T1069.001"
 88name = "Local Groups"
 89reference = "https://attack.mitre.org/techniques/T1069/001/"
 90
 91[rule.threat.tactic]
 92id = "TA0007"
 93name = "Discovery"
 94reference = "https://attack.mitre.org/tactics/TA0007/"
 95
 96[rule.new_terms]
 97field = "new_terms_fields"
 98value = ["host.id", "winlog.event_data.SubjectUserName", "winlog.event_data.CallerProcessName"]
 99
100[[rule.new_terms.history_window_start]]
101field = "history_window_start"
102value = "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 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
    • 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

to-top