in reply to Re: Re: Is this a secure way to handle login?
in thread Is this a secure way to handle login?

The numbers generated by Apache::Session are not random enough to be considered truly secure. If you really don't want people to forge session IDs you should use some kind of hashing scheme to generate a digest that you send out with your session ID. Then you can use that to verify that the ID has not been tampered with. This technique has been described in other threads here about session handling.
  • Comment on Re: Re: Re: Is this a secure way to handle login?