Hashcat Brain not working
#1
i have 3 "Stations" with 6 gpu each connected to a server running hashcat brain, i put the commands and everything starts up as usual, but then the server idles and the Stations get stuck at "[Generating]" candidates, i already tested setting --client-features to 1 to lighten the server load, what can be done to avoid this problem? is actually the Brain feature useable?
Reply
#2
what's your command and hash type ? what is the attack mode (-a x) ?

did you try to use hashcat beta from https://hashcat.net/forum/
Reply
#3
(02-19-2020, 07:08 PM)philsmd Wrote: what's your command and hash type ? what is the attack mode (-a x) ?

did you try to use hashcat beta from https://hashcat.net/forum/

brute force... -a 3 a 8 characters long password
Reply
#4
you didn't really mention the hash type and your command. please do
Reply
#5
(02-20-2020, 12:47 AM)philsmd Wrote: you didn't really mention the hash type and your command. please do
-a 3 -m 11300 wallethash.txt ?h?h?h?h?h?h?h?h
Reply
#6
maybe you are confusing the hashcat brain with some hashcat wrapper like hashtopolis that tries to distribute work across multiple rigs/systems ?

brain and distributed cracking wrappers/systems actually have very different goals they achieve and when they should be used. I'm not sure why but it seems several people confuse one with the other. They are not the same.

The hashcat brain should only be used with slow hashes (in general) and is mainly used to avoid duplicated work, while systems like hashtopolis just take for instance a mask and split the work across all the systems you configured.

This means that brain makes for instance sense to try very different attacks and wordlists/rules etc for a very slow hash like bcrypt etc where it is kind of a problem if you try the same password candidate multiple times (because the duplicated work hurts a lot).

BTW: For brain we introduced a new command line parameter "--brain-server-timer 0" in the latest development version (currently only in beta: https://hashcat.net/beta/) that avoids writing to disk too frequently (with the timer set to 0 only at the very end, this is of course very risky, because you have no backups in between) to avoid too much disk I/O.

The problem with bitcoin hashes is that they have very different cost factors/iteration counts and therefore could be quite fast too, maybe too fast for a good rig together with hashcat brain if you do not use *at least* --brain-client-features 2).

I would suggest that you do some research about hashcat overlays/wrappers like hashtopolis and see if that is actually what you are trying to do (i.e. distribute work instead of avoiding to duplicate work with different attacks, especially if you only run a single mask etc)
Reply