A handy wordlist generator.
cargo install wordlist-generator
for superheroes (latest updates):
git clone https://github.com/ritiek/wordlist-generator
cd wordlist-generator
cargo install
Use the command wordlist
to start using the tool.
```
USAGE:
wordlist-generator [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-o, --output-length
ARGS:
Generate wordlist from characters a
, b
and c
:
$ wordlist abc
abc
acb
bac
bca
cab
cba
Generate wordlist of specific output length:
$ wordlist abc123 -o 2
12
13
1a
1b
1c
21
23
2a
2b
2c
31
32
3a
3b
3c
a1
a2
a3
ab
ac
b1
b2
b3
ba
bc
c1
c2
c3
ca
cb
Automatically take care of duplicates:
$ wordlist abaca -o 3
aaa
aab
aac
aba
abc
aca
acb
baa
bac
bca
caa
cab
cba
Redirect the output wordlist to some text file:
$ wordlist xyz > textfile.txt
Found a bug/ have an idea? Feel free to open your ticket in the issues section.
Even better, send a pull request! :smile:
The MIT License