What is the best way to generate a 'fingerprint' of user unique-ness in PHP?

For example:

  1. I could use a user's IP address as the 'fingerprint', however, there could be multiple other users on the same IP
  2. I could use the user's IP + user agent as the 'fingerprint', however, a single user could simply swap from safari to firefox and again be seen as being unique

Ideally, the fingerprint so label the 'machine' rather than browser or 'ip' but I can't think of how this is achievable.

Open to ideas/suggestions of how you uniquely identify your users, and what advantages/disadvantages your method has.

link|improve this question

old question, but this: md5(implode('',$_SERVER)); – andrewjackson Sep 27 '11 at 8:26
feedback

4 Answers

up vote 1 down vote accepted

This site covers pretty much every piece of information you can use to distinguish individuals through a browser.

https://panopticlick.eff.org/

JavaScript, Java and Flash help a lot.

link|improve this answer
wow, great thing - but: this won't identify the user anymore, if he changes the browser, installs or uninstally any addons and so on... if i understand it right. – oezi Nov 3 '10 at 8:42
@oezi True, you'd have to be savvy about which pieces of data you use, and how. – JAL Nov 3 '10 at 23:34
Thanks Alex - that was really useful. While I'm sure it wont be perfect, my final idea to finger print the 'machine' is to do a hash of [screen resolution][alphabetically sorted list of fonts][IP]. – So Over It Nov 4 '10 at 3:05
feedback

easiest and best way: use phps session-management - every client is given an id, stored in a cookie (if enabled) or given as a get-variable on every link and form. (alternatively you could set a cookie on your own). but: this only "fingerprints" the browser - if the user changes his browser, deletes his cookies or whatever, you can't identify it anymore.

identifying every client by ip is usually a bad idea and won't work. clients that use the same router will have the same ip's - clients connected through a proxy-pool could have another ip with every page load.

if you need a solution that can't be manipulated by the client in an easy way, try to do a combination of the following, using all that are supported by the clients browser and compare them on each page-load:

  • "normal" HTTP Cookies
  • Local Shared Objects (Flash Cookies)
  • Storing cookies in RGB values of auto-generated, force-cached PNGs using HTML5 Canvas tag to read pixels (cookies) back out
  • Storing cookies in and reading out Web History
  • Storing cookies in HTTP ETags
  • Internet Explorer userData storage
  • HTML5 Session Storage
  • HTML5 Local Storage
  • HTML5 Global Storage
  • HTML5 Database Storage via SQLite

there's an solution called evercookie that implements all of this

link|improve this answer
1  
You linked to the German translation of the PHP manual... Here is the same page in English: php.net/manual/en/book.session.php -- Also, using Evercookie, or any other way of storing data on the client with the explicit purpose of making it hard to remove is likely to be illegal in most countries. – Adrian Schmidt Jan 24 '11 at 14:20
feedback

Achieving 100% reliability is not guaranteed, but combining some common methods can give you meaningful results

  • Users generally don't switch browsers. Over-complication in your algorithm only to reach engineering perfection is not worth the effort.
  • You certainly belong to the top 100 websites if you can expect multiple users from the same IP. Don't take it personal, but you're just not that popular.

Take the simplest possible route that could work and adjust over time if it seems necessary.

link|improve this answer
4  
i totally disagree with your second point - depending on wich kind of site he has, you'll get multiple users with the same ip very fast. lets say his site is a browsergame: all the schoolkids tell each other, friends play together, and in the informatics class, where they have internet, they 'r all playing this game from the schools network (wich means: same ip, but the developer has to find out if it's the same pc to know this isn't a cheating multi-accounter) – oezi Nov 3 '10 at 8:49
@oezi Such a browsergame will get along with session IDs just fine. – pestaa Nov 3 '10 at 8:51
indeed, i just wanted to give an example why you can't rely on the ip-adress even on small sites. – oezi Nov 3 '10 at 8:55
Yes, I wish I was popular with my sites. That being said, the little web app I have runs on a tiny VPS (80Mb RAM - yep!) - so it doesn't take too much to overload it. I need to ensure fair usage for each user. – So Over It Nov 4 '10 at 3:05
@So Over It: Having so little resources, I'd concentrate on the core of my app, not the nuts and bolts that can be added later. – pestaa Nov 4 '10 at 8:08
feedback

There's something else to take in account, the public IP Address of a user is something that also can change in every page load.
There are multiple organizations that switch public IP's in they routers to balance traffic.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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