Max Pass Length using Wordlists - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Max Pass Length using Wordlists (/thread-7061.html) |
Max Pass Length using Wordlists - Siwon - 11-29-2017 How do I set the maximum password length to say 16 characters? I'm using attack mode 1, two dictionary files. I'm using Hashcat 4.0.1. I checked --help and couldn't find what I'm looking for. RE: Max Pass Length using Wordlists - royce - 11-29-2017 Unless you're attacking a slow hash, it may not be worth skipping the longer files. If it's a slow hash, you could use 'combinator' from hashcat-utils, and then pipe that through 'len' (also from hashcat-utils), to skip the candidates that are too long, and then pipe those to hashcat. RE: Max Pass Length using Wordlists - Siwon - 11-29-2017 (11-29-2017, 10:40 PM)royce Wrote: Unless you're attacking a slow hash, it may not be worth skipping the longer files. It's not really a slow hash I guess, just slow to me. I like things to be instant lol. I'm using a 1070 Ti. Code: Session..........: raw14 RE: Max Pass Length using Wordlists - Siwon - 11-30-2017 So is there any way to change this? Quote:hashcat (v4.0.1) starting... RE: Max Pass Length using Wordlists - undeath - 11-30-2017 nope. RE: Max Pass Length using Wordlists - atom - 12-01-2017 Of course, just do not use -O RE: Max Pass Length using Wordlists - undeath - 12-01-2017 but he wants to lower it! RE: Max Pass Length using Wordlists - philsmd - 12-01-2017 You could also just use reject rules from: https://hashcat.net/wiki/doku.php?id=rule_based_attack#rules_used_to_reject_plains e.g. Code: hashcat -m 0 -a 0 -w 3 -j "<G" hashes.txt names.dic note: that you must make sure that you escape the < (less than) symbol correctly within your shell command (this depends on your operating system and shell) |