最近本人的一个网站密码忘了,也没有密码找回功能, 正好保存在搜狗浏览器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)();
本文转自成杭 51CTO博客,原文链接:http://blog.51cto.com/hangtc/1670283,如需转载请自行联系原作者