how to add custome hash type
#5
Trac is here and you may need to register if not already done (since trac is seperate from the forum and you need to create a new account there).

The algorithm you want to request is md5(md5($pass).$salt) ... since of course the devs would not add a algorithm with hard-coded constants (9486).

There are already "similar" algorithms, like md5(md5($salt).$pass) - see here .
In theory you could use a dictionary containing only 9486 and an external salt list (-e argument)... but I wouldn't really recommend it since it may be *much* slower than a new hash mode that does it the other way around (i.e. $salt is salt and $pass is the pass): md5(md5($pass).$salt).

Note: if such an algorithm would be implemented you still may need to either use -e for the external salt (in this case only a file containing the number 9486), or you need to append to *each* hash in the hashlist ":9486").


Messages In This Thread
how to add custome hash type - by Net_Spy - 10-20-2013, 09:01 PM
RE: how to add custome hash type - by epixoip - 10-20-2013, 09:02 PM
RE: how to add custome hash type - by Net_Spy - 10-21-2013, 09:31 AM
RE: how to add custome hash type - by philsmd - 10-21-2013, 10:18 AM
RE: how to add custome hash type - by KT819GM - 10-21-2013, 10:05 AM
RE: how to add custome hash type - by undeath - 10-21-2013, 12:24 PM
RE: how to add custome hash type - by epixoip - 10-21-2013, 01:21 PM
RE: how to add custome hash type - by philsmd - 10-21-2013, 01:27 PM
RE: how to add custome hash type - by epixoip - 10-21-2013, 01:30 PM
RE: how to add custome hash type - by Net_Spy - 10-21-2013, 02:42 PM
RE: how to add custome hash type - by epixoip - 10-21-2013, 02:47 PM
RE: how to add custome hash type - by Net_Spy - 10-21-2013, 05:45 PM
RE: how to add custome hash type - by Net_Spy - 10-21-2013, 08:42 PM
RE: how to add custome hash type - by Net_Spy - 10-22-2013, 09:16 PM
RE: how to add custome hash type - by epixoip - 10-22-2013, 10:42 PM