Haschcat - Mask
#1
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
Reply
#2
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
Reply
#3
-i ?a?a?a?a?a?a
What would the complete code look like?
Reply
#4
(06-01-2024, 05:28 PM)cryptowallet Wrote: -i ?a?a?a?a?a?a 
What would the complete code look like?

-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: €ŒœŸ¡¿ÀÂÆÇÈÉÊËÎÏÔÙÛÜàâæçèéêëîïôùûüÿ
Reply