08-24-2016, 09:39 PM
Thanks for the replies. The hccaps work with the correct password in the wordlist. Using the rules it does not however crack the MD5 hash either (since it works correctly with the correct password in the wordlist I assume the handshake is correct)
test.txt
Something unexpected
Generating a rule that only does two digits
which outputs
This works every time
So in my wordlist, if I have the words
The rule will work as expected
The rule also will work as expected with just one digit
Three, Four digits do not work
Note that I tried generating my own rules for the 4 digit and also (seperately) tried using KoreLogicRulesAppend4Num.rule
The versions of hashcat I've tried are 3.10 and 3.00
Thanks again for the responses
Code:
hashcat64.exe -w 1 -m 0 -a 0 md5hash.txt -r rules\myrule.rule C:\Pen\word\test.txt
test.txt
Code:
password
Password
Something unexpected
Generating a rule that only does two digits
Code:
mp64.exe -o twoDigit.rule $?d$?d
which outputs
Code:
$0$0
$0$1
$0$2
...
This works every time
So in my wordlist, if I have the words
Code:
password
Password
Password1 <-- The rule will work on this one
The rule will work as expected
The rule also will work as expected with just one digit
Code:
$0
$1
...
Three, Four digits do not work
Note that I tried generating my own rules for the 4 digit and also (seperately) tried using KoreLogicRulesAppend4Num.rule
The versions of hashcat I've tried are 3.10 and 3.00
Thanks again for the responses