How make multi domain query #1077
Answered
by
rthalley
Petrov-Daniil
asked this question in
Q&A
-
I want to send a packet where there will be several domains in one request, can I do this using dnspython? Scapy example: dns_request = dns_request / scapy.layers.dns.DNSQR(qname="domain.com.", qtype="A", qclass="IN") |
Beta Was this translation helpful? Give feedback.
Answered by
rthalley
Apr 17, 2024
Replies: 1 comment
-
Yes, though dnspython's stub resolver has no support for such queries as the protocol has lots of issues with multiple questions, and so basically no one implements support. But to make such a request is easy
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Petrov-Daniil
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, though dnspython's stub resolver has no support for such queries as the protocol has lots of issues with multiple questions, and so basically no one implements support. But to make such a request is easy