views:

32

answers:

2

For a password protected site, is there a way to allow users to log in to the site multiple times as long as it's on the same computer (even in different browsers)?

One way I have thought to do it is always send MAC address on login, but that's not available in browsers. Is there some other way of doing this?

A: 

Use a flash (or java, or ...) applet to get the needed unique information.

William Briand
What unique information does Flash have access to?
rjdevereux
Flash can acess any file (http://www.flashmagazine.com/news/detail/flash_player_10_new_feature_load_and_save_files_using_filereference/) : finding an unique information should not be too difficult (registery ?). And it can set browser-shared LSO cookie.
William Briand
+1  A: 

As I understand it, you want to keep your users logged in to your application even if they close the browser and switch to another one. Briefly looking into this, a possible solution might be to use "flash cookies" or local shared objects, which are managed browser independent. However, there are some security, privacy and legal concerns plus the drawbacks from using the proprietary Flash technology. I would go with Alex's advice of rethinking your approach.

Wolfram