new module: md5 with substitution
#4
(05-13-2022, 02:47 PM)nick8606 Wrote: You need to create custom module.

But there is more simple and fast way. Total number of passwords is small (36^6 = 2'176'782'336),

thanks, but i also want it to work for 7 or 8 characters or more (digits, letters upper or lowercase) so it's 62^6, 62^7, 62^8 which is large.

i have read src/modules/module_00000.c and i would like to adapt it, but i don't see how to do the substitution in "module_hash_encode" function.

would you have a hint for this nick8606?

for each input char, the substitution can become 50 characters, so in fact

Code:
hash('abcdefgh') = hash(subs('a')+...+subs('h')) = md5(400_char_long_string)
Reply


Messages In This Thread
new module: md5 with substitution - by phaphip - 05-09-2022, 07:22 PM
RE: new module: md5 with substitution - by phaphip - 05-13-2022, 06:22 PM