Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

One of the joys of working for a government healthcare agency is having to deal with all of the paranoia around dealing with PHI (Protected Health Information). Don't get me wrong, I'm all for doing everything possible to protect people's personal information (health, financial, surfing habits, etc.), but sometimes people get a little too jumpy.

Case in point: One of our state customers recently found out that the browser provides the handy feature to save your password. We all know that it has been there for a while and is completely optional and is up to the end user to decide whether or not it is a smart decision to use or not. However, there is a bit of an uproar at the moment and we are being demanded to find a way to disable that functionality for our site.

Question: Is there a way for a site to tell the browser not to offer to remember passwords? I've been around web development a long time but don't know that I have come across that before.

Any help is appreciated.

Thanks, Matt

share|improve this question
2  
You should provide a greasemonkey-script so people can re-enable it. I don't think users like to be forced to type the password every time... – ThiefMaster Dec 20 '11 at 12:38
3  
The question deserves an upvote for being useful and clear. On the other hand i don't want people to find a solution to this "problem". – Ian Boyd Jun 22 '12 at 19:02

20 Answers

up vote 171 down vote accepted

I'm not sure if it'll work in all browsers but you should try setting autocomplete="off" on the form.

<form id="loginForm" action="login.cgi" method="post" autocomplete="off">

The easiest and simplest way to disable Form and Password storage prompts and prevent form data from being cached in session history is to use the autocomplete form element attribute with value "off".

From http://developer.mozilla.org/En/How_to_Turn_Off_Form_Autocompletion

Some minor research shows that this works in IE to but I'll leave no guarantees ;)

@Joseph: If it's a strict requirement to pass XHTML validation with the actual markup (don't know why it would be though) you could theoretically add this attribute with javascript afterwards but then users with js disabled (probably a neglectable amount of your userbase or zero if your site requires js) will still have their passwords saved.

Example with jQuery:

$('#loginForm').attr('autocomplete', 'off');
share|improve this answer
20  
Just a quick comment, since this is changing, HTML5 adds the autocomplete attribute to the spec, so it is valid now. – Tyler Egeto Jan 10 '11 at 1:32
2  
firefox (3.6.15) doesnt seem to be regarding the autocomplete="off" at all. I tried adding that to both the form and the password field, but it still fills the pwd when i press tab on the username field. I alos tried changing the name attribute of the pwd field to something else, but looks like it uses the type="password" attribute (though i read it matches the 'name' attribute). That too doesnt work. Any thing else i can try? – hese Mar 9 '11 at 21:56

Use real two-factor authentication to avoid the sole dependency on passwords which might be stored in many more places than the user's browser cache.

share|improve this answer
btw it's authentication not authentification – Jonathan. Dec 26 '11 at 22:43
thanks, Jonathan – David Schmitt Dec 27 '11 at 14:08
4  
@Jonathan Pity, i prefer authentification – Ian Boyd Jun 22 '12 at 19:04

You can prevent the browser from matching the forms up by randomizing the name used for the password field on each show. Then the browser sees a password for the same the url, but can't be sure it's the same password. Maybe it's controlling something else.

Update: note that this should be in addition to using autocomplete or other tactics, not a replacement for them, for the reasons indicated by others.

share|improve this answer
2  
[@Joel](#32409) that might prevent the form from being auto-populated but would that prevent the browser from then asking to save the password for this supposed new form? – Joseph Pecoraro Aug 28 '08 at 14:32
I don't believe this will work now. In FF 13, I have a form with several password fields, all with different names. FF, once it saves a password for that page, sticks the saved password into ALL of the password fields. It does not care what the name of the fields are (I have "new_password" and "old_password" for example, and the saved password gets dumped into both of them). In this particular form I don't have a username to save the password against - just two password fields, in case that makes a difference. – Jason Jul 19 '12 at 10:31

Not really - the only thing you could realistically do is offer advice on the site; maybe, before their first time signing in, you could show them a form with information indicating that it is not recommended that they allow the browser to store the password.

Then the user will immediately follow the advice, write down the password on a post-it note and tape it to their monitor.

share|improve this answer
1  
You have to remember this is a government site, and such things are politically charged. If someone up high says, "it must not work like this", then what is realistic is not a part of the equation. The problem may be moved to Post-It notes, but the policy on those is for a different department to handle - the problem has been moved on ;-) And I'm actually being serious. – Jason Jul 19 '12 at 10:39

