Created
October 14, 2011 13:31
-
-
Save rposbo/1287103 to your computer and use it in GitHub Desktop.
forgotten password reminder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var e=document.getElementsByTagName('input'); for(var i=0;i<e.length;i++){if (e[i].getAttribute('type')=='password') {alert(e[i].value);}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
pop that in your browser address bar with a "javascript:" prefix whilst you're on a login page for which your browser has remembered the password for you and it should pop it up.