2

I usually use a proxy server to browse anonymously. Now I realize that it is possible to find the location of a user using the Geolocation API. How to anonymously browse without disabling Javascript?

Luc
  • 31,973
  • 8
  • 71
  • 135
open source guy
  • 1,909
  • 9
  • 25
  • 27

3 Answers3

11

If you want to be anonymous and are worried about geolocation, don't grant websites access to your location. You will be prompted about whether to allow a website to access your location before the website can use HTML5's geolocation feature to locate you; make sure you don't allow it.

More generally, follow all the standard strategies for surfing the web anonymously. For instance, use Tor, and use it properly. There's a lot already written on this topic on this site; use search to find it. See, e.g., Different strategies for online anonymity and their +/-s?, How to be completely anonymous online?, How much can I trust Tor?, What are the pros and cons of a VPN for privacy, How can I use a VPN to protect my privacy, How to browse the Internet safely?, Does Java applets reveal the real IP address, even when using proxy or vpn?, Improving the privacy of a casual Web user, Is it possible to Identify a VPN user by finding relations in traffic?.

D.W.
  • 98,420
  • 30
  • 267
  • 572
3

While D.W. has provided an excellent answer, I'd like to go a step further with the possibility to falsify your true location.

Depending on the specific case it might be be better to provide a fake location rather than just withhold your true one. I can think of one use case:
A web service (might be a game) that is strict about duping (creating duplicate accounts) they utilize both IP and (might also force) Geolocation API checks.

There are add-ons for Firefox (Geolocator)† and Chrome (Manual GeoLocator) which you can use to override the location information provided by the Geolocation API

† Here's a video that demonstrates how Geolocator works with Firefox.

Adi
  • 43,808
  • 16
  • 135
  • 167
1

Turning off geolocation functionality in your browser doesn't mean you browse the internet anonymously. The only thing it does it stops the browser from sending geolocation data to the server. The geodata may consists of your country name, city, street, gps coordinates (approximate). However the server still gets your IP address for example.

Using a single proxy server also doesn't guarantee you full anonymity because for example your IP address and your request datestamp are stored in the proxy server's log file.

LLub
  • 1,246
  • 10
  • 21