06-01-2024, 04:24 PM
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
?a?a?a?a?a?a
Haschcat - Mask
|
06-01-2024, 04:24 PM
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
06-01-2024, 05:16 PM
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
06-01-2024, 05:28 PM
-i ?a?a?a?a?a?a
What would the complete code look like?
06-03-2024, 07:05 AM
(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: €ŒœŸ¡¿ÀÂÆÇÈÉÊËÎÏÔÙÛÜàâæçèéêëîïôùûüÿ |
« Next Oldest | Next Newest »
|