How to make visible all your forgotten passwords hidden behind asterisk

If you use a lot of online services it also means that you have got a lot of passwords and usernames to remember. Aware of this issue, all Internet browsers have got a special feature which, as soon as you login your email account for example,  prompt you to save password and username so that, next time you will use the service again, the browser will fill in the login interface for you. However, while the username is fully displayed, the password is hidden by asterisks. Now, if for any reason you don’t remember such a password you won’t have any way to recover it. Usually, to get it back, you will have to buy a special piece of software. Recently, I have found an interesting, amazing piece of code which will make visible all your forgotten passwords hidden behind asterisk in your browser…in a couple of seconds and without spending a dime!

The piece of code I am going to show you works with all Internet browsers including: Internet Explorer, Firefox, Google Chrome, Safari etc. Here is the procedure to follow to reveal your passwords:

  1. Open your browser.
  2. Go to the Web page containing the login in form where you saved your password.
  3. Copy and paste the following piece of code to your browser address bar:
  4. javascript:(function(){var s,F,j,f,i; s = “”; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == “password”) s += f[i].value + “n”; } } if (s) alert(“Passwords in forms on this page:” + s); else alert(“There are no passwords in forms on this page.”);})();
  5. Press Enter.
  6. As soon as you press Enter, the browser will display a window containing the password!
Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.