I had been struggling with this problem a while, with a unique twist to the problem. Privileged users couldn't have the saved passwords work for them, but normal users needed it. This meant privileged users had to log in twice, the second time enforcing no saved passwords.

With this requirement, the standard autocomplete="off" method doesn't work across all browsers, because the password may have been saved from the first login. A colleague found a solution to replace the password field when it was focused with a new password field, and then focus on the new password field (then hook up the same event handler). This worked (except it caused an infinite loop in IE6). Maybe there was a way around that, but it was causing me a migraine.

Finally, I tried to just have the username and password outside of the form. To my surprise, this worked! It worked on IE6, and current versions of Firefox and Chrome on Linux. I haven't tested it further, but I suspect it works in most if not all browsers (but it wouldn't surprise me if there was a browser out there that didn't care if there was no form).

Here is some sample code, along with some jQuery to get it to work:

<input type="text" id="username" name="username"/>
<input type="password" id="password" name="password"/>

<form id="theForm" action="/your/login" method="post">
  <input type="hidden" id="hiddenUsername" name="username"/>
  <input type="hidden" id="hiddenPassword" name="password"/>
  <input type="submit" value="Login"/>
</form>

<script type="text/javascript" language="JavaScript">
  $("#theForm").submit(function() {
    $("#hiddenUsername").val($("#username").val());
    $("#hiddenPassword").val($("#password").val());
  });
  $("#username,#password").keypress(function(e) {
    if (e.which == 13) {
      $("#theForm").submit();
    }
  });
</script>
share|improve this answer
That looks like a good solution. It makes sense since the form that you send down does not itself include a password. I suppose to be sure you could have two forms, the first one just to ensure that the username and password are visible in all browsers. – Alexis Wilke Dec 16 '12 at 8:47

One way I know is to use (for instance) JavaScript to copy the value out of the password field before submitting the form.

The main problem with this is that the solution is tied to JavaScript.

Then again, if it can be tied to JavaScript you might as well hash the password on the client-side before sending a request to the server.

share|improve this answer
Hashing on the client side is no substitute for hashing on the server side. I'm uncertain as to whether it's any help at all (if done in addition). – Brilliand May 24 '12 at 8:05
Allowing hashing on the client side is dangerous because it means that an attacker doesn't need to crack the password from the hash, they can just use the hash to log in. The hash becomes password-equivalent. – rjmunro Sep 11 '12 at 10:18
I agree with Brilliand that the hash on the client is useful only if you also have a hash on the server before saving the password in your database. However, having a hash on the client side can help a certain amount of problems with men in the middle. This being said, since the code will be available (at least on public sites) to hackers, it probably isn't as useful as it may seem. – Alexis Wilke Dec 16 '12 at 8:54

Markus raised a great point. I decided to look up the autocomplete attribute and got the following:

The only downside to using this attribute is that it is not standard (it works in IE and Mozilla browsers), and would cause XHTML validation to fail. I think this is a case where it's reasonable to break validation however. (source)

So I would have to say that although it doesn't work 100% across the board it is handled in the major browsers so its a great solution.

share|improve this answer
i'm having this problem of validating as per the w3c standards. The thing is I want this functionality for a Mobile banking website. I've an assumption that mobile browsers are strict enough and may sometimes mess up the form if some invalid attribute is being used. What do you recommend in this case? – asgs Mar 8 '10 at 6:56
1  
I think that is an old style of thinking. Many recent mobile browsers are built off of WebKit and either support or gracefully ignore this attribute. I am not aware of how other countries, or browsers in older cell phones handle this but gracefully handling attributes / elements that are not known is fundamental to the a good browser. It "future proofs" the browser to not break as the web evolves. It may fall behind (not implementing new features) but it won't break. Hope that helps =) – Joseph Pecoraro Apr 10 '10 at 23:58
It should be rather a comment to the referred answer than an answer to the question itself. – Török Gábor Dec 16 '10 at 13:05

What I have been doing is a combination of autocomplete="off" and clearing password fields using a javascript / jQuery.

jQuery Example:

