06-01-2013, 06:15 PM
Try to execute this:
Basically it is: 1 || \0 || 2 where || means concatenated.
Yes, there seems to be a bug (or at least a strange behaviour in oclHashcat), I documented some of my findings in this trac ticket:
https://hashcat.net/trac/ticket/154
I would suggest that we collect HERE the samples and discuss here what / why it is strange and how this could be best fixed (or more: what should be the expected output) and comment on trac whenever we have enough details for the devs.
BTW: the correct md5(1) can be generated as:
Code:
echo -en "1\00002"|md5sum
a933d13f81649bebe035dc21f4002ff1 -
Basically it is: 1 || \0 || 2 where || means concatenated.
Yes, there seems to be a bug (or at least a strange behaviour in oclHashcat), I documented some of my findings in this trac ticket:
https://hashcat.net/trac/ticket/154
I would suggest that we collect HERE the samples and discuss here what / why it is strange and how this could be best fixed (or more: what should be the expected output) and comment on trac whenever we have enough details for the devs.
BTW: the correct md5(1) can be generated as:
Code:
echo -n 1|md5sum
c4ca4238a0b923820dcc509a6f75849b -