Password Manager: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
No edit summary
 
No edit summary
Line 20: Line 20:
If you want a printed copy of the password then look at [http://forums.mozillazine.org/viewtopic.php?t=618060 this forum thread] and also read [http://edmullen.net/Mozilla/moz_pw.php this web page] (scroll down to #4).<br/>
If you want a printed copy of the password then look at [http://forums.mozillazine.org/viewtopic.php?t=618060 this forum thread] and also read [http://edmullen.net/Mozilla/moz_pw.php this web page] (scroll down to #4).<br/>


Note that Firefox 3 will need a different code. The-edmeister already has the new code for Firefox 3 from me and will shortly make that code available on his new web site. I will add a link in this article if I get that url.
This is the Firefox 3 replacement code (table header and JavaScript) for the code of [http://edmullen.net/Mozilla/display_moz_passwords.html edmullen's site].  <pre>
<table style="empty-cells: show; background-color: rgb(221, 255, 221);" border="1" cellspacing="0">
<tbody><tr style="background-color: rgb(204, 204, 255);">
<td>
<b>Host</b>
</td>
<td>
<b>User name</b>
</td>
<td>
<b>Password</b>
</td>
<td>
<b>Submit URL</b>
</td>
</tr>
 
<script type="text/javascript"> // modified by dickvl for Firefox 3
<!--
  netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
  var passwordmanager = Components.classes["@mozilla.org/login-manager;1"]
.getService(Components.interfaces.nsILoginManager);
  // loads signons into table
  var signons = passwordmanager.getAllLogins({});
  for (i=0;i<signons.length;i++) {
  try {
      var host = signons[i].hostname;
      var user = signons[i].username;
      var password = signons[i].password;
      var submiturl = signons[i].formSubmitURL;
      if (user == ""){user = "<br>";}
      document.write("  <tr>\n    <td> " + host + " </td>\n    <td> " + user + " </td>\n    <td> " +
password + "  </td>\n    <td> " + submiturl + " </td>\n  </tr>\n");
    } catch(e) {
      /* An entry is corrupt. Go to next element. */
    }
  }
-->
</script>
</tbody></table></pre>


== Troubleshooting ==
== Troubleshooting ==

Revision as of 09:19, 11 January 2008

Firefox includes a feature that allows you to save passwords you enter in web forms. This option is enabled by default, under "Tools -> Options -> Security / Passwords -> Remember passwords for sites".

Note: You can choose to use a Master password to protect your passwords, which is highly recommended on a shared computer. See the linked article for details.

Accessing the Password Manager

You can manage your stored passwords using the Password Manager, which you access from the Firefox menu via "Tools -> Options -> Security / Password", by clicking the "Show Passwords" button. This will open the "Remember Passwords" window which lists the web sites and user names for your stored passwords and includes a "Show Passwords" button that lets you view your stored passwords.

Deleting passwords

You can delete passwords in the Password Manager by clicking the "Show Passwords" button to open the window listing the sites and user names for the remembered passwords. Highlight (select) the items that you want to delete and click the "Remove" button (or press the Delete key). Be sure not to click the "Remove All" button as that will remove all the passwords without asking for confirmation in Firefox 2 and below.

Exceptions

The Exceptions button opens a window ("Don't Remember Passwords") that lists the web domains from which you chose never to store passwords. If you later decide later that you do want to store a password from a site on the Exceptions list, you need to remove that entry. That is done in the same way you would delete a password, by highlighting the entry and clicking the "Remove" button (or pressing the Delete key).

Backup and restore passwords

You can make a backup copy of key3.db (Master Password / Encryption key) and signons2.txt (encrypted names and passwords). Firefox 3 will use signons3.txt to store the passwords. See: Profile folder - Firefox and Profile backup for additional information.

You can also use the Password Exporter extension to back up your passwords.

Printing passwords

If you want a printed copy of the password then look at this forum thread and also read this web page (scroll down to #4).

This is the Firefox 3 replacement code (table header and JavaScript) for the code of edmullen's site.

<table style="empty-cells: show; background-color: rgb(221, 255, 221);" border="1" cellspacing="0">
<tbody><tr style="background-color: rgb(204, 204, 255);">
<td>
<b>Host</b>
</td>
<td>
<b>User name</b>
</td>
<td>
<b>Password</b>
</td>
<td>
<b>Submit URL</b>
</td>
</tr>

<script type="text/javascript"> // modified by dickvl for Firefox 3
<!--
   netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
  var passwordmanager = Components.classes["@mozilla.org/login-manager;1"]
.getService(Components.interfaces.nsILoginManager);
  // loads signons into table
  var signons = passwordmanager.getAllLogins({});
  for (i=0;i<signons.length;i++) {
   try {
      var host = signons[i].hostname;
      var user = signons[i].username;
      var password = signons[i].password;
      var submiturl = signons[i].formSubmitURL;
      if (user == ""){user = "<br>";}
      document.write("  <tr>\n    <td> " + host + " </td>\n    <td> " + user + " </td>\n    <td> " +
 password + "  </td>\n    <td> " + submiturl + " </td>\n  </tr>\n");
    } catch(e) {
      /* An entry is corrupt. Go to next element. */
    }
  }
-->
</script>
</tbody></table>

Troubleshooting

If you do not see any passwords in the Password Manager window (Show Passwords) then your passwords are probably lost. If you still see encrypted names and passwords in the file signons2.txt then the likely cause is a wrong or corrupted key3.db file. If you can't add new passwords but still see your old passwords in the Password Manager window then use the Password Exporter extension to export your current passwords and delete both key3.db and signons2.txt in the Profile folder. You can also do that if you lost your Master password and Master password didn't work. You need to set a new Master password after deleting the file key3.db.

See also

  • signons.txt (Firefox 2.0 and 2.0.0.1 and Firefox 1.5.0.9 and below)

External links