Samay Bhavsar

Blog


Recover, Reveal your password saved in the Browser

March 3, 2010 by samay

A small Javascript snippet which I found on the internet does this job for you. Copy this script and store it as bookmark or paste it in the address bar to reveal password.

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.");})();
Category:

1 Comment

  1. Thank-You……

    Comment by Nandan — March 8, 2010 @ 9:41 pm

RSS feed for comments on this post.

Sorry, the comment form is closed at this time.