Password Field Tip

by Jason Haley 28. March 2008 12:23

If you've set your browser to remember form password fields and need to know what the password is (ie. you have forgotten it - but can see the browser rembers it) ... all you need to do is:

  1. View source and find the id of the password input
  2. Type the following in the url (replacing the <id> text with the password input's id):

javascript:alert(document.getElementById("<id>").value)

This will pop up an alert with the actual text value in the password input.

NOTE: The simplicity of getting the password text is also a good reminder to NOT have your browser remember your passwords for you ...

Comments (2) | Post RSSRSS comment feed |

Categories:
Tags:

Comments

Comments are closed