Top "Dig" questions

dig performs DNS lookups and displays records matching the specified IP address or domain name.

How do I get a list of all subdomains of a domain?

I want to find out all the subdomains of a given domain. I found a hint which tells me to …

dns subdomain dig nameservers
Using dig to search for SPF records

I am using dig installed on my machine to search for SPF records for a particular domain. Is there a …

dns dig
Get IPv4 and IPv6 with one command

I would like to know if it's possible to get IPv4 and IPv6 addresses with just one invocation of dig? …

dig
What does the authority section mean in dig results?

Yesterday I changed my domain's name server from cloudflare to dnspod. And I used dig to test it. But the …

dns dig
Using the dig command in python

Just a forewarning, my python skills are almost nonexistent, but I’m trying to learn as I go. I'm doing …

python dns cname dig
dig (DNS Lookup) specify DNS server on Windows

In Linux, I would use dig to specify a DNS server of 127.0.0.1 with the following command: dig google.com @127.0.0.1 I …

powershell dns dig
Difficulty using Python's socket.gethostbyaddr()

I am trying to reverse dns a list of IPs using socket.gethostbyaddr() in python, which returns 'Unknown Host' for …

python networking dig python-sockets gethostbyaddr
search for ALL DNS TXT records of a domain and subdomains

There is a way to retrieve ALL (TXT) entries about DNS records of a domain (and subdomains) ? My goal is …

dns subdomain spf dkim dig
Meaning of the five fields of the ANSWER SECTION in dig query

Here is the ANSWER SECTION when I run dig www.google.com: ;; ANSWER SECTION: www.google.com. 108 IN A 74.125.239.115 www.…

dns dig
How make dns queries in dns-python as dig (with additional records section)?

I trying use dns python and want get all records with ANY type query: import dns.name import dns.message …

python dns dig dnspython