A script that will create combinations of a supplied word.
-
Supply a word using the
-w
option,mutator.py
will print out the combinations of that word. -
Supply a list of words for mutator.py to mutate using the
-l
option. -
'mutator.py' can accept the
-w
and-l
option at the same time. -
Supply a dictionary for
mutator.py
to use by defining the-d
option. -
Supply a file for
mutator.py
to output to by defining the-o
option.
Example Commands
python mutator.py -d dicts/common.txt -w password
python mutator.py -d dicts/common.txt -w password -o password_mutations.txt
python mutator.py -d dicts/common.txt -l words.txt
python mutator.py -d dicts/common.txt -l words.txt -w password