Minimum investment on a descent rig for 16+ character NTLM passwords - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: Hardware (https://hashcat.net/forum/forum-13.html) +--- Thread: Minimum investment on a descent rig for 16+ character NTLM passwords (/thread-7485.html) Pages:
1
2
|
RE: Minimum investment on a descent rig for 16+ character NTLM passwords - mrfancypants - 05-09-2018 (05-08-2018, 11:52 PM)phildo Wrote: (Sorry if this post is about to go off topic- but now I'm curious!) Results vary from list to list. Some are easier than others. In an unsalted list, as long as it is English-based (or at least not something weird like Arabic), I might get 3 out of 4 if it's easy, or I might get half if it's hard. I do have a fairly extensive script trying all sorts of combinations - straight dictionary, dictionary + masks, two dictionary words joined together, etc. Quote:What am I misunderstanding here? How can it possibly take the same amount of time to run 700,000 vs 7,000? With unsalted hashes, you just need to go through every password in the list, apply the hash function once, and check if the result is in the list. The act of checking is fast. Therefore it takes almost as long to do even one hash as 700,000. With salted hashes, you need to apply the hash function to ever permutation of password + salt. If you have 7,000 different hashes, each with a different salt, you need to try each password 7,000 times. |