查看 搜狗浏览器 保存的本地密码

最近本人的一个网站密码忘了,也没有密码找回功能, 正好保存在搜狗浏览器cookie中,


下面用简单的方法就可以显示密码:



在地址栏中输入


javascript:(function()%7bvar s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) %7b f = F%5bj%5d; for (i=0; i<f.length; ++i) %7b if (f%5bi%5d.type.toLowerCase() == "password") s += f%5bi%5d.value + "\n"; %7d %7d if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");%7d)();


你可能感兴趣的:(JavaScript,function,cookie,密码找回,搜狗浏览器)