Single symbol in random position with Brute-Force attack - 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: Single symbol in random position with Brute-Force attack (/thread-9909.html) |
Single symbol in random position with Brute-Force attack - m0hasher - 02-28-2021 I've been trying to look for options to generate lowercase, uppercase, digits and a single symbol in a random position within 8 characters of length. The only command I can think of is Code: [b]hashcat -a 3 -m[hashmode] [hash] -1 ?l?u?d ?1?1?1?1?1?1?1?s[/b] Would hashcat be able to do this in just a single command for every possible combination? RE: Single symbol in random position with Brute-Force attack - Snoopy - 02-28-2021 i this case i would say you should use a maskfile with 8 lines like you said ?l?u?d,?s,?1?1?1?1?1?1?1?2 ?l?u?d,?s,?1?1?1?1?1?1?2?1 or ?l?u?d,?1?1?1?1?1?1?1?s ?l?u?d,?1?1?1?1?1?1?s?1 and so on, then use this maskfile instead of your singlemask on commandlin RE: Single symbol in random position with Brute-Force attack - m0hasher - 03-01-2021 (02-28-2021, 11:46 PM)Snoopy Wrote: i this case i would say you should use a maskfile with 8 lines like you said Oh, I didn't know you could put different masks into a file. Thanks! |