Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/he1m4n6a/dictBuilder
渗透测试中字典生成工具
https://github.com/he1m4n6a/dictBuilder
Last synced: 21 days ago
JSON representation
渗透测试中字典生成工具
- Host: GitHub
- URL: https://github.com/he1m4n6a/dictBuilder
- Owner: he1m4n6a
- Created: 2015-03-25T13:43:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-11T09:49:40.000Z (over 6 years ago)
- Last Synced: 2024-08-05T17:42:26.856Z (4 months ago)
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 85
- Watchers: 5
- Forks: 40
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - he1m4n6a/dictBuilder - 渗透测试中字典生成工具 (Python)
README
# dictBuilder
>字典生成和字典整理工具,生成基于姓名关联的字典、爆破字典等,后渗透阶段方便对数据进行筛选、整理。# 结构
dictBuilder/
├── easyDirectory.py
├── frequency.py
├── judge.py
├── keyword.txt
├── main.py
└── README.md# 用法
Usage: main.py [options]
Options:
-h, --help show this help message and exit
-f FILE, --file=FILE input file
-m [normal|verify|frequency], --mode=[normal|verify|frequency]
select mode,default=normal
-c CSV, --csv=CSV set input file as csv format
-o FILE, --output=FILE
output dirctory file
-n NUM, --num=NUM input number
# 例子1. 生成验证码字典,默认4个字符,生成更多字符加入-n参数
python mian.py -m "verify"2. 根据输入的字符串生成4位验证码字典,生成更多字符加入-n参数
python mian.py -m "verify" -s "abcdefghijklmnopqrstuvwxyz0123456789"3. 生成辅助爆破字典,-o指定输出的文件名
python main.py -f top500_user.txt -m "social" -o "output.txt"4. 迭代生成字符字典,-o指定输出的文件名,默认是output.txt
python main.py -f keyword.txt -m "normal" -o "output.txt"5. 筛选使用最频繁使用的密码,-n指定要筛选的个数
python main.py -f keyword.txt -m "frequency" -n 100