2 releases
Uses old Rust 2015
0.1.1 | Aug 27, 2017 |
---|---|
0.1.0 | Aug 27, 2017 |
#24 in #handy
6KB
61 lines
wordlist-generator
A handy wordlist generator.
Installation
cargo install wordlist-generator
for superheroes (latest updates):
git clone https://github.com/ritiek/wordlist-generator
cd wordlist-generator
cargo install
Usage
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
Examples
- Generate wordlist from characters
a
,b
andc
:
$ 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
Contributing
-
Found a bug/ have an idea? Feel free to open your ticket in the issues section.
-
Even better, send a pull request! 😄
License
The MIT License
Dependencies
~1MB
~16K SLoC