Potential DNS Tunneling via NsLookup

This rule identifies a large number (15) of nslookup.exe executions with an explicit query type from the same host. This may indicate command and control activity utilizing the DNS protocol.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2020/11/11"
 3integration = ["endpoint", "windows", "system"]
 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[rule]
10author = ["Elastic"]
11description = """
12This rule identifies a large number (15) of nslookup.exe executions with an explicit query type from the same host. This
13may indicate command and control activity utilizing the DNS protocol.
14"""
15from = "now-9m"
16index = ["winlogbeat-*", "logs-endpoint.events.process-*", "logs-windows.*", "endgame-*", "logs-system.security*"]
17language = "eql"
18license = "Elastic License v2"
19name = "Potential DNS Tunneling via NsLookup"
20note = """## Triage and analysis
21
22### Investigating Potential DNS Tunneling via NsLookup
23
24Attackers can abuse existing network rules that allow DNS communication with external resources to use the protocol as their command and control and/or exfiltration channel.
25
26DNS queries can be used to infiltrate data such as commands to be run, malicious files, etc., and also for exfiltration, since queries can be used to send data to the attacker-controlled DNS server. This process is commonly known as DNS tunneling.
27
28More information on how tunneling works and how it can be abused can be found on [Palo Alto Unit42 Research](https://unit42.paloaltonetworks.com/dns-tunneling-how-dns-can-be-abused-by-malicious-actors).
29
30#### Possible investigation steps
31
32- Investigate the script 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.
33- Investigate other alerts associated with the user/host during the past 48 hours.
34- Inspect the DNS query and identify the information sent.
35- Extract this communication's indicators of compromise (IoCs) and use traffic logs to search for other potentially compromised hosts.
36
37### False positive analysis
38
39- This mechanism can be used legitimately. If the parent process is trusted and the data sent is not sensitive nor command and control related, this alert can be closed.
40
41### Response and remediation
42
43- Initiate the incident response process based on the outcome of the triage.
44- Isolate the involved host to prevent further post-compromise behavior.
45- Immediately block the identified indicators of compromise (IoCs).
46- Implement any temporary network rules, procedures, and segmentation required to contain the attack.
47- 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.
48- Update firewall rules to be more restrictive.
49- Reimage the host operating system or restore the compromised files to clean versions.
50- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
51- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
52- 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).
53"""
54references = ["https://unit42.paloaltonetworks.com/dns-tunneling-in-the-wild-overview-of-oilrigs-dns-tunneling/"]
55risk_score = 47
56rule_id = "3a59fc81-99d3-47ea-8cd6-d48d561fca20"
57severity = "medium"
58tags = [
59    "Domain: Endpoint",
60    "OS: Windows",
61    "Use Case: Threat Detection",
62    "Tactic: Command and Control",
63    "Resources: Investigation Guide",
64    "Data Source: Elastic Endgame",
65    "Data Source: Elastic Defend"
66]
67type = "eql"
68
69query = '''
70sequence by host.id with maxspan=5m
71[process where host.os.type == "windows" and event.type == "start" and
72  process.name : "nslookup.exe" and process.args:("-querytype=*", "-qt=*", "-q=*", "-type=*")] with runs = 10
73'''
74
75
76[[rule.threat]]
77framework = "MITRE ATT&CK"
78[[rule.threat.technique]]
79id = "T1071"
80name = "Application Layer Protocol"
81reference = "https://attack.mitre.org/techniques/T1071/"
82[[rule.threat.technique.subtechnique]]
83id = "T1071.004"
84name = "DNS"
85reference = "https://attack.mitre.org/techniques/T1071/004/"
86
87[[rule.threat.technique]]
88id = "T1572"
89name = "Protocol Tunneling"
90reference = "https://attack.mitre.org/techniques/T1572/"
91
92[rule.threat.tactic]
93id = "TA0011"
94name = "Command and Control"
95reference = "https://attack.mitre.org/tactics/TA0011/"

Triage and analysis

Investigating Potential DNS Tunneling via NsLookup

Attackers can abuse existing network rules that allow DNS communication with external resources to use the protocol as their command and control and/or exfiltration channel.

DNS queries can be used to infiltrate data such as commands to be run, malicious files, etc., and also for exfiltration, since queries can be used to send data to the attacker-controlled DNS server. This process is commonly known as DNS tunneling.

More information on how tunneling works and how it can be abused can be found on Palo Alto Unit42 Research.

Possible investigation steps

  • Investigate the script 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.
  • Inspect the DNS query and identify the information sent.
  • Extract this communication's indicators of compromise (IoCs) and use traffic logs to search for other potentially compromised hosts.

False positive analysis

  • This mechanism can be used legitimately. If the parent process is trusted and the data sent is not sensitive nor command and control related, this alert can be closed.

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • Isolate the involved host to prevent further post-compromise behavior.
  • Immediately block the identified indicators of compromise (IoCs).
  • Implement any temporary network rules, procedures, and segmentation required to contain the attack.
  • 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.
  • Update firewall rules to be more restrictive.
  • 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 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).

References

Related rules

to-top