python如何生成密码字典
作者:用余生去守护 时间:2021-12-23 23:08:24
一、密码字典
所谓密码字典,主要是配合解密使用,一般情况用来暴力破解密码,是由指定字符排列组合组成的文本文件。如果知道密码设置的规律指定性生成密码,会对破解密码有决定性的帮助!!
二、字典生成
1.生成6位数小写字母+数字密码字典
代码如下(示例):
import itertools as its
words = 'abcdefghijklmnopqrstuvwxyz1234567890' #采用的字符
r = its.product(words, repeat=6) # repeat 要生成多少位的字典
dic = open("pass.txt", "a") #保存
for i in r:
dic.write("".join(i))
dic.write("".join("\r"))
dic.close()
2.选择模式运行
python dictionary.py default
python dictionary.py numonly
python dictionary.py letteronly
代码如下(示例):
import itertools as its
import argparse
def run_default(length,filename):
global words
'''
words='ha'
if numonly == True:
words="1234567890"
else:
words="1234567890qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM"
'''
words="1234567890qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM"
r =its.product(words,repeat=length)
dic = open(filename,'a')
for i in r:
dic.write("".join(i))
dic.write("".join("\n"))
dic.close()
def run_numonly(length,filename):
global words
words="1234567890"
r =its.product(words,repeat=length)
dic = open(filename,'a')
for i in r:
dic.write("".join(i))
dic.write("".join("\n"))
dic.close()
def run_letteronly(length,filename):
global words
words="qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM"
r =its.product(words,repeat=length)
dic = open(filename,'a')
for i in r:
dic.write("".join(i))
dic.write("".join("\n"))
dic.close()
if __name__ == "__main__":
choices={"default":run_default,"numonly":run_numonly,"letteronly":run_letteronly}
parser=argparse.ArgumentParser(description='快速生成密码字典')
parser.add_argument('model',choices=choices,help='选择哪个模式运行')
parser.add_argument('--length',metavar='length',type=int,default=3,help="密码字典内密码的长度")
parser.add_argument('-filename',metavar='filename',type=str,default='password.txt',help="密码字典文件昵称")
#parser.add_argument('-numonly',metavar='numonly',type=bool,default=False,help="是否只含有数字")
args=parser.parse_args()
func=choices[args.model]
func(args.length,args.filename)
来源:https://blog.csdn.net/qq_45365214/article/details/123274975
标签:python,密码,字典
0
投稿
猜你喜欢
Django实现支付宝付款和微信支付的示例代码
2021-01-31 10:16:29
ajax+asp无限级分类树型结构
2011-04-02 11:05:00
详解Python Flask框架的安装及应用
2022-06-20 11:12:50
javascript验证IP地址等验证例子
2007-09-11 13:40:00
使用Python爬取小姐姐图片(beautifulsoup法)
2022-05-02 04:01:44
Python UI自动化测试Web frame及多窗口切换
2023-05-29 01:18:55
Python requests的SSL证书验证方式
2021-10-06 09:21:51
SQL Server误区30日谈 第10天 数据库镜像在故障发生后 马上就能发现
2024-01-13 02:40:08
Oracle 9i产品文档
2010-07-16 13:35:00
PyTorch的深度学习入门之PyTorch安装和配置
2022-12-27 22:20:34
Python 调用 ES、Solr、Phoenix的示例代码
2023-10-03 04:52:57
python3.7调试的实例方法
2022-09-22 17:16:24
如何用ASP.NET连接MS SQLServer数据库?
2010-06-11 19:27:00
Python制作微信机器人教程详解
2021-05-09 13:44:44
python编写函数注意事项总结
2021-08-19 22:15:10
Python利用format函数实现对齐打印(左对齐、右对齐与居中对齐)
2021-07-30 05:16:16
mysql数据库 主从复制的配置方法
2024-01-16 09:24:35
不完全HTML在线编辑器收集
2007-11-08 12:20:00
mySQL中replace的用法
2024-01-27 13:42:07
Python cookbook(数据结构与算法)将名称映射到序列元素中的方法
2021-06-06 01:26:54