python密码字典生成库_Python生成MD5密码字典库

该博客介绍了如何使用Python创建一个密码字典生成库,通过组合不同字符生成指定长度的密码,然后进行MD5、Base64等哈希运算,并将结果保存到TXT文件中。主要涉及的步骤包括定义字符集、生成密码组合、计算哈希值以及写入文件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

功能介绍:

把虽有的字符作为密码种子

然后拼接成指定长度的密码

再进行hash base64 等操作

最后把结果保存在一个TXT文档里面

思路:

1.得到组成字典的字符 words

2.根据长度和words 组成密码

3.进行hash计算并保存结果

#-* coding: utf-8 -*

import hashlib

import base64

import itertools as its

import os

reload(sys)

chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"

specialChars = '~!@#$%^&*()_+{}|:"<>?`-=[]\;\',./'

numbers = "1234567890"

words = chars + specialChars + numbers

def get_FileSize(filePath):

filePath = unicode(filePath,'utf8')

if os.path.isfile(filePath):

fsize = os.path.getsize(filePath)

fsize = fsize / float(1024 * 1024)

return round(fsize, 2)

return 0

def MD5(s):

m2 = hashlib.md5()

m2.update(s)

return m2.hexdigest()

def write2File(p,s):

f = open(p, 'a')

f.write(s)

f.close()

filePath = '/Users/MacOS/Documents/'

def createHash(cs,lenth):

r =its.product(cs,repeat=lenth)

fileIndex = 0

for i in r:

str_plaintext = ''.join(i) #明文

str_md5_32 = MD5(str_plaintext)

str_md5_16 = str_md5_32[8:24]

str_md5_32_md5_32 = MD5(str_md5_32)

str_md5_32_md5_16 = str_md5_32_md5_32[8:24]

str_md5_16_md5_32 = MD5(str_md5_16)

str_md5_16_md5_16 = str_md5_16_md5_32[8:24]

str_md5_16_base64 = base64.b64encode(str_md5_16)

str_md5_16_base64_md5_32 = MD5(str_md5_16_base64)

str_md5_16_base64_md5_16 = str_md5_16_base64_md5_32[8:24]

str_md5_32_base64 = base64.b64encode(str_md5_32)

str_md5_32_base64_md5_32 = MD5(str_md5_32_base64)

str_md5_32_base64_md5_16 = str_md5_32_base64_md5_32[8:24]

# Base64

str64 = base64.b64encode(str_plaintext)

str64_md5_32 = MD5(str64)

str64_md5_16 = str64_md5_32[8:24]

str64_md5_32_MD5_32 = MD5(str64_md5_32)

str64_md5_32_MD5_16 = str64_md5_32_MD5_32[8:24]

str64_md5_16_MD5_32 = MD5(str64_md5_16)

str64_md5_16_MD5_16 = str64_md5_16_MD5_32[8:24]

str64_md5_16_base64 = base64.b64encode(str64_md5_16)

str64_md5_16_base64_md5_32 = MD5(str64_md5_16_base64)

str64_md5_16_base64_md5_16 = str64_md5_16_base64_md5_32[8:24]

str64_md5_32_base64 = base64.b64encode(str64_md5_32)

str64_md5_32_base64_md5_32 = MD5(str64_md5_32_base64)

str64_md5_32_base64_md5_16 = str64_md5_32_base64_md5_32[8:24]

'''

Save 2 File

'''

fileName = str(lenth) + '_' + str(fileIndex) + '.txt'

fileSize = get_FileSize(filePath + fileName)

if fileSize > 10 * 1024:# 10G

fileIndex = fileIndex + 1

fileName = str(lenth) + '_' + str(fileIndex) + '.txt'

values = \

str_plaintext + \

' ' + str_md5_32 + \

' ' + str_md5_16 + \

' ' + str_md5_32_md5_32 + \

' ' + str_md5_32_md5_16 + \

' ' + str_md5_16_md5_32 + \

' ' + str_md5_16_md5_16 + \

' ' + str_md5_16_base64 + \

' ' + str_md5_16_base64_md5_32 + \

' ' + str_md5_16_base64_md5_16 + \

' ' + str_md5_32_base64 + \

' ' + str_md5_32_base64_md5_32 + \

' ' + str_md5_32_base64_md5_16 + \

' ' + str64 + \

' ' + str64_md5_32 + \

' ' + str64_md5_16 + \

' ' + str64_md5_32_MD5_32 + \

' ' + str64_md5_32_MD5_16 + \

' ' + str64_md5_16_MD5_32 + \

' ' + str64_md5_16_MD5_16 + \

' ' + str64_md5_16_base64 + \

' ' + str64_md5_16_base64_md5_32 + \

' ' + str64_md5_16_base64_md5_16 + \

' ' + str64_md5_32_base64 + \

' ' + str64_md5_32_base64_md5_32 + \

' ' + str64_md5_32_base64_md5_16

write2File(filePath + fileName, values+'\n')

createHash(words,4)

Python密码字典生成器可以通过Python编写一个脚本来实现。以下是一个简单的示例: ```python import itertools import argparse def generate_passwords(template_file, keywords, special_chars, output_file): # 读取模板文件 with open(template_file, 'r') as f: template = f.read().strip() # 生成关键字排列组合 keyword_combinations = [] for i in range(1, len(keywords) + 1): keyword_combinations += itertools.permutations(keywords, i) # 生成密码 passwords = [] for combination in keyword_combinations: password = template for keyword in combination: password = password.replace('{}', keyword, 1) passwords.append(password) # 添加特殊字符 if special_chars: passwords_with_special_chars = [] for password in passwords: for char_combination in itertools.product(special_chars, repeat=len(password)): password_with_special_chars = '' for i in range(len(password)): password_with_special_chars += password[i] + char_combination[i] passwords_with_special_chars.append(password_with_special_chars) passwords = passwords_with_special_chars # 写入文件 with open(output_file, 'w') as f: for password in passwords: f.write(password + '\n') if __name__ == '__main__': parser = argparse.ArgumentParser(description='Generate customized password dictionary.') parser.add_argument('-t', '--template', required=True, help='Template file path.') parser.add_argument('-k', '--keywords', required=True, help='Keywords separated by comma.') parser.add_argument('-s', '--special-chars', help='Special characters separated by comma.') parser.add_argument('-o', '--output', required=True, help='Output file path.') args = parser.parse_args() keywords = args.keywords.split(',') special_chars = args.special_chars.split(',') if args.special_chars else None generate_passwords(args.template, keywords, special_chars, args.output) ``` 使用方法: 1. 创建一个模板文件,例如`template.txt`,其中包含一个或多个`{}`占位符,用于替换关键字。 2. 运行以下命令生成密码字典: ``` python password_generator.py -t template.txt -k keyword1,keyword2,keyword3 -s !,@,#,$ -o passwords.txt ``` 其中,`-t`指定模板文件路径,`-k`指定关键字序列,以逗号分隔开,`-s`指定一些特殊符号,以逗号分隔开,`-o`指定输出后的文件名。 如果不需要特殊字符,可以省略`-s`参数。 生成密码字典将保存在`passwords.txt`文件中。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值