Group Policy Discovery via Microsoft GPResult Utility

Detects the usage of gpresult.exe to query group policy objects. Attackers may query group policy objects during the reconnaissance phase after compromising a system to gain a better understanding of the active directory environment and possible methods to escalate privileges or move laterally.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2023/01/18"
 3integration = ["windows", "endpoint"]
 4maturity = "production"
 5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
 6min_stack_version = "8.3.0"
 7updated_date = "2024/03/28"
 8
 9
10[rule]
11author = ["Elastic"]
12description = """
13Detects the usage of gpresult.exe to query group policy objects. Attackers may query group policy 
14objects during the reconnaissance phase after compromising a system to gain a better understanding 
15of the active directory environment and possible methods to escalate privileges or move laterally. 
16"""
17from = "now-9m"
18index = ["winlogbeat-*", "logs-endpoint.events.process-*", "logs-windows.*", "endgame-*", "logs-system.security*"]
19language = "eql"
20license = "Elastic License v2"
21name = "Group Policy Discovery via Microsoft GPResult Utility"
22note = """## Triage and analysis
23
24### Investigating Group Policy Discovery via Microsoft GPResult Utility
25
26Group Policy is a Windows feature that allows administrators to manage and configure settings for users and computers in an Active Directory environment. The Microsoft GPResult utility (gpresult.exe) is a command-line tool used to query and display Group Policy Objects (GPOs) applied to a system. Attackers may abuse this utility to gain insights into the active directory environment and identify potential privilege escalation or lateral movement opportunities.
27
28The detection rule 'Group Policy Discovery via Microsoft GPResult Utility' is designed to identify the usage of gpresult.exe with specific arguments ("/z", "/v", "/r", "/x") that are commonly used by adversaries during the reconnaissance phase to perform group policy discovery.
29
30#### Possible investigation steps
31
32- Review the alert details to understand the context of the gpresult.exe usage, such as the user account, system, and time of execution.
33- Identify the user account that performed the action and whether it should perform this kind of action.
34- 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.
35- Investigate other alerts associated with the user/host during the past 48 hours.
36- Investigate any abnormal account behavior, such as command executions, file creations or modifications, and network connections.
37- Inspect the host for suspicious or abnormal behavior in the alert timeframe.
38- Validate the activity is not related to planned patches, updates, network administrator activity, or legitimate software installations.
39- Investigate any abnormal behavior by the parent process, such as network connections, registry or file modifications, and any other spawned child processes.
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### Response and remediation
46
47- Initiate the incident response process based on the outcome of the triage.
48- Isolate the involved hosts to prevent further post-compromise behavior.
49- 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.
50- Reimage the host operating system or restore the compromised files to clean versions.
51- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
52- Determine the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
53- 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).
54"""
55risk_score = 21
56rule_id = "94a401ba-4fa2-455c-b7ae-b6e037afc0b7"
57severity = "low"
58tags = ["Domain: Endpoint", "OS: Windows", "Use Case: Threat Detection", "Tactic: Discovery", "Data Source: Elastic Endgame", "Data Source: Elastic Defend"]
59timestamp_override = "event.ingested"
60type = "eql"
61
62query = '''
63process where host.os.type == "windows" and event.type == "start" and
64(process.name: "gpresult.exe" or ?process.pe.original_file_name == "gprslt.exe") and process.args: ("/z", "/v", "/r", "/x")
65'''
66
67[[rule.threat]]
68framework = "MITRE ATT&CK"
69[[rule.threat.technique]]
70id = "T1615"
71name = "Group Policy Discovery"
72reference = "https://attack.mitre.org/techniques/T1615/"
73
74[rule.threat.tactic]
75id = "TA0007"
76name = "Discovery"
77reference = "https://attack.mitre.org/tactics/TA0007/"

Triage and analysis

Investigating Group Policy Discovery via Microsoft GPResult Utility

Group Policy is a Windows feature that allows administrators to manage and configure settings for users and computers in an Active Directory environment. The Microsoft GPResult utility (gpresult.exe) is a command-line tool used to query and display Group Policy Objects (GPOs) applied to a system. Attackers may abuse this utility to gain insights into the active directory environment and identify potential privilege escalation or lateral movement opportunities.

The detection rule 'Group Policy Discovery via Microsoft GPResult Utility' is designed to identify the usage of gpresult.exe with specific arguments ("/z", "/v", "/r", "/x") that are commonly used by adversaries during the reconnaissance phase to perform group policy discovery.

Possible investigation steps

  • Review the alert details to understand the context of the gpresult.exe usage, such as the user account, system, and time of execution.
  • Identify the user account that performed the action and whether it should perform this kind of action.
  • 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.
  • Inspect the host for suspicious or abnormal behavior in the alert timeframe.
  • Validate the activity is not related to planned patches, updates, network administrator activity, or legitimate software installations.
  • Investigate any abnormal behavior by the parent process, such as network connections, registry or file modifications, and any other spawned child processes.

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.

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.
  • Reimage the host operating system or restore the compromised files to clean versions.
  • 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 via 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