12-03-2024, 01:17 PM
Just look at this line
* Hash-Mode 23800 (RAR3-p (Compressed)) [Iterations: 262144]
the magical word here is Iterations, to check for one candidate the hashalgorithm needs to be calculated over 250k times
so in fact your "normal" speed for one iteration would be 300 * 262144 = 78.643.200 hashes per second but due to iterations its slows massivly down
there is nothing you can do about it
for faster loading, you could try splitting up your wordlist into smaller chunks, put them into one directory and feed this directory as input
* Hash-Mode 23800 (RAR3-p (Compressed)) [Iterations: 262144]
the magical word here is Iterations, to check for one candidate the hashalgorithm needs to be calculated over 250k times
so in fact your "normal" speed for one iteration would be 300 * 262144 = 78.643.200 hashes per second but due to iterations its slows massivly down
there is nothing you can do about it
for faster loading, you could try splitting up your wordlist into smaller chunks, put them into one directory and feed this directory as input