vote up 6 vote down star
3

Saving and auto-filing of username/password is a feature of most modern browsers. And the user can generally choose to disable this feature on a per domain basis. But is there a standard way for the site itself to prevent password caching?

The emphasis here is cross-browser, so I would employ multiple parallel mechanisms if necessary.

(I have seen caching be effectively disabled in the presence of non-standard login fields, eg, an extra hidden password field. But I'd rather not depend on side-effects whose behavior could unexpectedly change in the future.)

Conversely, are there browsers/versions out there that implement password caching without any disable feature?

flag

79% accept rate
What do you want to achieve exactly? Forcing the user to remember password, or preventing attackers from harvesting stored passwords at the user side? – PolyThinker Dec 26 '08 at 16:09
1  
Mine is not to reason why, mine is but to implement and deploy. (But probably the later.) Customer: disa.mil – Chris Noe Dec 27 '08 at 0:30
1  
You should be using CAC only ;) – sylvarking Dec 27 '08 at 5:18

4 Answers

vote up 7 vote down check

Add autocomplete="off" to your <input> elements. Works in all modern browsers, IIRC.

link|flag
Ah, now see I was expecting something like cache=off. I'll have to test to make sure that the passwords don't make it to disk - as opposed to just being excluded from autocomplete ... – Chris Noe Dec 26 '08 at 16:29
vote up 1 vote down

I would imagine that browsers save a form's fields when the form is submitted. What if you used AJAX to get the value of the password field, send it, then clear the field? The form would never actually be submitted, so the browser would, theoretically, never have an opportunity to save the values.

link|flag
Anyone done any testing on this answer? I like the theory just want to know if its true. – gnarf Jul 18 at 9:43
vote up 0 vote down

Give the password input a randomly generated name that only you can recognize. Store that name, for example, in a hidden field, and then use that to get the inserted password. That way, even if the browser does cache the password, it won't be able to bring it back up next time the user visits.

Your users will likely at this point proceed to cache the passwords on a postit on the side of the monitor, but that's really a whole different battle.

The same method works well against spam, since most bots rely on finding common field names.

link|flag
Intriguing. But the browser will still end up storing passwords on the user's disk, which is a security breach for us. (And, oh, I agree with you on the postit theory.) – Chris Noe Dec 26 '08 at 15:52
what a ridiculous suggestion – Andrew Bullock Oct 13 at 9:57
vote up 0 vote down

AFAIK, masked fields (ones that show '*' instead of the symbol you type) are never saved for autocomplete. Do you want to prevent the user from remembering the password to your site in the browser's password-saving facilities?

link|flag
Correct, prevent storing in the password-saving facility. – Chris Noe Dec 26 '08 at 16:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.