Basic rule isn't working - 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: Basic rule isn't working (/thread-9897.html) |
Basic rule isn't working - walterlacka - 02-25-2021 Code: C:\hashcat-6.1.1>hashcat.exe --stdout d:\ftp\wordlist2017\google-1000-english-test.txt -r c:\hashcat-6.1.1\rules\test.rule One of those 2 passwords is accurate for the following, but Hashcat fails to crack it - and it's not 1 of them that already exists in the potfile: Code: C:\hashcat-6.1.1>hashcat.exe -m22000 d:\ftp\hashes2021\test.22000 d:\ftp\wordlist2017\google-1000-english-test.txt -r c:\hashcat-6.1.1\rules\test.rule Here's what's in the rule file: Code: $9 Here's what's in the wordlist: Code: t@stypizza9 If i change the rule file to just : (instead of $9) and put the actual password in the wordlist, it cracks. RE: Basic rule isn't working - Snoopy - 02-25-2021 Here's what's in the rule file: Code: $9 Code: t@stypizza9 okay so i assume one of these Code: t@stypizza99 first check wordfile for maybe an extra whitspace char second your rules seems to be working as expected: Candidates.#2....: t@stypizza99 -> t@stypizza99 can you try it with? https://hashcat.net/beta/ RE: Basic rule isn't working - Banaanhangwagen - 02-25-2021 This is already asked and answered in different threads on this forum. WPA2 has a minimum password length of eight characters and Hashcat early-rejects words from your wordlist below that threshold before applying rules. You can use -S in order to avoid this, in exchange for some speed loss. RE: Basic rule isn't working - walterlacka - 02-25-2021 Ugh!!! Forgot about the early reject. Will test with -S option shortly. RE: Basic rule isn't working - walterlacka - 02-25-2021 That fixed it. Thanks for the reminder about the early reject. |