![]() |
Transfering sessions across domains - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Transfering sessions across domains (/showthread.php?tid=13278) Pages:
1
2
|
Transfering sessions across domains - El Forum - 12-30-2008 [eluser]The Wizard[/eluser] heheh thank you ![]() yes, thats true indeed. so we make a special table, link it with the users id (via secret key). on the table, we store all information about the user, (browser type, IP etc.) and compare it with the user, which try's to login via the secret key. At least, this would bring somehow a little bit security ![]() i remember a prominent example where gmail was a subject to those session hijacking where you could gain access to a gmail account of choice. ![]() damn. security is hard. Transfering sessions across domains - El Forum - 12-30-2008 [eluser]simshaun[/eluser] Here's an interesting article I found about sessions between domains: http://www.melbournechapter.net/wordpress/programming-languages/php/cman/2006/06/15/sharing-a-session-across-multiple-domainsservers-with-php/ Transfering sessions across domains - El Forum - 12-30-2008 [eluser]The Wizard[/eluser] Thank you ![]() i will read it right away. Transfering sessions across domains - El Forum - 12-30-2008 [eluser]The Wizard[/eluser] Thanks ![]() this are very good informations, i will keep them in my mind while i'm building my System. Thank you very very much. Transfering sessions across domains - El Forum - 12-31-2008 [eluser]The Wizard[/eluser] Hello again friends ![]() dunno if it helps, i want to share a custom code i use myself. Maybe its easy to develop but i still want to share it with you so, here it is. Code: function Security_BrowserInfo () { its a set of functions, which may be of help to you so, i hope its useful ![]() take care friends ![]() |