Re: Specific Wordlist needs
Re: Specific Wordlist needs
That's simple with crunch, just search the forums and your answer will appear
Re: Specific Wordlist needs
So get your password list and do something like:
Code:
for X in `cat password.lst`; do echo fix$X;done
This assumes your base password list is called password.lst and is in the directory where you run the command.
To output the results to a file you can either:
Code:
for X in `cat password.lst`; do echo fix$X;done>fixpasswords.lst
(This simply puts all the new words in fixpasswords.lst)
or
Code:
for X in `cat password.lst`; do echo fix$X;done|tee -a fixpasswords.lst
(This puts the new words in fixpasswords.lst if the file doesn't exist and appends if the file does)
Note the single quote in the commands above is the one on your tilde key (top left of most keyboards).
Re: Specific Wordlist needs
Also have closer look at using crunch with the -t option.
Re: Specific Wordlist needs
Theres also a way to do that with the mangling rules in john. Read the john.conf file and the rules help.