weird mask attack
#5
These lines:
Code:
$HASHCAT -a 3  -m 300 --remove --status --gpu-temp-retain=95 \
  ../hash/mysql/mysql_hash.txt  -o ../hash/mysql/mysql_hash_result.txt
  ../oclHashcat-1.01/masks/rockyou-1-64.hcmask

make oclHashcat run without any (user-specified) mask (nor hcmask, => default mask + increment) .... since there is no "\" after the output file "../hash/mysql/mysql_hash_result.txt" oclHashcat will start without getting the information that you also specified a hcmask...

This is because you didn't add the (second) "\" (== skip newline) and the next line:
Code:
../oclHashcat-1.01/masks/rockyou-1-64.hcmask

will be interpreted as a new command


Messages In This Thread
weird mask attack - by inoo - 01-08-2014, 05:18 PM
RE: weird mask attack - by philsmd - 01-08-2014, 05:56 PM
RE: weird mask attack - by inoo - 01-09-2014, 01:38 AM
RE: weird mask attack - by inoo - 01-09-2014, 04:55 PM
RE: weird mask attack - by philsmd - 01-09-2014, 05:22 PM