in reply to Session Security
If you're truly worried about getting the session ID from packets, then using cookies isn't going to help at all (they're passed over the wire too on every request). The only thing that will help is using a secure connection (HTTPS). Putting the session ID in the URL makes it more accessible, but as long as you expire the sessions at a reasonable time (and give the user a way to force expiration), someone gleaning IDs from browser history or something shouldn't be much of a problem.
You could in your code limit a cookie you receive to the certain IP you assigned it to, but even that isn't failsafe as caching proxy servers, for example, only have one IP for multiple users.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Session Security
by powerhouse (Friar) on Nov 20, 2003 at 03:31 UTC | |
by The Mad Hatter (Priest) on Nov 20, 2003 at 03:41 UTC |