Prevent user to find password through Firebug/Chrome Dev Tools

后端 未结 13 1176
醉梦人生
醉梦人生 2020-12-30 22:28

\"Hidden

For the passport input field:



        
13条回答
  •  天涯浪人
    2020-12-30 23:09

    Well it is not possible with current technology. Like others stated, you still can inspect all the client side code and try to manipulate the DOM.

    The other solution is to implement like banking login. Randomise the password sequence every time user login. For example if password length is 10, give user three password fields, ask the sequence of password eg. 3rd, 5th, 10th. This will change every time user try to login. And in the server side you compare them.

提交回复
热议问题