为什么我的 whois 结果从一个 whois 搜索引擎到另一个搜索引擎不一样?

发布于 2024-10-16 23:21:18 字数 115 浏览 1 评论 0原文

我正在尝试注册 EV SSL 证书,但该公司要求注册者与提交的公司相匹配。他们无法执行此操作,因为他们获得的 whois 结果与我通过另一个网站获得的 whois 结果不匹配。为什么不同网站的 whois 结果不同?

I'm trying to register for an EV SSL certificate, but the company requires that the registrant match the company submitting. They've been unable to do this because they are getting a whois result that doesn't match the whois result that I'm getting through another site. Why does the whois result differ between sites?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坦然微笑 2024-10-23 23:21:18

这取决于它们之间有什么不同。如果您阅读WHOIS RFC,您会发现该协议由两部分组成:客户端向服务器发送一个以 CRLF 结尾的字符串,服务器用一堆 CRLF 行进行响应并关闭套接字。

来自 RFC:

client                           server at whois.nic.mil

open TCP   ---- (SYN) ------------------------------>
           <---- (SYN+ACK) -------------------------
send query ---- "Smith<CR><LF>" -------------------->
get answer <---- "Info about Smith<CR><LF>" ---------
           <---- "More info about Smith<CR><LF>" ----
close      <---- (FIN) ------------------------------
           ----- (FIN) ----------------------------->

协议的任何部分都没有涵盖该文本块应包含的内容。这意味着 WHOIS 服务器之间的信息格式可能存在很大差异。

如果不仅仅是格式发生变化,而且数据本身也发生变化,那么,在不知道有什么不同以及您正在查询哪些主机的情况下,我没有足够的信息来猜测可能出了什么问题。

That depends on what is different between them. If you read the RFC for WHOIS, you will find that the protocol consists of two pieces: the client sends a CRLF terminated string to the server and the server responds with a bunch of CRLF lines and closes the socket.

from the RFC:

client                           server at whois.nic.mil

open TCP   ---- (SYN) ------------------------------>
           <---- (SYN+ACK) -------------------------
send query ---- "Smith<CR><LF>" -------------------->
get answer <---- "Info about Smith<CR><LF>" ---------
           <---- "More info about Smith<CR><LF>" ----
close      <---- (FIN) ------------------------------
           ----- (FIN) ----------------------------->

No part of the protocol covers what that block of text should contain. This means that the format of the information can vary wildly between WHOIS servers.

If it isn't just the format that is varying, but the data itself, well, without knowing what is different and which hosts you are querying, I don't have enough information to guess what might be wrong.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文