09-27-2021, 02:33 AM
Hello. I'm trying to learn, but I can't get a mask that gets a wifi password of a size of between 6 and 12 characters, which can be uppercase and lowercase letters, numbers and signs.
Alphanumeric password + signs
|
09-27-2021, 02:33 AM
Hello. I'm trying to learn, but I can't get a mask that gets a wifi password of a size of between 6 and 12 characters, which can be uppercase and lowercase letters, numbers and signs.
09-27-2021, 09:25 AM
(09-27-2021, 02:33 AM)LasPer Wrote: Hello. I'm trying to learn, but I can't get a mask that gets a wifi password of a size of between 6 and 12 characters, which can be uppercase and lowercase letters, numbers and signs. Hey The mask you want to use is "?a" So for 6 it would be "?a?a?a?a?a?a" Just be aware, even if you have a great machine that around 8 characters this will take years to finish
This will do it:
Code: I prefer this: Information how to use masks is here: https://hashcat.net/wiki/doku.php?id=mask_attack But it doesn't make sense to do this on WPA Code: $ hashcat -m 22000 hashfile.hc22000 -i --increment-mi=6 -a 3 -1 ?l?u?d?s ?1?1?1?1?1?1?1?1?1?1?1?1 The minimum length of a WPA-PSK (according to 802.11 specification) is 8 characters: https://www.skillset.com/questions/what-...characters All PSKs below 8 characters are rejected by hashcat if you try it on hashmode 22000 The calculated key space is really big and PBKDF2 (used to calculate the PMK) is a very slow algo. If you don't have much GPU power (e.g. several machines, running 8 x RTX3090), it will take a while to recover the PSK. https://en.wikipedia.org/wiki/Pbkdf2
09-30-2021, 01:23 AM
Thanks. It helped me.
|
« Next Oldest | Next Newest »
|