反向ip,根据ip地址查找域名

发布于 2024-09-16 13:48:54 字数 187 浏览 2 评论 0原文

此类网站的方式和来源 http://www.yougetsignal.com/tools/web- sites-on-web-server/ 是从哪里获取此信息的?我怎样才能开发这样的工具?

谢谢。

How and from where websites like this http://www.yougetsignal.com/tools/web-sites-on-web-server/ are getting this information from? How can I develop such tool?

Thank you.

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

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

发布评论

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

评论(7

篱下浅笙歌 2024-09-23 13:48:54

您可以在 IP 上使用 nslookup。反向 DNS 使用 .in-addr.arpa 域定义。

示例:

nslookup somedomain.com

生成 123.21.2.3,然后执行以下操作:

nslookup 123.21.2.3

这将询问 3.2.21.123.in-addr.arpa 并生成域名(如果为反向 DNS)。

You can use nslookup on the IP. Reverse DNS is defined with the .in-addr.arpa domain.

Example:

nslookup somedomain.com

yields 123.21.2.3, and then you do:

nslookup 123.21.2.3

this will ask 3.2.21.123.in-addr.arpa and yield the domain name (if there is one defined for reverse DNS).

怼怹恏 2024-09-23 13:48:54

您可以使用 ping -anbtstat -A

You can use ping -a <ip> or nbtstat -A <ip>

夏の忆 2024-09-23 13:48:54

他们只是搜寻网站列表,并将结果 IP 地址记录在数据库中。

您所看到的只是该列表的反向映射。它不能保证是一个完整的列表(实际上通常不会),因为不可能了解每个可能的网站地址。

They're just trawling lists of web sites, and recording the resulting IP addresses in a database.

All you're seeing is the reverse mapping of that list. It's not guaranteed to be a full list (indeed more often than not it won't be) because it's impossible to learn every possible web site address.

猫七 2024-09-23 13:48:54

Windows 用户只需使用简单的 nslookup 命令

G:\wwwRoot\JavaScript Testing>nslookup 208.97.177.124
Server:  phicomm.me
Address:  192.168.2.1

Name:    apache2-argon.william-floyd.dreamhost.com
Address:  208.97.177.124


G:\wwwRoot\JavaScript Testing>

http://www.guidingtech.com/2890/find-ip-address-nslookup-command-windows/

如果您想了解更多信息,请查看以下答案!

https://superuser.com/问题/287577/如何查找基于 IP 地址的域/1177576#1177576

windows user can just using the simple nslookup command

G:\wwwRoot\JavaScript Testing>nslookup 208.97.177.124
Server:  phicomm.me
Address:  192.168.2.1

Name:    apache2-argon.william-floyd.dreamhost.com
Address:  208.97.177.124


G:\wwwRoot\JavaScript Testing>

http://www.guidingtech.com/2890/find-ip-address-nslookup-command-windows/

if you want get more info, please check the following answer!

https://superuser.com/questions/287577/how-to-find-a-domain-based-on-the-ip-address/1177576#1177576

请别遗忘我 2024-09-23 13:48:54

来自 yougetsignal 上反向 IP 域检查工具的有关部分:

反向 IP 域检查采用域名或 IP 地址指向
到网络服务器并搜索已知托管的其他网站
同一个网络服务器。 数据是从搜索引擎结果中收集的
不保证完整。

From about section of Reverse IP Domain Check tool on yougetsignal:

A reverse IP domain check takes a domain name or IP address pointing
to a web server and searches for other sites known to be hosted on
that same web server. Data is gathered from search engine results,
which are not guaranteed to be complete.

水溶 2024-09-23 13:48:54

这对我在 Intranet 中获取域名

https://gist.github.com/jrothmanshore/2656003

这是一个 powershell 脚本。在 PowerShell 中运行它

.\ip_lookup.ps1 <ip>

This worked for me to get domain in intranet

https://gist.github.com/jrothmanshore/2656003

It's a powershell script. Run it in PowerShell

.\ip_lookup.ps1 <ip>
少女情怀诗 2024-09-23 13:48:54

使用 dig 命令工具,您可以检索 PTR DNS 记录(如果已设置)。 PTR 提供反向查找的域名。

dig -x 8.8.8.8 +short

给出:dns.google

IPv6 类似:

dig -x 2001:4860:4860::8888 +short

给出:dns.google

注意:并非所有 IP 地址都设置了 PTR 记录!

Using the dig command tool, you can retrieve the PTR DNS record if it is set. PTR provides a domain name for reverse lookup.

dig -x 8.8.8.8 +short

Gives: dns.google

Similarly with IPv6:

dig -x 2001:4860:4860::8888 +short

Gives: dns.google

N.B: not all IP addresses have PTR records set up!

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