Password Revealer – How To Reveal- Show Password Behind Asterisks?
How To Reveal or Show Password Behind Asterisks in a web page? In almost all websites and web pages which uses log in/password authentication mechanism require user to input his user name and password. In almost all cases the password field or text box will not display what you actually typed. The password you typed will be hidden behind a string of asterisk characters.
If you allow browser to remember password, the next time when you open the log in page ,it will populate the password field with the password you typed earlier.

If you have actually forgotten your password how do you retrieve them? In other words is there any mechanism or tool that can be used to reveal the password behind asterisk string?
Use the Password Reveal bookmarklet
Here is a simple soultion to Reveal- Show Password Behind Asterisks. You can drag and drop this Password Reveal bookmarklet to your browser bookmarks or toolbar.
Next time when you login into some website which uses password field, just type the password and click the “Password Reveal” bookmarklet. This will show you the password existing in the password text field.
Let us check how Password Reveal works
Password Reveal is a JavaScript function. If you are familiar with JavaScript then you can easily understand the program or function. Each log in page or any web page which use enters data to submit to the server has an HTML FORM associated with it. The buttons or text fields or the check boxes etc are HTML components which can be included inside the tag. To enter passwords HTML has a special text field called Password field. What ever you type in the password field will show as asterisks. So if you know JavaScript you can easily traverse through the HTML components present inside the form and display the value of Password field and “alert” that message in a pop-up.
See the JavaScript function below
function revealPassword(){
var message,formss,j,form,i;
message = "";
formss = document.forms;
for(j=0; j<formss.length; ++j) {
form = formss[j];
for (i=0; i<form.length; ++i) {
if (form[i].type.toLowerCase() == "password")
message += form[i].value + "n";
}
if (message)
alert("Here is the passwords in html forms on this page:n" + message);
else
alert("This page doesn't have any HTML password ");
}} |
If you are not familiar with JavaScript don’t worry just drag and drop this
Password Revealer bookmarklet to your browser bookmarks or toolbar.
-
Rahul
Join Globinch on Social Media
Follow Globinch
Popular Posts
- Turn your Windows 7 Computer Into a Personal Wi-Fi Hotspot 20 comment(s) | 26,426 view(s)
- Search Engines for File Sharing Sites : Rapidshare Search, Megaupload and More 2 comment(s) | 18,450 view(s)
- Google Translate Now supports Bengali, Gujarati, Kannada, Tamil and Telugu 2 comment(s) | 17,344 view(s)
- Best PDF OCR Tools to Convert Scanned images to Text / Word Documents 4 comment(s) | 13,605 view(s)
- Google Top Searches Today – Hot Google Search Words today 8 comment(s) | 13,496 view(s)
- Globinch Search 0 comment(s) | 10,377 view(s)
- Access Blocked sites, Unblock Restricted Websites 16 comment(s) | 9,452 view(s)
- Password Revealer – How To Reveal- Show Password Behind Asterisks? 1 comment(s) | 8,515 view(s)
- Play Angry Birds Game Free and Offline in Chrome Browser 1 comment(s) | 8,243 view(s)
- Free Online OCR Software to Convert Images Into Searchable PDF, Doc, HTML or Text 2 comment(s) | 8,082 view(s)
Recent Articles
- 5 Apps to Boost Android Performance
- Building a Smarter Site Using a WordPress Platform
- Samsung Galaxy S IV Smartphone :Summary of All the Radical Innovations
- 5 Killer Tips to Increase Traffic to Your Blog
- Domain Parking to Make Genuine Money Online
- SEO Is Not Dead, But You Need to Upgrade The Process
- A Complete SEO Guide on Using Social Media for Better SERPs
- When Should You Use Geotargeting or Setting Geographic Target in Google Webmaster Tools?
- How To Optimize Your Google+ Page And Profile For Search Engines
- Find Serial Numbers, Backup Product Keys of Installed Application in Windows








