What's wrong with AMD & RAR3-HP
#5
I tested this with win 10 and GnuWin32's wc command.
The differences between linux and windows are the following.
Linux:
Code:
./hashcat -a 3 --stdout -i --increment-min 5 --increment-max 5 -1 ?d?u?l ?1?1?1?1?1?1?1?1 | wc
916132832 916132832 5496796992
windows:
Code:
hashcat64.exe -a 3 --stdout -i --increment-min 5 --increment-max 5 -1 ?d?u?l ?1?1?1?1?1?1?1?1 | wc
916132832 916132832 6412929824

The line counts are exactly the same, what changes are the total bytes in the output: but the explanation is very simple, hashcat uses "\r\n" (carriage return and new line) for windows because otherwise (with only "\n") some windows users claim that "there is only a single line in this file).

That means that 6412929824 / (5 + 2) is the same as 5496796992 / (5 + 1) and the result is both of the times 916132832 (the expected line count, which can be calculated also by (26+26+10) ^ 5 , total charset to the power of the password length).

So we can't make any conclusion by just seeing a difference in bytes in the output (even though what makes me wondering is why you get 624817152 bytes in the output).


Messages In This Thread
What's wrong with AMD & RAR3-HP - by Lithium - 02-01-2017, 09:26 AM
RE: What's wrong with AMD & RAR3-HP - by Lithium - 02-01-2017, 10:42 AM
RE: What's wrong with AMD & RAR3-HP - by atom - 02-01-2017, 12:12 PM
RE: What's wrong with AMD & RAR3-HP - by Lithium - 02-01-2017, 01:19 PM
RE: What's wrong with AMD & RAR3-HP - by philsmd - 02-01-2017, 03:51 PM
RE: What's wrong with AMD & RAR3-HP - by Lithium - 02-01-2017, 04:25 PM
RE: What's wrong with AMD & RAR3-HP - by Lithium - 02-13-2017, 08:54 AM
RE: What's wrong with AMD & RAR3-HP - by atom - 02-13-2017, 11:23 AM
RE: What's wrong with AMD & RAR3-HP - by atom - 02-13-2017, 12:41 PM
RE: What's wrong with AMD & RAR3-HP - by Lithium - 02-15-2017, 07:43 AM