Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

Password *** boxes


ghost's Avatar
0 0

Just woundering, with the password boxes with the **** things in them where you type in your password, is there a way to convert that to see whats really there?


ghost's Avatar
0 0

yes…theres other ways then this but when i do it i use the web developer tool…theres an option in there that reveals those boxes


ghost's Avatar
0 0

yeah, check the entensions for firefox on the mozilla website…you can use "reveal passwords" or "unhide passwords" or something like that :P


ghost's Avatar
0 0

i cant find 1 for windows vista :( and someone put a autoform password so i can retrieve it and find out what it is if i can find a program. I try using the registry for autoform and move them to xp but that didnt work lol


ghost's Avatar
0 0

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


ghost's Avatar
0 0

or you can go to Tools > Options > Security > Show Passwords :)

this will give you a list of the usernames and passwords saved for each and every website :)


ghost's Avatar
0 0

i was on enigma the otherday and they have a firefox add on, part of it is a tool to reveal those passwords. (i know enigma and hbh members dont get along so dont bug me i just wanted to check it out and found that they have some info that hbh doesnt tell you)


ghost's Avatar
0 0

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