This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes JForum and the fly likes SSO is secure ? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Products » JForum
Reply Bookmark "SSO is secure ?" Watch "SSO is secure ?" New topic
Author

SSO is secure ?

Migrated From Jforum.net
Ranch Hand

Joined: Apr 22, 2012
Posts: 17424
http://www.jforum.net/doc/SSOCookies
This link writes about SSO but

2 Cookie cookie = new Cookie("JforumSSO", user.getUsername());
3 cookie.setMaxAge(-1) // session cookie, or set to positive number.
4 response.addCookie( cookie );


Everybody can make fake cookie to enter website as someone others account.
Maybe I'm wrong for that but as far as i know hotmail has had a security hole like that too before...
When user clicks on some link on hotmail window , attacker access his account for free
There is no security for that ? :roll:

By the way , i m using
SSOCookies.java for sso
[originally posted on jforum.net by kadirbasol]
Migrated From Jforum.net
Ranch Hand

Joined: Apr 22, 2012
Posts: 17424
Good security point. But was meant as a simple example of how to write your own SSO Cookie based implementation and not how to create a secure cookie. SSO implementators need to consider what level of security they need to build in.

For example, the value of the cookie should be some sort of encrypted string that identifies the specific PC and user. This means that even if someone "hijacks" your cookie, they can't use it.

Of course, if you need high security, you should be using SSL with Cookies as well.
[originally posted on jforum.net by monroe]
Migrated From Jforum.net
Ranch Hand

Joined: Apr 22, 2012
Posts: 17424
When i set Cookie from my outside jsp application


Redirect user to jforum will create new username "JDuke" if user doesnt exists.
Also with default password on sso and default mail.Right ?
if user already exists , he will login as JDuke.
As i understood sso ...

Here is my CookieUserSSO :

[originally posted on jforum.net by kadirbasol]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: SSO is secure ?
 
Similar Threads
Another bloody penguin game
SSO in a Spring Application
closing browser leaves user logged on
Email preferences
SSO cookies not being read