Crates.io | wordlist-generator |
lib.rs | wordlist-generator |
version | 0.1.1 |
source | src |
created_at | 2017-08-27 16:34:24.049452 |
updated_at | 2017-08-27 17:23:06.030615 |
description | A handy wordlist generator |
homepage | |
repository | https://github.com/ritiek/wordlist-generator |
max_upload_size | |
id | 29471 |
size | 5,159 |
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] <CHARS>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-o, --output-length <LENGTH> Output length of the generated permutations
ARGS:
<CHARS> Characters to generate permutations from
a
, b
and c
:$ wordlist abc
abc
acb
bac
bca
cab
cba
$ 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
$ wordlist abaca -o 3
aaa
aab
aac
aba
abc
aca
acb
baa
bac
bca
caa
cab
cba
$ 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