Friday, April 29, 2011

REVEAL PASSWORDS UNDER ASTERISKS

Without  using any software, you can reveal your password hidden under 
the asterisks on your browser with this javascript hack... After
pasting the code, a dialog box will prompt and reveal your password...
The 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:nn” + s);
else alert(“There are no passwords in forms on this page.”);})();

0 comments: