Hex ch and small problem
#11
It's not a buffer overflow, and it's not the number of instructions. The issue is hashcat stores keyspace as a uint64 which means the maximum value it can store is 2^64 -1. It cannot work with numbers larger than this. The only way to work around this is to move everything to uint128, which would be... tedious.

And also the keyspace is simply way too large to brute force. You'll never crack the key.


Messages In This Thread
Hex ch and small problem - by ccprime - 02-03-2017, 12:32 AM
RE: Hex ch and small problem - by philsmd - 02-03-2017, 01:27 AM
RE: Hex ch and small problem - by ccprime - 02-03-2017, 10:08 AM
RE: Hex ch and small problem - by philsmd - 02-03-2017, 10:53 AM
RE: Hex ch and small problem - by ccprime - 02-05-2017, 12:04 AM
RE: Hex ch and small problem - by atom - 02-06-2017, 10:11 PM
RE: Hex ch and small problem - by ccprime - 02-07-2017, 12:54 AM
RE: Hex ch and small problem - by ccprime - 02-08-2017, 12:34 AM
RE: Hex ch and small problem - by atom - 02-08-2017, 11:46 AM
RE: Hex ch and small problem - by ccprime - 02-09-2017, 12:41 AM
RE: Hex ch and small problem - by ccprime - 02-21-2017, 01:57 AM
RE: Hex ch and small problem - by epixoip - 02-09-2017, 01:34 AM
RE: Hex ch and small problem - by ccprime - 02-11-2017, 12:16 AM
RE: Hex ch and small problem - by atom - 02-21-2017, 10:39 AM
RE: Hex ch and small problem - by ccprime - 02-21-2017, 11:13 AM