期间 渗透试验 其中一个测试组件是强制关键数据,比如 密码 一种暴力手段是使用字典或词表。互联网上有很多词典,我们通常需要合并它们。Dymerge是一个安全工具,用于合并不同的 单词表 还有字典。
null
得到 二元体
使用git可以从github获得dymerge的最新版本。
$ git clone https://github.com/k4m4/dymerge.git Cloning into 'dymerge'... remote: Counting objects: 86, done. remote: Total 86 (delta 0), reused 0 (delta 0), pack-reused 86 Unpacking objects: 100% (86/86), done. Checking connectivity... done.
获取有关DyMerge的帮助
通过向dymerge发出-h参数,可以获得关于dymerge的帮助。它还提供了我们将在本文中查看的用法示例。
$ python dymerge.py -h Usage: python dymerge.py {dictionaries} [options] Options: --version show program's version number and exit -h, --help show this help message and exit -o OUTPUT_FILE, --output=OUTPUT_FILE output filename -i INCLUDE_VALUES, --include=INCLUDE_VALUES include specified values in dictionary -z ZIP_TYPE, --zip=ZIP_TYPE zip file with specified archive format -s, --sort sort output alphabetically -u, --unique remove dictionary duplicates -r, --reverse reverse dictionary items -f, --fast finish task asap Examples: python dymerge.py /usr/share/wordlists/rockyou.txt /lists/cewl.txt -s -u python dymerge.py /lists/cewl.txt /lists/awlg.txt -s -u -i and,this python dymerge.py ~/fsocity.dic -u -r -o ~/clean.txt python dymerge.py /dicts/crunch.txt /dicts/john.txt -u -f -z bz2
合并两个词典
我们将合并两个只提供字典文件名的字典。如果未指定,则默认输出文件名为dymerged.txt。
$ python dymerge.py names.txt surnames.txt DyMerge 0.2 Nikolaos Kamarinakis (nikolaskama.me) ____ / _` /'\_/` / __ __/ __ _ __ __ __ / / \__ /'__`/` __/'_ ` /'__` \_ \_ \_/ / __/ // \_ / __/ \____//`____ \_ \_ \____ \_ \____ \____ /___/ `/___/ /_/ /_//____/ /_/ /____ /____/ /\___/ /\____/ /__/ Made with <3 by k4m4 \_/__/ [+] Starting Dictionary Merge Task [+] Reading Dictionaries [+] Merging Dictionaries [+] Task Successfully Complete [+] Final Dictionary Saved As --> dymerged.txt Comp/tional Time Elapsed: 0.008401
指定输出文件名
我们将用-o选项指定输出文件名,用bz2压缩算法用-z选项压缩文件。
$ python dymerge.py names.txt surnames.txt -o merged.txt -z bz2 DyMerge 0.2 Nikolaos Kamarinakis (nikolaskama.me) ____ / _` /'\_/` / __ __/ __ _ __ __ __ / / \__ /'__`/` __/'_ ` /'__` \_ \_ \_/ / __/ // \_ / __/ \____//`____ \_ \_ \____ \_ \____ \____ /___/ `/___/ /_/ /_//____/ /_/ /____ /____/ /\___/ /\____/ /__/ Made with <3 by k4m4 \_/__/ [+] Starting Dictionary Merge Task [+] Reading Dictionaries [+] Merging Dictionaries [+] Zipping File [+] Task Successfully Complete [+] Final Dictionary Saved As --> merged.txt.bz2 Comp/tional Time Elapsed: 0.013137
Dymerge字典合并工具Infografic

相关文章: 使用Sysctl命令列出并更改内核配置变量
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END