python自动生成对应位数的密码字典
Posted Jason_WangYing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python自动生成对应位数的密码字典相关的知识,希望对你有一定的参考价值。
写个简单的demo获取相应位数的密码字典,用于强制破解密码的密码字典。
import itertools,string
words = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
def generatePassword(repeat):
for item in itertools.product(words,repeat=repeat):
yield ''.join(item)
def generatePasswordForRepeat(min,max):
for i in range(max-min):
generatePassword(min+i)
# 获取9位密码字典
passwords = generatePassword(9)
print(next(passwords))
# 获取4到9位密码
passwords = generatePasswordForRepeat(4,9)
print(next(passwords))
以上是关于python自动生成对应位数的密码字典的主要内容,如果未能解决你的问题,请参考以下文章