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", "system", "m365_defender", "sentinel_one_cloud_funnel", "crowdstrike"]
4maturity = "production"
5updated_date = "2024/11/02"
6min_stack_version = "8.14.0"
7min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
8
9[rule]
10author = ["Elastic"]
11description = """
12Detects the usage of gpresult.exe to query group policy objects. Attackers may query group policy objects during the
13reconnaissance phase after compromising a system to gain a better understanding of the active directory environment and
14possible methods to escalate privileges or move laterally.
15"""
16from = "now-9m"
17index = [
18 "winlogbeat-*",
19 "logs-endpoint.events.process-*",
20 "logs-windows.forwarded*",
21 "logs-windows.sysmon_operational-*",
22 "endgame-*",
23 "logs-system.security*",
24 "logs-m365_defender.event-*",
25 "logs-sentinel_one_cloud_funnel.*",
26 "logs-crowdstrike.fdr*",
27]
28language = "eql"
29license = "Elastic License v2"
30name = "Group Policy Discovery via Microsoft GPResult Utility"
31note = """## Triage and analysis
32
33### Investigating Group Policy Discovery via Microsoft GPResult Utility
34
35Group 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.
36
37The 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.
38
39#### Possible investigation steps
40
41- Review the alert details to understand the context of the gpresult.exe usage, such as the user account, system, and time of execution.
42- Identify the user account that performed the action and whether it should perform this kind of action.
43- 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.
44- Investigate other alerts associated with the user/host during the past 48 hours.
45- Investigate any abnormal account behavior, such as command executions, file creations or modifications, and network connections.
46- Inspect the host for suspicious or abnormal behavior in the alert timeframe.
47- Validate the activity is not related to planned patches, updates, network administrator activity, or legitimate software installations.
48- Investigate any abnormal behavior by the parent process, such as network connections, registry or file modifications, and any other spawned child processes.
49
50### False positive analysis
51
52- 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.
53
54### Response and remediation
55
56- Initiate the incident response process based on the outcome of the triage.
57- Isolate the involved hosts to prevent further post-compromise behavior.
58- 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.
59- Reimage the host operating system or restore the compromised files to clean versions.
60- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
61- Determine the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
62- 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).
63"""
64risk_score = 21
65rule_id = "94a401ba-4fa2-455c-b7ae-b6e037afc0b7"
66severity = "low"
67tags = [
68 "Domain: Endpoint",
69 "OS: Windows",
70 "Use Case: Threat Detection",
71 "Tactic: Discovery",
72 "Data Source: Elastic Endgame",
73 "Data Source: Elastic Defend",
74 "Data Source: System",
75 "Data Source: Microsoft Defender for Endpoint",
76 "Data Source: Sysmon",
77 "Data Source: SentinelOne",
78 "Data Source: Crowdstrike",
79]
80timestamp_override = "event.ingested"
81type = "eql"
82
83query = '''
84process where host.os.type == "windows" and event.type == "start" and
85(process.name: "gpresult.exe" or ?process.pe.original_file_name == "gprslt.exe") and process.args: ("/z", "/v", "/r", "/x")
86'''
87
88
89[[rule.threat]]
90framework = "MITRE ATT&CK"
91[[rule.threat.technique]]
92id = "T1615"
93name = "Group Policy Discovery"
94reference = "https://attack.mitre.org/techniques/T1615/"
95
96
97[rule.threat.tactic]
98id = "TA0007"
99name = "Discovery"
100reference = "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
- Enumerating Domain Trusts via DSQUERY.EXE
- Peripheral Device Discovery
- Deleting Backup Catalogs with Wbadmin
- Execution of COM object via Xwizard
- Execution via MSSQL xp_cmdshell Stored Procedure