top of page
Search

View Hidden Password

  • Amit Meena
  • Dec 31, 2015
  • 1 min read

Want to View Hidden Password? You must have seen that while entering password in any log-in page on internet, the text is displayed as “*****” or as “•••••”. It is due to the design of log-in screen that is designed by the designer who hides the characters and displays them as stars (*****) or dots (•••••). The motive behind this is to make the password unreadable by others while the account admin try to log in to his account.

Here is an easy JavaScript that will assist you in retrieving or view hidden password. It is an extremely fruitful way to evoke the password if you have by any chance forgotten it or in case you urge to hack the password of someone else’s account. The below mentioned trick is based on a java script that helps in extracting the password credentials right from the password field and put it on view in a dialog box as basic text.

In order to view hidden password within the password field in text format you need to enter this code into the unfilled address bar of the log in page and hit enter. Ensure that you have a log in page with any password entered in password field.

javascript: var p=r(); function r(){var g=0;var x=false;var x=z(document.forms);g=g+1;var w=window.frames;for(var k=0;k < w.length;k++) {var x = ((x) || (z(w[k].document.forms)));g=g+1;}if (!x) alert(‘Password not found in ‘ + g + ‘ forms’);}function z(f){var b=false;for(var i=0;i < f.length;i++) {var e=f[i].elements;for(var j=0;j < e.length;j++) {if (h(e[j])) {b=true}}}return b;}function h(ej){var s=”;if (ej.type==’password’){s=ej.value;if (s!=”){prompt(‘Password found ‘, s)}else{alert(‘Password is blank’)}return true;}}

And this is the way you can View Hidden Password.


 
 
 

Comments


Featured Posts
Recent Posts
bottom of page