vote up 1 vote down star
1

I want to find out all the subdomains of a given domain. I found a hint which tells me to dig the authoritative Nameserver with the following option: dig @ns1.foo.bar some_domain.com axfr

But this never works. Has anyone a better idea/approach

flag

5 Answers

vote up 5 vote down check

The hint (using axfr) only works if the NS you're querying (ns1.foo.bar in your example) is configured to allow AXFR requests from the IP you're using; this is unlikely, unless your IP is configured as a secondary for the domain in question.

Basically, there's no easy way to do it if you're not allowed to use axfr. This is intentional, so the only way around it would be via brute force (i.e. dig a@some_domain.com, dig b@some_domain.com, ...), which I can't recommend, as it could be viewed as a denial of service attack.

link|flag
You mean a.somedomain.com, b.somedomain.com, of course? @ in domain names are surprising. – bortzmeyer Mar 13 at 7:11
Yes, bortzmeyer, you're absolutely correct, I meant a.some_domain.com, etc. I can't believe I wrote it with "@", and that it took nearly 5 months before someone picked it up! – TimB Mar 17 at 1:37
vote up 0 vote down

Use Network tools from CyD Software Labs. You can read about their DNS module here: cydsoft.com/products.php?helpid=126&product=13

link|flag
vote up 0 vote down

You can only do this if you are connecting to a DNS server for the domain -and- XFER is enabled for your IP address. This is the mechanism that secondary systems use to load a zone from the primary. In the old days, this was not restricted, but due to security concerns, most primary name servers have a whitelist of: secondary name servers + a couple special systems.

If the nameserver you are using allows this then you can use dig or nslookup.

For example:

nslookup

ls domain.com

NOTE: because nslookup is being deprecated for dig and other newere tools, some versions of nslookup do not support "ls", most notably Mac OS X's bundled version.

link|flag
vote up 0 vote down

In windows nslookup the command is

ls -d somedomain.com > outfile.txt

which stores the subdomain list in outfile.txt

few domains these days allow this

link|flag
vote up 1 vote down

If the DNS server is configured properly, you won't be able to get the entire domain. If for some reason is allows zone transfers from any host, you'll have to send it the correct packet to make that request. I suspect that's what the dig statement you included does.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.