Enumerating Domain Trusts via NLTEST.EXE
Identifies the use of nltest.exe for domain trust discovery purposes. Adversaries may use this command-line utility to enumerate domain trusts and gain insight into trust relationships, as well as the state of Domain Controller (DC) replication in a Microsoft Windows NT Domain.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2022/05/31"
3integration = ["endpoint", "windows", "system", "m365_defender", "crowdstrike"]
4maturity = "production"
5updated_date = "2026/05/04"
6
7[rule]
8author = ["Elastic"]
9description = """
10Identifies the use of nltest.exe for domain trust discovery purposes. Adversaries may use this command-line utility to
11enumerate domain trusts and gain insight into trust relationships, as well as the state of Domain Controller (DC)
12replication in a Microsoft Windows NT Domain.
13"""
14false_positives = [
15 """
16 Domain administrators may use this command-line utility for legitimate information gathering purposes, but it is not
17 common for environments with Windows Server 2012 and newer.
18 """,
19]
20from = "now-9m"
21index = [
22 "endgame-*",
23 "logs-crowdstrike.fdr*",
24 "logs-endpoint.events.process-*",
25 "logs-m365_defender.event-*",
26 "logs-system.security*",
27 "logs-windows.forwarded*",
28 "logs-windows.sysmon_operational-*",
29 "winlogbeat-*",
30]
31language = "eql"
32license = "Elastic License v2"
33name = "Enumerating Domain Trusts via NLTEST.EXE"
34note = """## Triage and analysis
35
36### Investigating Enumerating Domain Trusts via NLTEST.EXE
37
38Active Directory (AD) domain trusts define relationships between domains within a Windows AD environment. In this setup, a "trusting" domain permits users from a "trusted" domain to access resources. These trust relationships can be configurable as one-way, two-way, transitive, or non-transitive, enabling controlled access and resource sharing across domains.
39
40This rule identifies the usage of the `nltest.exe` utility to enumerate domain trusts. Attackers can use this information to enable the next actions in a target environment, such as lateral movement.
41
42#### Possible investigation steps
43
44- 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.
45- Identify the user account that performed the action and whether it should perform this kind of action.
46- Investigate other alerts associated with the user/host during the past 48 hours.
47
48### False positive analysis
49
50- Discovery activities are not inherently malicious if they occur in isolation and are done within the user business context (e.g., an administrator in this context). As long as the analyst did not identify suspicious activity related to the user or host, such alerts can be dismissed.
51
52### Related rules
53
54- Enumerating Domain Trusts via DSQUERY.EXE - 06a7a03c-c735-47a6-a313-51c354aef6c3
55
56### Response and remediation
57
58- Initiate the incident response process based on the outcome of the triage.
59- Isolate the involved hosts to prevent further post-compromise behavior.
60- Restrict PowerShell usage outside of IT and engineering business units using GPOs, AppLocker, Intune, or similar software.
61- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
62- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
63- 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).
64"""
65
66setup = """## Setup
67
68This rule is designed for data generated by [Elastic Defend](https://www.elastic.co/security/endpoint-security), which provides native endpoint detection and response, along with event enrichments designed to work with our detection rules.
69
70Setup instructions: https://ela.st/install-elastic-defend
71
72### Additional data sources
73
74This rule also supports the following third-party data sources. For setup instructions, refer to the links below:
75
76- [CrowdStrike](https://ela.st/crowdstrike-integration)
77- [Microsoft Defender XDR](https://ela.st/m365-defender)
78- [Sysmon Event ID 1 - Process Creation](https://ela.st/sysmon-event-1-setup)
79- [Windows Process Creation Logs](https://ela.st/audit-process-creation)
80"""
81
82references = [
83 "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc731935(v=ws.11)",
84 "https://redcanary.com/blog/how-one-hospital-thwarted-a-ryuk-ransomware-outbreak/",
85]
86risk_score = 21
87rule_id = "84da2554-e12a-11ec-b896-f661ea17fbcd"
88severity = "low"
89tags = [
90 "Domain: Endpoint",
91 "OS: Windows",
92 "Use Case: Threat Detection",
93 "Tactic: Discovery",
94 "Data Source: Elastic Endgame",
95 "Resources: Investigation Guide",
96 "Data Source: Elastic Defend",
97 "Data Source: Windows Security Event Logs",
98 "Data Source: Microsoft Defender XDR",
99 "Data Source: Crowdstrike",
100 "Data Source: Sysmon",
101]
102timestamp_override = "event.ingested"
103type = "eql"
104
105query = '''
106process where host.os.type == "windows" and event.type == "start" and
107 process.name : "nltest.exe" and process.args : (
108 "/DCLIST:*", "/DCNAME:*", "/DSGET*",
109 "/LSAQUERYFTI:*", "/PARENTDOMAIN",
110 "/DOMAIN_TRUSTS", "/BDC_QUERY:*"
111 ) and
112not process.parent.name : "PDQInventoryScanner.exe" and
113not (
114 user.id in ("S-1-5-18", "S-1-5-19", "S-1-5-20") and
115 /* Don't apply the user.id exclusion to Sysmon for compatibility */
116 not data_stream.dataset : ("windows.sysmon_operational", "windows.sysmon")
117)
118'''
119
120
121[[rule.threat]]
122framework = "MITRE ATT&CK"
123[[rule.threat.technique]]
124id = "T1018"
125name = "Remote System Discovery"
126reference = "https://attack.mitre.org/techniques/T1018/"
127
128[[rule.threat.technique]]
129id = "T1482"
130name = "Domain Trust Discovery"
131reference = "https://attack.mitre.org/techniques/T1482/"
132
133
134[rule.threat.tactic]
135id = "TA0007"
136name = "Discovery"
137reference = "https://attack.mitre.org/tactics/TA0007/"
Triage and analysis
Investigating Enumerating Domain Trusts via NLTEST.EXE
Active Directory (AD) domain trusts define relationships between domains within a Windows AD environment. In this setup, a "trusting" domain permits users from a "trusted" domain to access resources. These trust relationships can be configurable as one-way, two-way, transitive, or non-transitive, enabling controlled access and resource sharing across domains.
This rule identifies the usage of the nltest.exe utility to enumerate domain trusts. Attackers can use this information to enable the next actions in a target environment, such as lateral movement.
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.
False positive analysis
- Discovery activities are not inherently malicious if they occur in isolation and are done within the user business context (e.g., an administrator in this context). As long as the analyst did not identify suspicious activity related to the user or host, such alerts can be dismissed.
Related rules
- Enumerating Domain Trusts via DSQUERY.EXE - 06a7a03c-c735-47a6-a313-51c354aef6c3
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.
- Restrict PowerShell usage outside of IT and engineering business units using GPOs, AppLocker, Intune, or similar software.
- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
- 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).
References
Related rules
- Active Directory Discovery using AdExplorer
- AdFind Command Activity
- Enumerating Domain Trusts via DSQUERY.EXE
- Group Policy Discovery via Microsoft GPResult Utility
- Peripheral Device Discovery