Your Internet Explorer is too old :( Please upgrade to latest IE or switch to Firefox/Google Chrome for better view!

October 18, 2011

Unmask Password on Web Pages

When you enter password on web pages, it is always in plain text. It’s just hidden behind the asterisks ‘*’ or bullets ‘•’.
Sometimes peoples let web browser remember their passwords and username, but it may be dangerous if peoples share their computers with others because except Internet Explorer you can see stored password almost in any browser.
And here is a simple javascript, which allows you to see password behind asterisks or say it’ll unmask password.

unmask password javascript
Copy and paste this javascript in address bar when web page is open and contain password. Script will check all the forms in web page and if any password is there, it will be unmasked and a pop up box will show you all the passwords. It works almost with every web browser.




Copy this javascript and paste to address bar then hit enter:


How it is working:
actually when you type your password on a web page it is always like you typing in html text box, the only difference is unreadable but not encrypted till you don’t send it on a secure connection. So this java script allows you to see the value of html password filed.

These are the steps will explain the script:
  1. for(j=0; j<form_nos.length; ++j)
    This loop is finding total number of forms on the web page, if found then will process each form.
  2. for (i=0; i<form_itm.length; ++i)
    This loop will find the entire elements in each form, and will process every element of the form.
  3. if (form_itm[i].type.toLowerCase() == "password")
    Now if element is password field then store the values in a variable (next line).
  4. Display if variable contains something else says nothing to show.
Hope it will help you to understand the script so you can modify it for better result.

Update #1  (Dec-01-2011) 
Mozilla Firefox's latest versions are not supporting execution of JavaScript right from the address bar, for security reasons. But you can bypass this feature:
> create a new bookmark.
> paste the script in location of bookmark.
> add bookmark.
Now to run the script click on bookmark you've added.

0 comments:

Post a Comment