11-24-2013, 01:10 AM
I'm trying to combine two dictionaries and add numeric characters afterwards. I realized it's not possible by combination or hybrid modes alone.
In first dictionary I have
and in second dictionary I have
And I try to crack a password like "ac123".
I'm now trying to pipe combinator output into bruteforce mode by following command:
It's not so smart to just put ?d's after the hash file. But I'm out of opinions and this was the closest I could get. Any help?
In first dictionary I have
Code:
a
b
and in second dictionary I have
Code:
c
d
And I try to crack a password like "ac123".
I'm now trying to pipe combinator output into bruteforce mode by following command:
Code:
./combinator.exe ../_dictionaries/dict1.lst ../_dictionaries/dict2.lst | ../hashcatplus2/oclHashcat-plus64.exe -m 0 -a 3 -n 320 --markov-disable -u 64 --gpu-temp-abort=85 --status --status-timer 10 ../1.hash ?d?d?d
It's not so smart to just put ?d's after the hash file. But I'm out of opinions and this was the closest I could get. Any help?