$(function() { 
$('#PasswordEdit').attr("autocomplete", "off");
setTimeout('$("#PasswordEdit").val("");', 50); 
});

By using setTimer() you can wait for the browser to complete the field before you clear it, otherwise the browser will always autocomplete after you've clear the field.

share|improve this answer
1  
@Howard: you can format your code by selecting it in the editor and pressing Control-K. – John Saunders Mar 31 '10 at 19:16

Just so people realise - the 'autocomplete' attribute works most of the time, but power users can get around it using a bookmarklet.

Having a browser save your passwords actually increases protection against keylogging, so possibly the safest option is to save passwords in the browser but protect them with a master password (at least in Firefox).

share|improve this answer

I can see how you may want to prevent users from inadvertently saving passwords on public computers to sensitive websites. However, I believe the side-effects are even worse, and that there should be a Firefox option to override the override. And after some searching here it is. You can either override it permanently or use a bookmarklet to allow it per site.

http://www.mydigitallife.info/2008/08/16/fix-firefox-does-not-save-store-or-remember-password-on-some-sites-permanently-for-always-auto-complete/

share|improve this answer

autocomplete="off" works for most modern browsers, but another method I used that worked successfully with Epiphany (a WebKit-powered browser for GNOME) is to store a randomly generated prefix in session state (or a hidden field, I happened to have a suitable variable in session state already), and use this to alter the name of the fields. Epiphany still wants to save the password, but when going back to the form it won't populate the fields.

share|improve this answer

IMHO,
The best way is to randomize the name of the input field that has type=password. Use a prefix of "pwd" and then a random number. Create the field dynamically and present the form to the user.

Your log-in form will look like...

<form>
   <input type=password id=pwd67584 ...>
   <input type=text id=username ...>
   <input type=submit>
</form>

Then, on the server side, when you analyze the form posted by the client, catch the field with a name that starts with "pwd" and use it as 'password'.

share|improve this answer
Note that won't prevent the user from Saving the password, which is the main problem here. If we can avoid the saving, then we're good. Because avoiding the pre-fill in itself is not really useful, the password was saved somewhere. Actually, in your case the user could save it each time and litter their browser of their top-secret password... – Alexis Wilke Dec 16 '12 at 8:51

Is there a way for a site to tell the browser not to offer to remember passwords?

The website tells the browser that it is a password by using <input type="password">. So if you must do this from a website perspective then you would have to change that. (Obviously I don't recommend this).

The best solution would be to have the user configure their browser so it won't remember passwords.

share|improve this answer
2  
How is it obvious that you do not recommend changing a input type field? An elaboration of security issues would be helpful. – Karl Nov 30 '08 at 20:35
@karl: because having to type the password in the open allows "shoulder surfing", the process of gleaning a password by looking at the screen whil it is being typed. – David Schmitt Jan 22 '10 at 10:14
Not just human shoulder surfing, but spyware or viruses can watch your screen and see what has been typed in plaintext fields. – Karl Jan 22 '10 at 11:48
4  
@karl: If you've got spyware/virus on your computer then no amount of asterisk protection is going to save you. It's no more difficult for an installed app to intercept what's being typed into a 'password' field than it is to do the same for a plain-text field. – Markus Olsson Jan 22 '10 at 11:59
2  
Also, if the browser sees a regular text input instead of a password input, it's likely to stash the password in the form autocomplete database instead of the password database ... and then suggest it or even autofill it on some unrelated website! So you're actually even worse off than when you started. – Zack Mar 15 '11 at 0:16

The website tells the browser that it is a password by using type="password".

So, we just need to make unwanted fields invisible like this:

...
<form action="url" method="post">

<!-- prevent autopaste { -->
<div style="display: none;">
   <input name="l" type="text" />
   <input name="p" type="password" />
</div>
<!-- } -->

    <table>
        <tr>
            <td>signup_nick</td>
            <td><input name="login" type="text" value=""/></td>
...

If we want to prevent browser ‘Save Password’ functionality - just use JS & AJAX like google :)

share|improve this answer

I haven't had any issues using this method:

Use autocomplete="off", add a hidden password field and then another non-hidden one. The browser tries to auto complete the hidden one if it doesn't respect autocomplete="off"

share|improve this answer

