![]() |
Help with mask - 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: Help with mask (/thread-9678.html) |
Help with mask - qash - 11-30-2020 Is there a way to make a mask for md5 if i know a part of string but don' t know a length? String is 100-150 letters length. I know ~15 letters. for example: xxxxxxxKNOW THIS PARTyyyyyy or it could be:xxx[xx3213xx]yyyyKNOW THIS PARTzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz RE: Help with mask - undeath - 11-30-2020 Quote:String is 100-150 letters length. I know ~15 letters.lol. RE: Help with mask - DanielG - 11-30-2020 Sorry, 85-135 length to guess is never going to happen. Ever. It's way too big to guess. RE: Help with mask - slyexe - 12-02-2020 define your custom character sets with -1 to -4 so we need to create 2 sets of custom charsets. As well we will use increment to limit the search to the 4 to 6 characters at the end. see below: Code: hashcat -m 0 -a 3 -1 Aa1 -i --increment-min 30 --increment-max 32 -2 ?l?u?d?s md5hash.txt ?1?1KNOWNPARTTHATIS24CHARLONG?2?2?2?2?2?2 RE: Help with mask - slyexe - 12-02-2020 Code: hashcat -m 14600 -a 3 -1 Aa1 -i --increment-min 30 --increment-max 32 -2 ?l?u?d?s header.luks ?1?1mysuper\$ecretPa\$S?2?2?2?2?2?2 --force Running with --force can cause issues with hashcat and it may not find the password even if it was submitted. |