Show hidden/masked passwords behind asterisks in firefox
Show hidden/masked passwords behind asterisks in firefox
![]()
revealing passwords
A password is a string of characters or words used for authentication to prove one’s identity or grant access to a restricted area.
Today i’ll post different methods that can be used to reveal/unmask the hidden passwords in a web browser.
Note : This post is strictly for educational purpose only !
The following tricks have been tested in FireFox web browser.
- When you enter your password in a web browser you may find that it gets replaced by asterisks or dots.
- This is a good security measure to prevent others from stealing your login info.
- In some cases, the asterisks will be different when compared to the number of characters of your password.
- This adds additional security to prevent people from guessing your passwords.
But now the real scenario comes into play.
You have used “Remember my password” option in your web browser to store your password.Most modern browsers saves your password on behalf of these websites.
So if you want to change that password to a new one you are required to provide the old password to the website.Since you have used the remember option you might require to reveal the hidden password.In such cases the following tips comes handy. (Note: You may also try forgot my password option in that website if it is available. But this trick is very easy and consumes little or no time)
Trick 1:
javascript:var els = document.getElementsByTagName('input');for(var x = 0; x < els.length; x++) {if(els[x].type.toLowerCase() == 'password' ) {var test = els[x].type = 'text';}}
Enter the above javascript in the address bar of firefox browser. Now the asterisks will be replaced by real password.
(drag this link to your bookmarks toolbar for easier access)
Trick 2:
javascript:void((function(){var%20a,b;b="<"+"html>%5Cn<body>Passwords%20in%20this%20page:<p>%5Cn";(function(c){var%20d,e,f,g,h;for(d=0;d<c.length;d++){try{arguments.callee(c.frames[d]);}catch(i){}}e=c.document.forms;for(f=0;f<e.length;f++){g=e[f];for(h=0;h<g.length;h++){if(g[h].type.toLowerCase()=="password")b+=g[h].value+"<br>%5Cn";}}})(top);b+="</body>%5Cn</html>%5Cn";a=window.open("","","width=200,height=300").document;a.open();a.write(b);a.close();})())
(Note: disable popup blocker. This script can detect iframe passwords.)
(bookmark for trick2)
Trick 3: (not recommended)
Use password revealer applications such as asterisk key .
To safeguard your password:
These tricks mostly work in web browsers but to safeguard you should have physical security control since no security suite will alert for the first two tricks and these cannot be applied for windows password and the like.
Related posts:
- Creating a strong password A good password will…
- Firefox 3 features 1.Firefox 3 uses color profiles…
- Firefox 3 Vulnerabilities Reported Since the new release of…
- Fire up Firefox Mozilla Firefox is an…
- Running programs in a secure mode We are very much worried…
Go to Source
http://feeds.jbi.in/~r/jbi/~3/Q0R8sCN5KAU/

O comments at "Show hidden/masked passwords behind asterisks in firefox"
Comment Now!