15 February, 2012

How to see the Password Hidden behind the *

Today i'm going to show you how to see the password hidden behind the asterisk in web browser's.

Example of this method would be on http://www.hotmail.com

Username: example@hotmail.com.com
Password: **

What's the password?

To find out the password paste this java script code in the url bar and press enter :)

Code:
javascript:(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();

I hope this helps in someway or another Black Hat enjoy

Labels:

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home