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.
Sign up or join Globinch on Social Media
Stay Connected
Follow globinch
Popular Posts
- Search Engines for File Sharing Sites : Rapidshare Search, Megaupload and More 6 comment(s) | 16258 view(s)
- Turn your Windows 7 Computer Into a Personal Wi-Fi Hotspot 15 comment(s) | 16117 view(s)
- Google Translate Now supports Bengali, Gujarati, Kannada, Tamil and Telugu 2 comment(s) | 15714 view(s)
- Google Top Searches Today – Hot Google Search Words today 12 comment(s) | 11559 view(s)
- Best PDF OCR Tools to Convert Scanned images to Text / Word Documents 20 comment(s) | 10154 view(s)
- Globinch Search 0 comment(s) | 8401 view(s)
- Access Blocked sites, Unblock Restricted Websites 15 comment(s) | 7310 view(s)
- Free Online OCR Software to Convert Images Into Searchable PDF, Doc, HTML or Text 3 comment(s) | 7238 view(s)
- Password Revealer – How To Reveal- Show Password Behind Asterisks? 7 comment(s) | 7180 view(s)
- Play Angry Birds Game Free and Offline in Chrome Browser 1 comment(s) | 7049 view(s)
Recent Articles
- Best Free Tools to Enlarge Images without Losing Quality
- How to Track Your Gmail Email and Schedule Gmail Mail Free?
- Google Webmaster Unnatural Links Detected Warning & Penalty
- How to Use Trial Software Version Forever Without Expire
- How to Use Folder as Drive or Convert Folder to Drive?
- Add Buttons, Message Boxes and Text Highlights in WordPress Post
- Top 20 Free WordPress Social Share Plugins
- rel=”shortlink” Short URL Indicator and Its WordPress Support
- Pagination SEO Using rel=”next” and rel=”prev” Link Attributes
- Watch Live IPL 2012 Season 5 Online on Your Computer or Mobile










Pingback: How To: Press This to Quickly publish WordPress Blog Post | Globinch
Pingback: Top Ten Tips to Keep Your Passwords Safe and Strong | Globinch
Pingback: Backup Browser Bookmarks - Firefox, Chrome, IE, Safari and more.. | Globinch
Pingback: 2-Step Sign-In Security - More Effective Google Account security | Globinch
Pingback: Google Chrome: How to Protect your synced website passwords | Globinch
Pingback: Must Do Tips To Secure Wordpress Blog and Site | Globinch