How to implement a single sign-on authentication server? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:54:45Z http://stackoverflow.com/feeds/question/790172 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/790172/how-to-implement-a-single-sign-on-authentication-server 0 How to implement a single sign-on authentication server? kch 2009-04-26T03:14:45Z 2009-04-30T16:15:54Z <p>Hi all,</p> <p>I want to implement a discrete remote authentication server that handles login for many sites. Somewhat similar to OpenID.</p> <p>Basically, I have site-1 and site-2 and they're both reliant on the same user database, which is on a separate auth-site. So, auth-site handles user authentication for them, and during this process, makes information on the authenticating user available to the requesting system.</p> <p>Each site can be on a completely separate domain name, on completely separate machines.</p> <p>This is all via HTTP(S), there can be no direct database access.</p> <p>There's one last quirk: once an user has logged in to site-1, when accessing any other site reliant on auth-site, the site must treat the user as already authenticated.</p> <p>This whole business must be entirely fuss-free to the end-user. It should work like a simple everyday login form.</p> <p>As a concrete example, say we're talking about <code>stackoverflow.com</code> and <code>serverfault.com</code>, and they both authenticate via <code>authentic-overflow-server-stack.com</code>. Again, once logged in to either site, I can go to the other and do my business without logging in again.</p> <p>What I'd like to know are the general interaction mechanism between the sites behind this scenario.</p> <p>In my particular setup, I'm using Rails, but I'm not looking for code[1], just general best practice and guidance, so feel free to answer in pseudo-code or any generally readable language. OTOH, bear in mind that I'll have decent MVC, REST, and meta-programming in my toolkit.</p> <p><hr /></p> <p>[1]: unless you happen to know an existing tiny neat free MIT/BSD-licensed app/plugin/generator that handles this.</p> http://stackoverflow.com/questions/790172/how-to-implement-a-single-sign-on-authentication-server/790179#790179 1 Answer by Greg Hewgill for How to implement a single sign-on authentication server? Greg Hewgill 2009-04-26T03:19:12Z 2009-04-26T03:19:12Z <p>It sounds like you want to actually use the OpenID protocol itself. There's no reason you can't restrict the authentication provider to only your own server, and do some shortcuts that make the authentication process transparent. Also, the OpenID protocol supports what you describe about logging into one implies logging in to all services.</p> http://stackoverflow.com/questions/790172/how-to-implement-a-single-sign-on-authentication-server/790214#790214 2 Answer by Matthew Flaschen for How to implement a single sign-on authentication server? Matthew Flaschen 2009-04-26T04:00:34Z 2009-04-26T04:00:34Z <p>It sounds like (especially with the emphasis on fuss-free), you want something like what the Wikimedia Foundation is doing. Basically, you log on to en.wikipedia.org, then that server communicates with other servers (e.g. en.wikinews.org) and gets authentication tokens. Finally, those tokens are embedded into images, e.g. <a href="http://en.wikinews.org/wiki/Special:AutoLogin?token=xxxxxxxxxxxxxxx" rel="nofollow">http://en.wikinews.org/wiki/Special:AutoLogin?token=xxxxxxxxxxxxxxx</a> , and when your browser visits that url (img src) it gets a authentication cookie for Wikinews. Of course, the source code is available for your reivew at <a href="http://www.mediawiki.org/wiki/Extension:CentralAuth" rel="nofollow">http://www.mediawiki.org/wiki/Extension:CentralAuth</a> .</p> <p>OpenID is also a good choice, but it does require that the user "consciously" visit two domains. An example of one entity with two domains doing this is Canonical. E.g., if you go to <a href="https://help.ubuntu.com/community/UserPreferences" rel="nofollow">https://help.ubuntu.com/community/UserPreferences</a> they will redirect you to Launchpad (<a href="https://login.launchpad.net/%2Bopenid" rel="nofollow">https://login.launchpad.net/+openid</a>) for authentication.</p> <p>Note that Wikipedia is doing this over http, but you can do it all https to ensure the img src tokens aren't intercepted.</p> http://stackoverflow.com/questions/790172/how-to-implement-a-single-sign-on-authentication-server/807761#807761 0 Answer by kch for How to implement a single sign-on authentication server? kch 2009-04-30T16:15:54Z 2009-04-30T16:15:54Z <p>Looks like <a href="http://www.jasig.org/cas" rel="nofollow">CAS</a> is good enough for me, and has ruby implementations, along with dozens of other lesser languages, e.g. one that rhymes with femoral bone rage.</p> <ul> <li><a href="http://code.google.com/p/rubycas-server/" rel="nofollow">http://code.google.com/p/rubycas-server/</a></li> <li><a href="http://code.google.com/p/rubycas-client/" rel="nofollow">http://code.google.com/p/rubycas-client/</a></li> </ul>