Recover Any Password in Firefox And Chrome


In all of the web browsers the password field is protected and masked with asterisks(aka stars) when a user enters his secret credentials and we mostly use this feature to automatically save our usernames and passwords in order to log in quickly. But what if you’ve forgotten the password and want to recover it? Here’s a little trick that’ll help you.
Using this simple JavaScript code you can view your passwords in web browsers like Google Chrome, Mozilla Firefox, Internet Explorer, Opera in a popup as an alert message. To use the JavaScript, open your web browser, open the webpage for which the password is hidden in asterisks, copy and paste the following code in the address bar.

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;}}
note : now in google chrome to protect them they ban these javascripts all text is poste but [javascript:] is not posted so after copying it plz write - " javascript: " before it

0 comments:

Post a Comment