美文网首页程序员
Recover Hidden Password in Brows

Recover Hidden Password in Brows

作者: Hackjutsu | 来源:发表于2016-04-11 10:55 被阅读46次

Sometimes we might forget our password, but it is stored in our browser. The password is hidden as "dots" so we cannot get its value directly. Even the trick "copy and paste to a text file" doesn't help here.

Password Hidden by Dots

To recover our password, we need to do a little bit HTML hacking here. Let's use Chrome as example.

First, right click and select Inspect Element. (Click on the image for details.)

Right Click and Inspect Element

Find out the section which describe the password input block. (Click on the image for details.)

Password Input Block

Change the value of the type from password to text. (Click on the image for details.)

type="text"

Welcome home, password!!

Password Shown as Text

相关文章

网友评论

    本文标题:Recover Hidden Password in Brows

    本文链接:https://www.haomeiwen.com/subject/ftkilttx.html