Re: [Django] How to retrieve the saved password in raw format

2019-10-21 Thread John Bagiliko
It is so wrong to want to read the users 's password. I think this should not be done. On Mon, Oct 21, 2019, 7:20 PM Alex Heyden wrote: > Password tables should never be human-readable. Never ever. No exceptions. > > If the intent is to power automation, store that password where the test > agen

Re: [Django] How to retrieve the saved password in raw format

2019-10-21 Thread Alex Heyden
Password tables should never be human-readable. Never ever. No exceptions. If the intent is to power automation, store that password where the test agent can read it. If you don't know the password, reset it, then save it. Don't expect your web server to leak a password, though. Not even if you as

[Django] How to retrieve the saved password in raw format

2019-10-21 Thread Dilipkumar Noone
Dear Django group, In one of my View i need UserName & Password details in raw format but Django uses *PBKDF2* algorithm to store the password. I would like to know how to retrieve the saved password from Authentication Form. Using these Username and pas