Posts: 2
Threads: 1
Joined: Nov 2022
11-17-2022, 11:58 PM
so I tried wpa/22000 8 lowercase digits with Brute-Force and I wanted to reduce the number of possible passwords there is
What is the Rule or mask used to reject passwords that do not contain vowels (a,i,u,e,o) in Brute-Force mode?
Posts: 374
Threads: 0
Joined: Nov 2017
11-18-2022, 12:50 AM
(This post was last modified: 11-18-2022, 01:02 AM by slyexe.
Edit Reason: my bad
)
To create custom mask you will apply different parameters to your command. So for example using the default mask selections you can do all lowercase + digits simply by using ?l?d and attaching it to a custom character mask by using -1 thru -4
Code:
hashcat -a 3 -m 22000 -1 ?l?d hash.hc22000 ?1?1?1?1?1?1?1?1
So to define different parameters for different positions you can always create upto 4 different custom mask.
Code:
hashcat -a -m 22000 -1 ?l?d -2 bcdfghjklmnpqrstuvwxyz?d -3 aeiou hash.hc22000 ?1?3?2?2?1?3?3?2
Sorry I also misread your question, from my knowledge there is no way to reject passwords within hashcat that do not contain a vowel. You would need to use a different piece of software and tunnel it into hashcat.
Policygen PACK would probably be your best bet for creating wordlist with specific requirements.
https://github.com/iphelix/pack
Posts: 2
Threads: 1
Joined: Nov 2022
11-18-2022, 02:20 AM
thanks, maybe with that I only need to try 8 hashes with one part using a.i.u.e.o only