[Bug 0.14] Wrong hash target [Visual Bug] - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Very old oclHashcat-lite Support (https://hashcat.net/forum/forum-22.html) +--- Thread: [Bug 0.14] Wrong hash target [Visual Bug] (/thread-2042.html) Pages:
1
2
|
[Bug 0.14] Wrong hash target [Visual Bug] - themask - 02-05-2013 Hello When i run this : Quote:./oclHashcat-lite64.bin E4DACA7666B28D9CD4C32649F6E66BE868EB29EF:FFEEDD -m110 ?d?d?d?d?d?d?d?a?d?a?d?d --pw-min=10 --pw-max=12 --hex-salt --outfile-format=7 -ourban.txt And hashcat use a corrupted hash instead. Hash.Target....: 76cadae49c8db2664926c3d4e86be6f6ef29eb68:ffeedd I don't think that this is normal. RE: [Bug? 0.14] Wrong hash target - undeath - 02-05-2013 can reproduce Code: ../oclHashcat-lite-0.14/oclHashcat-lite64.bin deadbeefdeadbeefdeadbeefdeadbeefdeadbeef:abcdef -m110 "?d?d?d?d?d?d?d?a?d?a?d?d" --pw-min=10 --pw-max=12 --hex-salt RE: [Bug? 0.14] Wrong hash target - Hash-IT - 02-05-2013 (02-05-2013, 11:46 AM)undeath Wrote: deadbeefdeadbeefdeadbeefdeadbeefdeadbeef:abcd I think in this example, we witness a disturbing insight into the mind of undeath. Most people would write something like testtesttest:abcd. Any professional psychologists care to comment ? RE: [Bug? 0.14] Wrong hash target - themask - 02-05-2013 I think i found another bug. When i use a mask with for example "?d?d?d?d?d?d?d" , hashcat test random value instead of straight incremental [000001,000002,000003,....]. Plain.Text.....: ****000410 Plain.Text.....: ****400120 Plain.Text.....: ****340043 Plain.Text.....: ****271712 Note : [I disabled Markov] with the same effect RE: [Bug? 0.14] Wrong hash target - undeath - 02-05-2013 this is not related to this bug and should therefore be in a new thread. Also hashcat works heavily multithreaded, unless you run on cpu with -n1 it will always "mix" the results. RE: [Bug? 0.14] Wrong hash target - themask - 02-05-2013 Sorry i meant to say "oclHashcat-lite". RE: [Bug? 0.14] Wrong hash target - undeath - 02-05-2013 what i said applies to every version of oclhashcat-* too. RE: [Bug? 0.14] Wrong hash target - epixoip - 02-05-2013 This is a visual bug only, it still finds the correct password. What you are seeing is not a "corrupt" hash, but rather the byte-swapped hash (SHA1 is big endian, x86 is little endian.) This is actually what the hash looks like internally. Normally it is then byte-swapped back for display purposes, and that is what's not being done. RE: [Bug? 0.14] Wrong hash target - epixoip - 02-05-2013 Here's some code to illustrate what is happening inside Hashcat: Code: #include <stdio.h> And when we run it... Code: epixoip@butters:~$ cc -o bswap bswap.c Verify it against hashcat... Code: epixoip@butters:~/oclHashcat-lite-0.14$ echo -n 'bar' | xxd -g 0 -ps See? RE: [Bug 0.14] Wrong hash target [Visual Bug] - themask - 02-05-2013 You right! However also in the Outfile, the hash is bswapped. Quote:f9d743881d21162463b9ebe981e24cff78289325:626172:foo |