blob: 65ae68bad0a64e7850ce3111b18671182d4e2a15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import dns.message
import dns.name
import dns.query
class DNSUtils:
""" Utilities useful for DNS requests """
def dns_request(self, domain, ns):
""" return the ip address of the given domain name from the given nameserver """
request = dns.message.make_query(domain, dns.rdatatype.A);
request.flags |= dns.flags.AD;
request.find_rrset(request.additional, dns.name.root, 65535, dns.rdatatype.OPT, create=True, force_unique=True)
response = dns.query.udp(request, ns)
for answer in response.answer:
for item in answer.items:
return item
|