Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Also see here for an updated list of tools: security.stackexchange.com/q/35078/18541 – D3C4FF May 7 at 0:30

closed as off topic by Kev Jul 13 '11 at 1:18

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

9 Answers

up vote 35 down vote accepted

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.

share|improve this answer
8  
You mean a.somedomain.com, b.somedomain.com, of course? @ in domain names are surprising. – bortzmeyer Mar 13 '09 at 7:11
12  
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 '09 at 1:37
@TimB I'm pretty sure underscores aren't allowed in domain names either, though it is just as a placeholder name of course. – Anorov May 1 at 23:57

If you can't get this information from DNS (e.g. you aren't authorized) then one alternative is to use Wolfram Alpha.

  1. Enter the domain into the search box and run the search. E.g. icims.com
  2. In the 3rd section from the top (named "Web statistics for all of icims.com") click "Subdomains"
  3. In the Subdomains section click "More"

You will be able to see a list of sub-domains there. Although I suspect it does not show ALL sub-domains.

share|improve this answer
4  
It appears this doesn't work anymore, atleast not as described. – Nicholas Pickering Dec 17 '12 at 8:57
  1. dig somedomain.com soa
  2. dig @ns.SOA.com somedomain.com axfr
share|improve this answer
7  
Any suggestion if transfer fails on that? – Chris Oct 20 '10 at 19:43
Which of course does not work if axfr is disabled. – Armand Jun 21 '12 at 19:25

You can use this site to find subdomains Find subdomains

This tool will try a zone transfer and also query search engines for list of subdomains.

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

robotex tools which are free will let you do this but they make you enter the ip of the domain first:

  1. find out the ip (there's a good ff plugin which does this but I can't post the link cos this is my first post here!)
  2. do an ip search on robotex: http://www.robtex.com/ip/
  3. in the results page that follows click on the domain you're interested in>
  4. you are taken to a page that lists all subdomains + a load of other information such as mail server info
share|improve this answer

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.

share|improve this answer

Use:

$ host -l domain.com

Under the hood, this uses the AXFR query mentioned above. Chances are you are not allowed to do this though. In that case, you'll get a 'transfer failed' message.

share|improve this answer

protected by Quintin Robinson Jul 12 '11 at 22:41

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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