vote up 15 vote down star
22

If you need to locate a user based on their IP address, what services are available?

p.s. I understand that some users use proxies etc, that mean the result is not 100% accurate. That's ok.

flag

What would be really interesting though, is to find out how they get this information. Is there any privacy breach being exploited that people don't know about? etc... – Unknown Apr 25 at 6:49
All they can do is get the records of which ISP has which IP address range assigned to it. From there they can figure out the location of the ISP. It's still a guess. I once worked in the US, using a block of IP addresses from the UK. – John Saunders Jul 13 at 15:55
I just want to make a semantic comment here: You are not finding a users location, you are finding a computers location. This is important, from a legal point of view. – silky Sep 9 at 12:20

11 Answers

vote up 13 vote down check

Most geolocation services allow you to download a database full of IP Address to city or country maps. Some also provide web service apis for free (limited number of requests) or a paid subscription.

MaxMind has one such service that you can use which is free to determine the user's location. Their minFraud service allows 500 free queries per day.

A sample for their web service in ASP

Dim objHttp, strQuery
strQuery = "http://geoip1.maxmind.com/a?l=" & license_key & _
    "&i=" & ipaddress
set objHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
objHttp.open "GET", strQuery, false
objHttp.send
Response.Write objHttp.ResponseText
Set objHttp = Nothing

They also offer APIs for determing credit card fraud probability based on location, card number, etc, in their paid version.

Another service is ip2location. John Millikin

Also, IPLigence offers 50 free queries a day.

For .NET Coders, there is the IPAdressExtensions module (open source, free and no web service required) purekrome


More info about geolocation is available on wikipedia.

link|flag
vote up 4 vote down

It's also worth noting that MaxMind allow you to download their geolocation database as a CSV file:

link|flag
vote up 0 vote down

I have used hostip.info to grab client location informaion when forms are submitted on some of my aspx pages. Here is a blog entry I wrote on it a while back www.fencerowproductions.com

link|flag
vote up 0 vote down

For a paid product, you could look at CountryHawk from cyScape.

I can't vouch for this product personally, but we use their BrowserHawk product for browser and connection speed detection (eg to optimise video streaming) and haven't had any problems with it.

link|flag
vote up 0 vote down

Here's another free service: http://www.webservicex.net/WCF/ServiceDetails.aspx?SID=46

WebserviceX.NET provide quite a few different free web services.

link|flag
vote up 0 vote down

Geolocation with ClientLocation generally works and you get it free when you use Google's JSAPI.

link|flag
vote up 0 vote down

Easy -> I made a .NET extension method a while back. It's all wrapped up in a single DLL that u can use and reference. it doesn't require ANY WEB SERVICE or 3rd party external API call.

it's also free.

it's also open source. blah blah blah.

Enjoy!

It's called IPAddressExtensions and it's on Codeplex.

link|flag
vote up 0 vote down

this site uses maxminds free product - its a decent showcase - http://www.ipaddress1.com/

link|flag
vote up 0 vote down

I have the Internet connection in my office . I want to check my broadband speed .I found the Details Like uploading,Downloading details on the websiten named as link text. All the information very fast..Free of cost..

link|flag
vote up 0 vote down

I recommend userlocation.com. It's easy to use and affordable and it's quite accurate.

link|flag
vote up 0 vote down

Easy intro to using MaxMinds downloadable database in PHP Geolocation

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.