Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I am setting a cookie using CGI.pm in the first script, retrieving the value and using that in subsequent scripts.
$cookie = $query->cookie( -name => 'newcookie', -value => $newcookie, -domain => '.xyz.com', -expires => '', -path => '/' );
If I set -expires => 'somevalue', I see the cookie in text format in the folder that has all the cookies.. (for example, C:\Windows\Cookies )but if I don't set a value for -expires => '', I don't see the cookie saved to the hard drive.
Is there any other way a user can find out the cookie, if -expires is not set (as it doesn't save the cookie as a text file)? Does the cookie expire when the browser is closed? Is this a safe way to pass encrypted password to subsequent pages?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Hiding cookies from users
by Joost (Canon) on Jul 05, 2006 at 14:01 UTC | |
Re: Hiding cookies from users
by derby (Abbot) on Jul 05, 2006 at 14:08 UTC | |
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 | |
Re: Hiding cookies from users
by simon.proctor (Vicar) on Jul 05, 2006 at 14:59 UTC | |
by Anonymous Monk on Jul 05, 2006 at 15:44 UTC | |
Re: Hiding cookies from users
by vagnerr (Prior) on Jul 05, 2006 at 13:59 UTC |