11-22-2020, 07:16 PM
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.
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)