Skip to content

Commit b0c8e80

Browse files
author
LandGrey
committed
usage
1 parent 39ac010 commit b0c8e80

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

README.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,38 @@
1-
# pydictor
1+
# pydictor Build by LandGrey
22
A useful hacker dictionary builder
3+
4+
一个实用的黑客字典生成工具
5+
6+
功能简介:
7+
1.支持使用纯数字、纯小写字母或纯大写字母的任意位数爆破字典生成;
8+
例如:
9+
python pydictor -t d --len 6 6 生成6位纯数字字典
10+
11+
2.支持使用数字、小写字母与大写字母两两组合或3者组合的任意位数爆破字典生成;
12+
例如:
13+
python pydictor -t dL --len 4 4 生成数字和小写字母组成的所有4位字典
14+
15+
3.支持使用自定义字符(包括所有键盘字符)的任意位数爆破字典生成;
16+
例如:
17+
python pydictor -cc aAbBcC123. --len 6 8 生成由'aAbBcC123.' 10个字符组成的所有6位到8位字典
18+
19+
4.支持使用自定义字符串、字符生成所有可能性组合的字典。
20+
例如:
21+
python pydictor -cm abc ABC 123 . 生成由'abc'、'ABC'、'123' 和'.'生成的所有可能性组合字典
22+
23+
注: 不支持指定生成字典的长度
24+
25+
5.支持指定生成的字典前缀(头)与后缀(尾)
26+
例如:
27+
python pydictor.py -t L --len 1 4 --head a --tail 123
28+
29+
注: 指定的头和尾并不包括在指定的长度(--len参数)中,而是在原来的长度基础上额外增加的。
30+
31+
6.支持将生成的字典进行编码或加密
32+
例如:
33+
python pydictor.py -t d --encode b64
34+
35+
注: 支持 base64 urlencode编码, md5 sha1 sha256 sha512加密
36+
37+
38+
另:准备在完善pydictor v 1.0版本的基础上,增加社会工程学字典生成功能

0 commit comments

Comments
 (0)