Does it make security sense to hash password on client end

后端 未结 10 1625
清酒与你
清酒与你 2020-12-23 12:21

If you were to hash a user\'s password prior to sending it across the line and leaving it in plain-text in memory, would this improve the security of the application?

<
10条回答
  •  天命终不由人
    2020-12-23 12:44

    Sending a hashed password won't improve security on your site, as others have pointed out (since you accept a hashed password, all the bad guy needs to know is the hashed version). It's also not really secure, since the bad guy can presumably load your login page and examine the Javascript or Java deployed.

    What it does do is prevents somebody watching the packets from being able to pull out a password, and that is moderately useful. Many people use the same password on multiple sites (I do it for all but the higher security sites), and therefore if you can get one password from them you can log into other accounts on other sites.

    It also prevents the real password from being stored, even temporarily, on your site, and that may provide a little extra security if your site is compromised.

    So, while I'd consider user-side hashing to be potentially a good things, it isn't worth going to much extra trouble.

    And, as others have told you, don't roll your own security. There's far too many things that can go wrong. You won't notice them nearly as fast as a practiced bad guy will.

提交回复
热议问题