4 个版本
0.1.3 | 2022年2月11日 |
---|---|
0.1.2 | 2022年2月11日 |
0.1.1 | 2022年2月2日 |
0.1.0 | 2022年2月2日 |
#4 在 #customize
27KB
594 行
单词列表膨胀器
单词列表膨胀器 (wlinflate) 是一个简单的工具,可以快速将现有的单词列表定制化以满足特定的需求。
此工具允许快速向单词列表添加前缀、后缀、替换和扩展。
示例用法
13427825 rockyou.txt
❯ time wlinflate -w rockyou.txt -a "prod" -p "acme" -x ".bak" -o inflated_rockyou.txt
wlinflate -w rockyou.txt -a "prod" -p "acme" -x ".bak" -o 1.88s user 0.42s system 99% cpu 2.315 total
❯ wc -l inflated_rockyou.txt
20944368 inflated_rockyou.txt
❯ head inflated_rockyou.txt
0
acme0
0prod
acme0prod
0.bak
acme0.bak
0prod.bak
acme0prod.bak
00
acme00
如果您在任务中遇到常见的命名方案,有一个方便的替换选项
❯ cat test_swap.txt
{SWAP}-panel
{SWAP}-manage
❯ wlinflate -w test_swap.txt -s "acme,ecorp"
acme-panel
ecorp-panel
acme-manage
ecorp-manage
这允许您创建有针对性的但可重复使用的字典。
帮助文本
wlinflate 0.1.0
icon
simple tool to expand a wordlist with prepends, appends, extensions, and substitutions
USAGE:
wlinflate [OPTIONS] --wordlist <wordlist>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-a, --append <append> append wordlist words (csv)
-x, --extensions <extensions> extensions to search (csv)
-o, --output <outfile> output file
-p, --prepend <prepend> prepend wordlist words (csv)
-s, --swap <swap> swap in for entries that contain {SWAP} (csv)
-w, --wordlist <wordlist> path to wordlist
依赖项
~3MB
~50K SLoC