dictBuilder 字典生成和字典整理工具
2019-12-31 11:41:54 Author: mp.weixin.qq.com(查看原文) 阅读量:75 收藏


介绍

字典生成和字典整理工具,生成基于姓名关联的字典、爆破字典等,后渗透阶段方便对数据进行筛选、整理。结构
dictBuilder/├── easyDirectory.py
├── frequency.py
├── judge.py
├── keyword.txt
├── main.py
└── README.md

用法

-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

示例

  • 生成验证码字典,默认4个字符,生成更多字符加入-n参数

    python mian.py -m "verify"

  • 根据输入的字符串生成4位验证码字典,生成更多字符加入-n参数

    python mian.py -m "verify" -s "abcdefghijklmnopqrstuvwxyz0123456789"

  • 生成辅助爆破字典,-o指定输出的文件名

    python main.py -f top500_user.txt -m "social" -o "output.txt"

  • 迭代生成字符字典,-o指定输出的文件名,默认是output.txt

    python main.py -f keyword.txt -m "normal" -o "output.txt"

  • 筛选使用最频繁使用的密码,-n指定要筛选的个数

    python main.py -f keyword.txt -m "frequency" -n 100


文章来源:

https://github.com/he1m4n6a/dictBuilder

推荐文章++++

*pydictor 暴力破解字典生成器

*Kali字典神器—Crunch

*aircrack & hashcat 非字典高速破解目标无线密码


文章来源: http://mp.weixin.qq.com/s?__biz=MzAxMjE3ODU3MQ==&mid=2650459080&idx=4&sn=56411c025904865b747e6c1e3a614a48&chksm=83bbae2cb4cc273a9dc3ad9d548045e7d2ca1fd8f45330bd2bef22255601424fcf3091f88b30#rd
如有侵权请联系:admin#unsafe.sh