where do browsers store passwords and username when we opt for remember password. Is it always cookies or some other encrypted file.Also where is the data filled by auto complete functionality of browsers come from. It doesn't seem to come from cookies as same auto-complete info sometimes appears in fields of websites other than those it was previously filled in. Is it possible to retrieve data from browser itself(sensitive as well as the general one)?
相关问题
- Views base64 encoded blob in HTML with PHP
- Is there a way to play audio on a mobile browser w
- HTML form is not sending $_POST values
- implementing html5 drag and drop photos with knock
- How can I implement password recovery in an iPhone
Depends on the browser
If it is the browser feature, then it will never be a cookie.
If it is a website feature, then it will depend on the website (but is likely to be a cookie)
Depends on the browser
Not if you are Joe Arbitrary Website, that would be a disturbing security hole.
Password that are autocompleted by the browser are NOT saved in cookies.
Some old documentation for firefox:
But why do you even want to do that ? There is no way for example in javascript to read the passwords from the users system.
They're probably worried about security as in using auto fill with important information having cookies would give the user more control over information given out by the user. I'm sure the way it's set up now it's protected under contractual law.