Brute Force only Certain Characters - 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: Brute Force only Certain Characters (/thread-9870.html) |
Brute Force only Certain Characters - UKLondon2025 - 02-10-2021 Hi All I know that you can do a brute force via all characters: hashcat -m <Code> -a 3 -1 -?l?u?d?s -3 ?d hashes.txt --potfile-disable ?1?1?1?1?1?1?1?1 However how can I only include certain characters in the search: An Example: ABCDEFabcdef12345!"£$%. Kind Regards RE: Brute Force only Certain Characters - slyexe - 02-10-2021 (02-10-2021, 07:02 PM)UKLondon2025 Wrote: Hi Allyou've already solved your own question by using custom character sets. Just choose between -1 -2 -3 and implement whatever character set you want. Code: hashcat -m <Code> -a 3 -1 ABCDEFabcdef12345!"@%&*% -2 Xx0o -3 ?H?s hashes.txt --potfile-disable ?1?1?2?2?3?3?1?1?2?3? RE: Brute Force only Certain Characters - UKLondon2025 - 02-12-2021 Hi, When I try and run the command on Windows I receive the following message: If you specify a custom charset, you must specify a mask. What could be the cause of this, is it because I have a special character in the section !"£$%. If yes how would I overcome this? Kind Regards (02-10-2021, 11:22 PM)slyexe Wrote:(02-10-2021, 07:02 PM)UKLondon2025 Wrote: Hi Allyou've already solved your own question by using custom character sets. Just choose between -1 -2 -3 and implement whatever character set you want. RE: Brute Force only Certain Characters - slyexe - 02-12-2021 show us the command you are using. Otherwise, guessing at what you're telling us could result in improper diagnostics. |