MD5: Need Advice
#5
well, you could just use -m 3710 = md5($salt.md5($pass)) together with --hex-salt (because you said that the first MD5 is in binary not hex), an example (hashes mask with xxxx):

Code:
$ echo -n PWn3R | md5sum
1d0fxxxx06550cdexxxxxxcd52b0xx75
$ echo -n hashcat | md5sum
8743bxx063xxxx097a65d1xx3f5c74xx
$ echo -en "\x1d\x0f\xxx\xxx\x06\x55\x0c\xde\xxx\xxx\xxx\xcd\x52\xb0\x97\x758743bxx063xxxx097a65d1xx3f5c74xx" | md5sum
4507xx379f96xxxxfce75f4b4exx80c1
$ < hash cat
4507xx379f96xxxxfce75f4b4exx80c1:1d0fxxxx06550cdexxxxxxcd52b0xx75
$ ./hashcat -m 3710 -a 3 -w 3 --hex-salt hash ?l?l?l?lcat
4507xx379f96xxxxfce75f4b4exx80c1:1d0fxxxx06550cdexxxxxxcd52b0xx75:hashcat

So there is no need to use a different tool here, you just need to convert the list to hash:hex_salt and use -m 3710 with --hex-salt (as simple as this!).

Futhermore, what I really do not understand at all about this "problem" is why you would even think about cracking those hashes... What I mean is... if you have access to the database and the hash list etc... why do you not just make a backup/copy of everything and later on generate a "new" correct hash (with correct user name and apply the hash algorithm to the username and pass pair etc) and replace the hash with your newly generated one.

Normally you would only need to crack the hash whenever you really want to know the password in such cases, otherwise you could probably just easily bypass the login with substituted login data (I think you just need to replace the hash here and you should be able to log in)...
... or am I missing something ? In general bypassing the login in such situations is much more clever instead of spending thousands of dollars in a GPU rig and a lot of time to crack them... but as said, your situation might be different, but it's not clear from your first post


Messages In This Thread
MD5: Need Advice - by PWn3R - 05-11-2017, 07:18 PM
RE: MD5: Need Advice - by royce - 05-12-2017, 01:33 AM
RE: MD5: Need Advice - by PWn3R - 05-12-2017, 01:48 AM
RE: MD5: Need Advice - by royce - 05-12-2017, 02:04 AM
RE: MD5: Need Advice - by philsmd - 05-12-2017, 08:55 AM
RE: MD5: Need Advice - by PWn3R - 05-12-2017, 09:12 AM
RE: MD5: Need Advice - by royce - 05-12-2017, 09:04 AM
RE: MD5: Need Advice - by philsmd - 05-12-2017, 09:17 AM
RE: MD5: Need Advice - by PWn3R - 05-12-2017, 09:26 AM
RE: MD5: Need Advice - by PWn3R - 05-12-2017, 06:13 PM
RE: MD5: Need Advice - by epixoip - 05-12-2017, 08:24 PM
RE: MD5: Need Advice - by PWn3R - 05-12-2017, 10:29 PM
RE: MD5: Need Advice - by philsmd - 05-14-2017, 07:03 AM
RE: MD5: Need Advice - by PWn3R - 05-15-2017, 06:01 PM
RE: MD5: Need Advice - by philsmd - 05-15-2017, 07:23 PM
RE: MD5: Need Advice - by PWn3R - 05-15-2017, 07:46 PM
RE: MD5: Need Advice - by philsmd - 05-15-2017, 07:56 PM
RE: MD5: Need Advice - by PWn3R - 05-15-2017, 08:09 PM
RE: MD5: Need Advice - by philsmd - 05-15-2017, 08:27 PM
RE: MD5: Need Advice - by PWn3R - 05-15-2017, 08:31 PM
RE: MD5: Need Advice - by philsmd - 05-15-2017, 08:37 PM
RE: MD5: Need Advice - by PWn3R - 05-15-2017, 10:23 PM