MD5 hash , basic question
#6
yeah, in the end, this is what I have ended up doing, still waiting for the result, I guess that it should take like 20h. 

Thanks for the reply, I appreciate it.

(11-22-2020, 05:45 PM)qaksmmnvkpjv Wrote: In that case you could write a bash or a python script to iterate over the 1,000,000 possibilities.

Something like:
password = None
for i in range(1000000):
    guess = str(i).zfill(6).encode("utf-8")
    for j in range(10000):
        guess = md5(guess)
    if guess == hash:
        password = guess
        break
print(password)
Reply


Messages In This Thread
MD5 hash , basic question - by nebunulp1 - 11-21-2020, 08:18 PM
RE: MD5 hash , basic question - by undeath - 11-22-2020, 12:55 AM
RE: MD5 hash , basic question - by qaksmmnvkpjv - 11-22-2020, 01:20 AM
RE: MD5 hash , basic question - by nebunulp1 - 11-22-2020, 11:05 AM
RE: MD5 hash , basic question - by qaksmmnvkpjv - 11-22-2020, 05:45 PM
RE: MD5 hash , basic question - by nebunulp1 - 11-22-2020, 07:16 PM