Skip to content Skip to sidebar Skip to footer

Where Do Browsers Save/store Auto Fill Data

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 f

Solution 1:

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.

Solution 2:

where do browsers store passwords and username when we opt for remember password.

Depends on the browser

Is it always cookies or some other encrypted file.

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)

Also where is the data filled by auto complete functionality of browsers come from.

Depends on the browser

Is it possible to retrieve data from browser itself(sensitive as well as the general one)?

Not if you are Joe Arbitrary Website, that would be a disturbing security hole.

Solution 3:

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.

Post a Comment for "Where Do Browsers Save/store Auto Fill Data"