How to get whois information of a domain name in my program? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T06:32:08Z http://stackoverflow.com/feeds/question/53623 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program 2 How to get whois information of a domain name in my program? Niyaz 2008-09-10T08:27:45Z 2009-07-01T06:37:04Z <p>I want to get whois information of a domain name from my c#/java programs. Is there a simple way to do this? </p> http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/53626#53626 0 Answer by Lukas Ĺ alkauskas for How to get whois information of a domain name in my program? Lukas Ĺ alkauskas 2008-09-10T08:29:51Z 2008-09-10T08:29:51Z <p>This might help: <a href="http://www.sourcecodeonline.com/details/whois_search_using_c_.html" rel="nofollow">Whois search using C#</a></p> http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/53631#53631 2 Answer by Thomas for How to get whois information of a domain name in my program? Thomas 2008-09-10T08:33:32Z 2008-09-10T08:33:32Z <p>I think, the easiest way is a socket connection to a whois server on port 43. Send the domainname followed by a newline and read the response.</p> http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/53632#53632 1 Answer by Chris Bunch for How to get whois information of a domain name in my program? Chris Bunch 2008-09-10T08:36:03Z 2008-09-10T08:48:01Z <p>Here's the Java solution, which just opens up a shell and runs <code>whois</code>:</p> <pre><code>import java.io.*; import java.util.*; public class ExecTest2 { public static void main(String[] args) throws IOException { Process result = Runtime.getRuntime().exec("whois stackoverflow.com"); BufferedReader output = new BufferedReader(new InputStreamReader(result.getInputStream())); StringBuffer outputSB = new StringBuffer(40000); String s = null; while ((s = output.readLine()) != null) { outputSB.append(s + "\n"); System.out.println(s); } String whoisStr = output.toString(); } } </code></pre> http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/177758#177758 1 Answer by Alnitak for How to get whois information of a domain name in my program? Alnitak 2008-10-07T09:34:45Z 2008-10-07T09:34:45Z <p>Thomas' answer will only work if you know <em>which</em> "whois" server to connect to.</p> <p>There are many different ways of finding that out, but none (AFAIK) that works uniformly for every domain registry.</p> <p>Some domain names support an <code>SRV</code> record for the <code>_nicname._tcp</code> service in the DNS, but there are issues with that because there's no accepted standard yet on how to prevent a subdomain from serving up <code>SRV</code> records which override those of the official registry (see <a href="http://tools.ietf.org/html/draft-sanz-whois-srv-00" rel="nofollow">http://tools.ietf.org/html/draft-sanz-whois-srv-00</a>).</p> <p>For many TLDs it's possible to send your query to <code>&lt;tld&gt;.whois-servers.net</code>. This actually works quite well, but beware that it won't work in all cases where there are officially delegated second level domains.</p> <p>For example in <code>.uk</code> there are several official sub-domains, but only some of them are run by the <code>.uk</code> registry and the others have their own WHOIS services and those aren't in the <code>whois-servers.net</code> database.</p> <p>Confusingly there are also "unofficial" registries, such as <code>.uk.com</code>, which <em>are</em> in the <code>whois-servers.net</code> database.</p> <p>p.s. the official End-Of-Line delimiter in WHOIS, as with most IETF protocols is <code>CRLF</code>, not just <code>LF</code>.</p> http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/923873#923873 0 Answer by JD for How to get whois information of a domain name in my program? JD 2009-05-29T00:24:12Z 2009-05-29T00:24:12Z <p>I found some web services that offer this information. This one is free and worked great for me. <a href="http://www.webservicex.net/whois.asmx?op=GetWhoIS" rel="nofollow">http://www.webservicex.net/whois.asmx?op=GetWhoIS</a></p> http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/1067587#1067587 0 Answer by Andrew Shepherd for How to get whois information of a domain name in my program? Andrew Shepherd 2009-07-01T06:37:04Z 2009-07-01T06:37:04Z <p>I found a perfect C# example <A HREF="http://dotnet-snippets.com/dns/gets-the-whois-information-SID581.aspx" rel="nofollow">here.</A> </p> <p>It's 11 lines of code to copy and paste straight into your own application.</p>