LandGrey / pydictor

A powerful and useful hacker dictionary builder for a brute-force attack
https://github.com/LandGrey/pydictor
GNU General Public License v3.0
3.22k stars 630 forks source link

捉个虫 #10

Closed zhbzhbzhbz closed 5 years ago

zhbzhbzhbz commented 5 years ago

regex function Usage : --regex [regex] Example: --types "^z.*?g$" 这里的--types应该是--regex

以及请问, types function Usage : --types [letters_types_range] [digital_types_range] [special_types_range] Example: --types "<=8" "<=4" "=0" 如果想要所有大写+小写字母+所有数字+无特殊符号,这里的letters_types_range应该怎么写?

LandGrey commented 5 years ago

所有大写+小写字母+所有数字+无特殊符号,完整的过滤条件这样写:

--types ">=0" ">=0" "==0"

letters_types_range 部分是 >=0

zhbzhbzhbz commented 5 years ago

谢谢~可以关闭了