passmaker icon indicating copy to clipboard operation
passmaker copied to clipboard

可以自定义规则的密码字典生成器,支持图形界面 A password-generator that base on the rules that you specified

Results 5 passmaker issues
Sort by recently updated
recently updated
newest added

通过方式一生成字典为空,还在维护么

右边的按钮没有文字 ![image](https://user-images.githubusercontent.com/19601210/49700523-ab69ff80-fc1a-11e8-9927-bfcb3e24d5f0.png)

满足两位或者固定位数的大小写字母、数字以及特殊字符。长度在8-20位之间2333

环境是macos+python 3.9.15 用3.9的原因是mac下面brew安装tk的包最低支持是3.9的python版本。 以下是配置规则,使用 #rule_list = ["domain+special_letter+year"] 规则的时候不会报错。但是使用第一条rule_list的时候就会报错 `name 'i' is not defined` 猜测应该是python版本引起的,不知道这个 i 是哪里定义的,能否改一下兼容性。 谢谢。 ``` year = ["2020","2021","2022"] special_letter = ["!","@","#","$","%"] keyboard_walk = open('./seed/4_keyboard_walk.txt').readlines() common_number = open('./seed/common_number.txt').readlines()...