vote up 0 vote down star

How can I recreate HttpSession (with cookie, on servlet filters) using JSESSIONID from still active session, passed in request?

Thanks for help.

flag
Where would you be re-creating it from? You mean you have the session data stashed away somewhere? What's the scenario? Recovering from a crashed server? – djna Jul 20 at 19:45
First user logs into using standalone application, he got JSESSIONID. Using mobile browser he need to access the same app omitting login page. He should use recived JSESSIONID and the server must recrete his cookies. First I've tried standard tomcat ";jsessionid=ACD..." paremeter witout cookies, but it breaks down all ajax stuff. – kinkos Jul 20 at 20:19

1 Answer

vote up 0 vote down

What you are trying to do is hijack the session. As the name suggests this is a security hole in your application because a malicious user could use the same mechanism to impersonate a good user.

To hijack the session the second client (the mobile browser in your case) is going to have to know the session id, so avoiding the log-in isn't really getting you anything because you're just replacing it with entering the session id.

link|flag

Your Answer

Get an OpenID
or

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