Haschcat - Mask - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Developer (https://hashcat.net/forum/forum-39.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-40.html) +--- Thread: Haschcat - Mask (/thread-12015.html) |
Haschcat - Mask - cryptowallet - 06-01-2024 When I put this mask on, it will test all the combinations in [6]. Which mask do I set so that it tests [1-6], for example? ?a?a?a?a?a?a RE: Haschcat - Mask - penguinkeeper - 06-01-2024 You can use -i to make it go from 1-6 but Metamask isn't very fast so you might want to use wordlists instead of masks RE: Haschcat - Mask - cryptowallet - 06-01-2024 -i ?a?a?a?a?a?a What would the complete code look like? RE: Haschcat - Mask - protonking - 06-03-2024 (06-01-2024, 05:28 PM)cryptowallet Wrote: -i ?a?a?a?a?a?a -i means increment, and tells hashcat to split the mask up and to exhaust the whole range from 1 to 6 in this case. ?a > ?a?a > ?a?a?a > ?a?a?a?a > ?a?a?a?a?a > ?a?a?a?a?a?a the whole command could look like this: Code: "hashcat -a3 -m(mode) hashfile.txt ?a?a?a?a?a?a --increment -O -w3 -o crackedhash.txt" As "?a" combines all lowercase letters, uppercase letters, digits and symbols - This would exhaust the whole 1-6 character password range. ?a is simply all the printable ENGLISH characters, but a password can also consist of characters from other languages, such as- but not limited to: Code: BULGARIAN: ˆÀÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÜÝÞßàâãäåæçèéêëìíîïðñòóôõö÷øùúüýþÿ Code: FRENCH: €ŒœŸ¡¿ÀÂÆÇÈÉÊËÎÏÔÙÛÜàâæçèéêëîïôùûüÿ |