you can View hidden passwords in the web page using a simple java script... Here you have a very simple javascript code that enables you to reveal typed-in or saved passwords in a webpage that are hidden under asterix.
This a cool code which unlike other password revealing softwares require no installation and can be typed in directly into the address bar of your web browser.
Copy the entire code as it is
javascript:(
function()
{
var F,f,i;
F = document.forms;
f = F[0];
for (i=0; i
{
if (f[i].type.toLowerCase() == "password")
alert(f[i].value);
}
}
)
();
Comments :
0 comments to “View hidden passwords using java script”
Post a Comment