05-15-2014, 09:46 PM
Per https://hashcat.net/wiki/doku.php?id=mask_attack
This works:
This does not:
Generates error:
Am I simply misunderstanding the syntax needed, or something more fundamental?
Thank you!
Quote:"A Mask attack is always specific to a password length. For example, if we use the mask â€?l?l?l?l?l?l?l?l†we can only crack a password of the length 8. But if the password we try to crack has the length 7 we will not find it. Thats why we have to repeat the attack several times, each time with one placeholder added to the mask. This is transparently automated by using the â€--increment†flag."
This works:
Code:
./hashcat-cli64.bin -m 131 -a 3 -o recovered.txt hashmssql.txt ?u?d?s
This does not:
Code:
./hashcat-cli64.bin -m 131 -a 3 -o recovered.txt hashmssql.txt ?u?d?s --increment
Generates error:
Code:
unrecognized option '--increment'
Am I simply misunderstanding the syntax needed, or something more fundamental?
Thank you!