[Webkit-unassigned] [Bug 21053] Safari or Chrome doesn't keep passwords for Typo3 CMS

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Sep 24 06:38:29 PDT 2008


https://bugs.webkit.org/show_bug.cgi?id=21053





------- Comment #1 from ap at webkit.org  2008-09-24 06:38 PDT -------
This probably happens because the page clears out the password field before
submitting the page. It might be possible to work around this, it would be
interesting to know if this works in Firefox or elsewhere.

        function doChallengeResponse(superchallenged) { //
                password = document.loginform.p_field.value;
                if (password)   {
                        if (superchallenged)    {
                                password = MD5(password);       // this makes
it superchallenged!!
                        }
                        str =
document.loginform.username.value+":"+password+":"+document.loginform.challenge.value;
                        document.loginform.userident.value = MD5(str);
                        document.loginform.p_field.value = "";
                        return true;
                }
        }


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list