Reputation: 401
is there any way how to retrieve a list of domains hosted within a list of servers, f.e. trying to find out how many other domains are hosted on the same server, and sharing common resources.
Preferable if this could be used under bash.
/Saulius
Upvotes: 0
Views: 929
Reputation: 3324
You could query this online service with wget
or curl
... but the form post's procedure looks a bit strange (look at the HTML source code before you use it).
Basically, this is looking-up an IP address in a database of domain names.
Upvotes: 1