0

I would like to find out where a website is hosted, in other words where the server/datacentre is located and the name of the company that provides the hosting. I have used the various websites that come up on google but they keep telling me that cloudflare etc. is the hoster when its not. Cloudflare doesn't host any files nor provide web servers.

cheekykid
  • 23
  • 3
  • [MAXMIND GeoIP](https://www.maxmind.com/en/geoip2-precision-demo) works well. – phbits May 20 '20 at 19:37
  • How to find the IP of the webserver when I don't know where the webserver it? – cheekykid May 20 '20 at 19:38
  • @phbits - Often the GEO IP locations are registered locations but sometimes the physical locations are entirely different. If you really need to be sure, you need to traceroute from multiple locations around the World. – user10216038 May 21 '20 at 00:49

1 Answers1

1

If your queries are showing that the site is hosted by Cloudflare, then the site that you are trying to look-up may be protected by Cloudflare's web application firefall (WAF).

In this case, the DNS A record for the site will point to a server on Cloudflare's network. The Cloudflare server will act as a reverse-proxy - forwarding requests to the site's actual server, and relaying responses from the site's actual server back to the user. But, this is opaque to the user, and if configured correctly, there is no way for you to find the IP address and/or network where the actual server is hosted. This is by design, see Does Cloudflare masking my IP make my server more secure? for more info.

mti2935
  • 19,868
  • 2
  • 45
  • 64