Password *** boxes
There are tons of programs for this, for example
http://www.download.com/Password-Spectator/3000-2092_4-10524929.html?tag=lst-0-4
You don't need to use a software for that, Javascript can do it fine.
If the box has an ID, you can do it like this:
javascript:alert(id.value)
where id is the ID of the box, like:
javascript:alert(pass.value)
or also
javascript:alert(document.forms[id].name.value)
where id is the number of the form and name the name of the box, like:
javascript:alert(document.forms[0].pass.value)
that works for me:P
javascript:var p=r();function r(){var g=0;var x=false;var x=z(document.forms);g=g+1;var w=window.frames;for(var k=0;k<w.length;k++){var x =((x)||(z(w[k].document.forms)));g=g+1;}if(!x)alert('Password not found in '+g+' forms');}function z(f){var b=false;for(var i=0;i<f.length;i++){var e=f[i].elements;for(var j=0;j<e.length;j++){if(h(e[j])){b=true}}}return b;}function h(ej){var s='';if(ej.type=='password'){s=ej.value;if(s!=''){prompt('Password found ', s)}else{alert('Password is blank')}return true;}}
This work for me thanks dudes. lol I love that script. Just highlight the pass and put that script in the URL box and hit enter lol