in reply to Hiding cookies from users
What you're describing is the difference between a permanent cookie (has expiration date in the future) and a session cookie (expires when the browser closes ... sometimes). Most browsers (ok - firefox) allow for the inspection of permanent cookies as well as session cookies. Even if they didn't, you should never assume anything sent to a client *cannot* be seen by the client (someone can write their own client).
You're just touching the surface by encrypting the password (even encrypted, how can you prevent man-in-the-middle session hijacking). Check out the W3 FAQ section on Cookie Security ... (but be cautious about using IP address in your scheme since it can change during a session if a user is behind a big proxy server).
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Hiding cookies from users
by Anonymous Monk on Jul 05, 2006 at 15:02 UTC | |
by davido (Cardinal) on Jul 05, 2006 at 16:19 UTC | |
by exussum0 (Vicar) on Jul 07, 2006 at 17:58 UTC |