Re: [Zope-dev] encrypted _ac_name & _ac_password

2004-12-30 Thread Jens Vagelpohl
The easiest way to solve that is to let the cookie be only a random ticked. That way the userame and password is only sent when actually logging in. This gives as much security as your solution, but it's easier to implement. PluggableUserFolder does, and I think PAS does it do (or at least it

Re: [Zope-dev] encrypted _ac_name & _ac_password

2004-12-30 Thread Lennart Regebro
Declan Shanaghy wrote: I was wondering if my solution to the problem outlined below would be a useful inclusion into the main CMF > code tree? Well, CookieCrumbler *should* be on a downhill path anyway, with PluggableAuthService (PAS) coming strong now, so I would suggest that moving to PAS wou

[Zope-dev] encrypted _ac_name & _ac_password

2004-12-26 Thread Declan Shanaghy
I was wondering if my solution to the problem outlined below would be a useful inclusion into the main CMF code tree? I solved this by encrypting the __ac_name and __ac_password values in the URL and then hacked CookieCrumbler.py to decrypt them before it sets the cookie. The general idea is th