Posts: 3
Threads: 2
Joined: Apr 2025
Yesterday, 04:51 AM
Hello,
Is it possible to crack a hash using a mask consisting of 16 digits, and if so, how long will this operation take?
Might have to use rainbow tables?
Posts: 82
Threads: 0
Joined: Dec 2022
Depends on the hash type.
I don't think there exist any rainbow tables for 16-character passwords.
Posts: 54
Threads: 0
Joined: Oct 2021
(Yesterday, 04:51 AM)apzbot Wrote: Is it possible to crack a hash using a mask consisting of 16 digits, and if so, how long will this operation take?
Hash type is MD5 (as mentioned in title) and passwords consists of 16 decimal digits, right?
Number of possible passwords will be 10^16. You can find a lot of benchmarks on this forum. Let's use
this topic as an example. Speed for MD5 is 68*(10^9) pwd/sec. Therefore, estimated time will be ~ 147'000 seconds (approx. 41 hours).
Next time you can make calculations by yourself.