If you ever come across a page having a password saved on it or you had typed the password but u can only see the asterisk sign , by a simple java script you can unmask them...
javascript: alert(document.getElementById('Passwd').value);
Just copy above code and paste it in ur browsers address bar (navigation bar or url bar).
They press enter and you will see a prompt like this!
Of course your password may be different!
There is one more similar script! This will change HTMLs <input> tags “type” attribute from “password” to “text”!
javascript: alert(document.getElementById('Passwd').type='text');
On hitting enter you will see a prompt, just ignore it and look at screen… The password field will be unmasked any now and look like this…
There is one more similar script! This will change HTMLs <input> tags “type” attribute from “password” to “text”!
javascript: alert(document.getElementById('Passwd').type='text');
On hitting enter you will see a prompt, just ignore it and look at screen… The password field will be unmasked any now and look like this…
0 comments:
Post a Comment