Preventing dictionary attacks on a web application

前端 未结 8 1007
一个人的身影
一个人的身影 2021-02-01 20:53

What\'s the best way to prevent a dictionary attack? I\'ve thought up several implementations but they all seem to have some flaw in them:

  1. Lock out a user after X
8条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-01 21:39

    You could disallow passwords that contain dictionary words if you are programming for an application where security is really important. You don't have to allow QWERTY as a valid password.

提交回复
热议问题