10 chars wpa password rule
#1
I would like to create a rule/mask/etc optimized for wpa.

I know the password is 10 characters long from UPPER HEX (0123456789ABCDEF).
The key space is 16^10.

Example pass: D637449ABB 25E0143A3F ABCDE01234 AABCDEF012 A1A1234567 8017C24CCF

Rules:
1) 10 chars long
2) no more than 5 alpha chars in the password (yes ABCDE01234 no ABCDEF0123)
3) no more than 2 consecutive chars (yes AABCDEF012 no AAABCDEF01)
4) no more than 2 equal numbers in the password (yes A1A1234567 no A1A1234516)
5) no more than 3 equal alpha chars in the password (yes 8017C24CCF, no C017C24CCF)
#2
There's no tool to do out of the box what you want to do. But there's tools to do some of the rules you want.

1) Basic mask, use hashcat
2) Policy, use PACK
3) Repeats, use maskprocessor
4) No such thing
5) No such thing
#3
(07-25-2016, 09:08 PM)atom Wrote: There's no tool to do out of the box what you want to do. But there's tools to do some of the rules you want.

1) Basic mask, use hashcat
2) Policy, use PACK
3) Repeats, use maskprocessor
4) No such thing
5) No such thing

Maybe for 4) and 5)

Write up a script, pass your list files in the script then outputting another list which only contains what you want then run the list with hashcat?