java - 域名 Whois : how to find contact information?

标签 java dns domain-name whois

我将此代码片段用于 Whois 信息:

org.apache.commons.net.whois.WhoisClient whois = new org.apache.commons.net.whois.WhoisClient();
whois.connect("whois.verisign-grs.com", 43);

String domainWhois = whois.query(domainName);

whois.disconnect();

我获得了创建日期、到期日期、注册商和名称服务器,但没有与管理或技术联系人相关的数据。有什么办法可以得到它们吗?

最佳答案

通常,查找特定 .com 或 .net 域的所有者/管理员需要执行两次 WHOIS 查询。

威瑞信是这些顶级域的注册机构。您问题中的代码是正确的,因为您必须在 whois.verisign-grs.com 查询服务器。

但是,您应该知道这是一个 thin WHOIS 服务。这意味着服务器只会向您发回有关注册商(注册域名的公司)的信息,以及到期日、名称服务器等信息。

以 stackoverflow.com 为例,威瑞信告诉您注册商是 NAME.COM INC(我使用的是在基于 Unix 的系统上找到的 whois 程序,为清楚起见,用 -h 指定主机) :

$ whois -h whois.verisign-grs.com stackoverflow.com

Whois Server Version 2.0

Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.

   Domain Name: STACKOVERFLOW.COM
   Registrar: NAME.COM, INC.
   Sponsoring Registrar IANA ID: 625
   Whois Server: whois.name.com
   Referral URL: http://www.name.com
   Name Server: NS-1033.AWSDNS-01.ORG
   Name Server: NS-1543.AWSDNS-00.CO.UK
   Name Server: NS-358.AWSDNS-44.COM
   Name Server: NS-739.AWSDNS-28.NET
   Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
   Updated Date: 08-jun-2016
   Creation Date: 26-dec-2003
   Expiration Date: 26-dec-2016

[...]

如果您想查看有关实际拥有域的公司或个人的信息,您需要将查询发送到注册商的 WHOIS 服务器。在这种情况下,查询必须转到 whois.name.com:

$ whois -h whois.name.com stackoverflow.com

Domain Name: STACKOVERFLOW.COM 
Registry Domain ID: 108907621_DOMAIN_COM-VRSN 
Registrar WHOIS Server: whois.name.com 
Registrar URL: http://www.name.com 
Updated Date: 2016-06-08T04:23:11Z 
Creation Date: 2003-12-26T19:18:07Z 
Registrar Registration Expiration Date: 2016-12-26T19:18:07Z 
Registrar: Name.com, Inc. 
Registrar IANA ID: 625 
Reseller:  
Domain Status: clientTransferProhibited 
Registry Registrant ID:  
Registrant Name: Sysadmin Team 
Registrant Organization: Stack Exchange, Inc. 
Registrant Street: 110 William St , Floor 28 
Registrant City: New York 
Registrant State/Province: NY 
Registrant Postal Code: 10038 
Registrant Country: US 
Registrant Phone: +1.2122328280 
Registrant Email: sysadmin-team@stackoverflow.com

[...]

关于java - 域名 Whois : how to find contact information?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37996133/

相关文章:

language-agnostic - 如何检查域名是否存在?

dns - 为什么域名是倒退的?

java - 如何访问 Pax Exam 测试探针包中的资源?

java - 使用 PDFBox 2.0.17 对具有多个签名字段的 PDF 进行签名

java - 在 Jar 文件中加载类

java - 存储大量模拟时间序列数据

django - 子域标签中的下划线..有效与否?

domain-name - WWW 或非 WWW,选择什么作为主站点名称?

c++ - Windows - 在不修改 etc/hosts 的情况下将域请求重定向到本地主机

Apache:子域、虚拟主机和动态 DNS