-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from tsg/feature/udp-dns-plugin
Add integration tests for the DNS protocol.
- Loading branch information
Showing
10 changed files
with
208 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
from pbtests.packetbeat import TestCase | ||
|
||
""" | ||
Tests for the DNS protocol. | ||
""" | ||
|
||
|
||
class Test(TestCase): | ||
def test_A(self): | ||
""" | ||
Should correctly interpret an A query to google.com | ||
""" | ||
self.render_config_template( | ||
dns_ports=[53], | ||
) | ||
self.run_packetbeat(pcap="dns_google_com.pcap") | ||
|
||
objs = self.read_output() | ||
assert len(objs) == 1 | ||
o = objs[0] | ||
|
||
assert o["type"] == "dns" | ||
assert o["transport"] == "udp" | ||
assert o["method"] == "QUERY" | ||
assert o["query"] == "class IN, type A, google.com" | ||
assert o["dns.question.type"] == "A" | ||
assert o["status"] == "OK" | ||
assert len(o["dns.answers"]) == 16 | ||
assert all(x["type"] == "A" for x in o["dns.answers"]) | ||
|
||
def test_A_not_found(self): | ||
""" | ||
Should correctly interpret an A query to google.com | ||
""" | ||
self.render_config_template( | ||
dns_ports=[53], | ||
) | ||
self.run_packetbeat(pcap="dns_not_found.pcap") | ||
|
||
objs = self.read_output() | ||
assert len(objs) == 1 | ||
o = objs[0] | ||
|
||
assert o["type"] == "dns" | ||
assert o["transport"] == "udp" | ||
assert o["method"] == "QUERY" | ||
assert o["query"] == "class IN, type A, nothing.elastic.co" | ||
assert o["dns.question.type"] == "A" | ||
assert o["status"] == "Error" | ||
assert o["dns.response_code"] == "NXDOMAIN" | ||
assert o["dns.answers_count"] == 0 | ||
assert o["dns.authorities_count"] == 1 | ||
assert "dns.authorities" not in o # include authorities defaults to 0 | ||
|
||
def test_MX(self): | ||
""" | ||
Should correctly interpret an MX query to elastic.co | ||
""" | ||
self.render_config_template( | ||
dns_ports=[53], | ||
) | ||
self.run_packetbeat(pcap="dns_mx.pcap") | ||
|
||
objs = self.read_output() | ||
assert len(objs) == 1 | ||
o = objs[0] | ||
|
||
assert o["type"] == "dns" | ||
assert o["transport"] == "udp" | ||
assert o["method"] == "QUERY" | ||
assert o["query"] == "class IN, type MX, elastic.co" | ||
assert o["dns.question.type"] == "MX" | ||
assert o["status"] == "OK" | ||
|
||
def test_NS(self): | ||
""" | ||
Should correctly interpret an NS query to elastic.co | ||
""" | ||
self.render_config_template( | ||
dns_ports=[53], | ||
) | ||
self.run_packetbeat(pcap="dns_ns.pcap") | ||
|
||
objs = self.read_output() | ||
assert len(objs) == 1 | ||
o = objs[0] | ||
|
||
assert o["type"] == "dns" | ||
assert o["transport"] == "udp" | ||
assert o["method"] == "QUERY" | ||
assert o["query"] == "class IN, type NS, elastic.co" | ||
assert o["dns.question.type"] == "NS" | ||
assert o["status"] == "OK" | ||
|
||
def test_TXT(self): | ||
""" | ||
Should correctly interpret an TXT query to elastic.co | ||
""" | ||
self.render_config_template( | ||
dns_ports=[53], | ||
) | ||
self.run_packetbeat(pcap="dns_txt.pcap") | ||
|
||
objs = self.read_output() | ||
assert len(objs) == 1 | ||
o = objs[0] | ||
|
||
assert o["type"] == "dns" | ||
assert o["transport"] == "udp" | ||
assert o["method"] == "QUERY" | ||
assert o["ip"] == "8.8.8.8" | ||
assert o["query"] == "class IN, type TXT, elastic.co" | ||
assert o["dns.question.type"] == "TXT" | ||
assert o["status"] == "OK" | ||
assert len(o["dns.answers"]) == 2 | ||
assert all(x["type"] == "TXT" for x in o["dns.answers"]) | ||
assert "request" not in o | ||
assert "response" not in o | ||
|
||
def test_include_authorities(self): | ||
""" | ||
Should include DNS authorities when configured. | ||
""" | ||
self.render_config_template( | ||
dns_ports=[53], | ||
dns_include_authorities=True | ||
) | ||
|
||
self.run_packetbeat(pcap="dns_not_found.pcap") | ||
|
||
objs = self.read_output() | ||
assert len(objs) == 1 | ||
o = objs[0] | ||
|
||
assert o["type"] == "dns" | ||
assert o["dns.authorities_count"] == 1 | ||
assert "dns.authorities" in o | ||
assert len(o["dns.authorities"]) == 1 | ||
|
||
def test_include_additionals(self): | ||
""" | ||
Should include DNS authorities when configured. | ||
""" | ||
self.render_config_template( | ||
dns_ports=[53], | ||
dns_include_additionals=True | ||
) | ||
|
||
self.run_packetbeat(pcap="dns_additional.pcap") | ||
|
||
objs = self.read_output() | ||
assert len(objs) == 1 | ||
o = objs[0] | ||
|
||
assert o["type"] == "dns" | ||
assert o["dns.additionals_count"] == 1 | ||
assert "dns.additionals" in o | ||
assert len(o["dns.additionals"]) == 1 | ||
|
||
def test_send_request_response(self): | ||
""" | ||
Should correctly interpret an TXT query to elastic.co | ||
""" | ||
self.render_config_template( | ||
dns_ports=[53], | ||
dns_send_request=True, | ||
dns_send_response=True | ||
) | ||
self.run_packetbeat(pcap="dns_txt.pcap") | ||
|
||
objs = self.read_output() | ||
assert len(objs) == 1 | ||
o = objs[0] | ||
|
||
assert o["type"] == "dns" | ||
assert o["transport"] == "udp" | ||
assert o["method"] == "QUERY" | ||
assert "request" in o | ||
assert "response" in o | ||
assert "elastic.co" in o["request"] | ||
assert "include:_spf.google.com" in o["response"] |