Sunday 29 September 2013

How 2 reveal Passwords in Web Browsers???

How to reveal Hidden Passwords in WebBrowsers....

Starting off with Google chrome, the easiest way to reveal the original passwords behind the asterisk is using inbuilt Inspect element feature in the browser.


You just need to right click on the password field in the browser where you will get an option "Inspect Element". 
After clicking on it, "Web Inspector" will open out and there you can see some code which is basically Html code and you just need to replace the "password" word with "text" word and it will reveal the words behind the asterisks.




There’s another way using JavaScript which is quite quick and easy as compared to above method. Just open a site that allows users to login and after typing the password, just enter the following JavaScript code in the address bar.
Javascript: alert(document.getElementById('Passwd').value);
Note:(check if "javascript:" is added to ur url or not.........otherwise type it urself) 


After entering the above code in the address bar, press enter and it will pop up a window with your password written on it







0 comments:

Post a Comment