How can I recreate HttpSession (with cookie, on servlet filters) using JSESSIONID from still active session, passed in request?
Thanks for help.
|
|
|||||
|
|
|
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. |
||
|
|