Issue with custom rules
#2
Specifying two wordlists in -a 0 doesn't combine the wordlists, it just runs them in serial. So your command was analogous to the following two commands:

Code:
oclhashcat64 hash.txt dictionary1.txt -r rules/xxx.rule
oclhashcat64 hash.txt dictionary2.txt -r rules/xxx.rule

To combine the wordlists you'd need to use -a 1, but -r does not work in -a 1. What you'd probably want to do to crack passwords like this is use combinator.bin to join the two wordlists, then perform a hybrid attack:

Code:
hashcat-utils/combinator.bin dictionary1.txt dictionary2.txt >dictionary1_2.txt
oclhashcat64 hash.txt -a 6 dictionary1_2.txt ?d?d?d


Messages In This Thread
Issue with custom rules - by mokahless - 06-29-2015, 04:21 AM
RE: Issue with custom rules - by epixoip - 06-29-2015, 04:57 AM
RE: Issue with custom rules - by mokahless - 06-29-2015, 07:29 AM
RE: Issue with custom rules - by epixoip - 06-29-2015, 08:13 AM