In my experience, if you use Firefox on a site, and it caches the password, and then you LATER add the autocomplete="off", it appears to have no effect. It is as if Firefox takes this to mean "don't put the password in my cache" - such that if it is already remembered, it still auto-completes it.

For testing, create a new user after you have enabled autocomplete="off" and see if firefox will behave as expected.

share|improve this answer

If you do not want to trust the autocomplete flag, you can make sure that the user types in the box using the onchange event. The code below is a simple HTML form. The hidden form element password_edited starts out set to 0. When the value of password is changed, the JavaScript at the top (pw_edited function) changes the value to 1. When the button is pressed, it checks the valueenter code here before submitting the form. That way, even if the browser ignores you and autocompletes the field, the user cannot pass the login page without typing in the password field. Also, make sure to blank the password field when focus is set. Otherwise, you can add a character at the end, then go back and remove it to trick the system. I recommend adding the autocomplete="off" to password in addition, but this example shows how the backup code works.

<html>
  <head>
    <script>
      function pw_edited() {
        document.this_form.password_edited.value = 1;
      }
      function pw_blank() {
        document.this_form.password.value = "";
      }
      function submitf() {
        if(document.this_form.password_edited.value < 1) {
          alert("Please Enter Your Password!");
        }
        else {
         document.this_form.submit();
        }
      }
    </script>
  </head>
  <body>
    <form name="this_form" method="post" action="../../cgi-bin/yourscript.cgi?login">
      <div style="padding-left:25px;">
        <p>
          <label>User:</label>
          <input name="user_name" type="text" class="input" value="" size="30" maxlength="60">
        </p>
        <p>
          <label>Password:</label>
          <input name="password" type="password" class="input" size="20" value="" maxlength="50" onfocus="pw_blank();" onchange="pw_edited();">
        </p>
        <p>
          <span id="error_msg"></span>
        </p>
        <p>
          <input type="hidden" name="password_edited" value="0">
          <input name="submitform" type="button" class="button" value="Login" onclick="return submitf();">
        </p>
      </div>
    </form>
  </body>
</html>
share|improve this answer

Another solution is to make the POST using an hidden form where all the input are of type hidden. The visible form will use input of type "password". The latter form will never be submitted and so the browser can't intercept at all the operation of login.

share|improve this answer

autocomplete="off" work fine, but what about the already saved password.

Like i have saved password for some user.it get saved into browser. Then i implemented autocomplete="off" property,now it will work fine for new users or for those who have not saved there password into browser.

but what about the already saved password.?

share|improve this answer

You could make a ridiculous form in javascript with editable divs instead of input elements. You would have to mask the password yourself but that isn't hard using key events. Just concatenate the value of the key pressed into some variable and have the div display an asterisk. Tada! Then when the user clicks the submit button you can send the data using XMLHttpRequest and FormData. The browser will never see a form or password input element so it won't try to remember squat. As an added bonus, this will disable biometric devices like fingerprint scanners because they too rely on ACCESSIBILITY.

XD

This is the real solution, you tell the customer / boss that they're going about it the wrong way. That they should be using ssl, issuing certificates to users, and requiring insane passwords that are impossible to remember. Then, the passwords should be encrypted on disk and the biometric scanner can whip them out with the swipe of a finger but, only the right finger on a computer with the right certificate will be able to provide the proper credentials. This will actually be SECURE, ACCESSIBLE, and SUPER EASY FOR USERS TO USE.

For an added layer of security, the application can blacklist all IP addresses except those of known valid users. A hacker would be forced to get inside the trusted network somehow, dupe the encrypted certificate, guess the password correctly (make it 500 chars of random unicode) while a user would simply have to have IT assign their fingerprint to their workstation, laptop, tablet, etc. Even if the hacker is sitting right there in front of the computer with the good cert on the proper network, nobody knows the massive password, not even the user.

:O

Nevermind all that super difficult security stuff! The mangling of the form is easy enough to implement. They'll just start writing the passwords on post-it notes and leaving them laying around the office again. I suppose that does make it a little tougher on a hacker, no more autofill on forms after hacking through the user authentication on the workstation. I mean, they'd have to look at the post-it next to the keyboard and type user:bob, password:Password$1 in by hand... THWARTED!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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