Where do I find a dictionary for password validation?

前端 未结 9 1282
春和景丽
春和景丽 2020-12-30 14:29

I am working on a password validation algorithm that needs to check potential passwords against the dictionary. If the password or any part of it can be found in the dictio

相关标签:
9条回答
  • 2020-12-30 15:18

    Check all substrings in the intended password against http://www.dictionary.com

    0 讨论(0)
  • 2020-12-30 15:20

    To verify a strong password, you should do more than just check for words in the dictionary. But if there is not a library already to do this in your platform (what is it by the way?) - simply treat it like you want to do spell checking. If any part of the password passes a spellchecker, it fails.

    Microsoft has a library for spell-checking.

    If you specifically want to use a web service, consider this.

    0 讨论(0)
  • 2020-12-30 15:22

    A couple dictionary/wordlists are available here.

    0 讨论(0)
提交回复
热议问题