rsmangler Notes - Zacham17/my-tech-journal GitHub Wiki
-
rsmangler
is a tool that "mangles" wordlists using certain flags, and produces a new mangled list which can be used for password cracking
-
NOTE: The options effecting the output of the file turn OFF the option. All options are ON by default.
-
--file <filename>
: Specifies an input file to mangle -
-x <x>
: Sets a minimum word length -
-m <x>
: Sets a maximum word length -
-l
: lowercase the word -
-s
: swap the case of the word -
-e
: add ed to the end of the word -
-i
: add ing to the end of the word -
-p
: permutate all the words -
-u
: uppercase the word -
-a
: create and acronym based on all the words entered in order and add to word list -
--output <filename>
: Specifies a file to output to -
Example Command:
rsmangler --file pippin_small.txt -x 12 -m 9 -l -s -e -i -p -u -a --output pippin_mangled.txt