Re: CGI::Session file permission?

2005-03-29 Thread Steven Schubiger
On 29 Mar, David Garamond wrote: > Am I right to think that CGI::Session::File driver is insecure? It > creates the session files with a hardcoded 0644 permission, while the > synopsis/examples tell us to store the files in "/tmp". You're right, the chmod mode is hard-coded. Do we desire a patc

Re: CGI::SESSION, mysql, storing session data

2004-11-12 Thread Harley Davidson
But you did not post the correction/solution=) sorry about that. The resolution was to re-read the section of the cgi::session documentation which talks about the data table. "Session data is stored in the form of hash table, in key value pairs" I thought that the first argument to the p

Re: CGI::SESSION, mysql, storing session data

2004-11-12 Thread Chasecreek Systemhouse
On Thu, 11 Nov 2004 13:09:58 -0600, Harley Davidson <[EMAIL PROTECTED]> wrote: > problem solved. reading the module docs like a technical manual instead of > a comic strip seemed to help;) But you did not post the correction/solution=) So, others may be doomed to repeat... -- WC -Sx- Jon

re: CGI::SESSION, mysql, storing session data

2004-11-12 Thread Harley Davidson
problem solved. reading the module docs like a technical manual instead of a comic strip seemed to help;) _ Don’t just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/ -- To

Re: CGI::Session

2004-10-11 Thread Owen
On Mon, 11 Oct 2004 12:03:27 -0500 Bill Stephenson <[EMAIL PROTECTED]> wrote: > So I tried installing it with cpan using this line: > > cpan> install CGI:Session maybe try install CGI::Session -- -- Owen -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: cgi session

2003-01-08 Thread Will
Here is a tutorial (written for the CGI::Session module) with a section on how to do membership style sites. http://search.cpan.org/author/SHERZODR/CGI-Session-3.11/Session/CookBook.pm#MEMBERS_AREA The basic idea is to set a subroutine (included in the tutorial) at the beginning of each protected

Re: cgi session

2003-01-08 Thread Vitaliy Babiy
You can generate keep client's status (session) in URI or in cookies. In the case of URI it's quite simple: In the script login.cgi you just check if login correct and generate session string so link wil look like this http://www.mydomain.com/cgi-bin/next.cgi?session=567885734957345 Also you save s

Re: cgi session

2003-01-08 Thread Vitaliy Babiy
You can generate keep client's status (session) in URI or in cookies. In the case of URI it's quite simple: In the script login.cgi you just check if login correct and generate session string so link wil look like this http://www.mydomain.com/cgi-bin/next.cgi?session=567885734957345 Also you save s

Re: cgi session

2002-12-05 Thread Christopher G Tantalo
Admin-Stress wrote: > Hi, > > How can I check cgi session? mmm .. maybe better I explain like this: > > I just want to make a 'secure site' that need username and password. So, the first >page of my site > would be "fill in you username and password", for example, it will be placed here : > >

Re: cgi session

2002-12-05 Thread fliptop
On Thu, 5 Dec 2002 at 10:39, Admin-Stress opined: [snip] A:I just want to make a 'secure site' that need username and password. So, the first page of my site A:would be "fill in you username and password", for example, it will be placed here : A: A: http://www.mydomain.com/login.html A: A:After