How does -q and -r work with maskprocessor?
#5
I need to accomplish a complex scenario. I know the password is 10 Hex Uppercase keyspace (0123456789ABCDEF) but combinations wise, that's 1100 Billion possible passwords (16^10). What if I know that the password has only a max of 3 HEX characters and the rest are decimals, meaning I want mp64 to produce words like 43521A9870 or 9274A184B2 or A274E184B2 but NOT 43F2EA98C0 which has 4 HEX chars.

If I run something like this: mp64 -1 0123456789ABCDEF -r 3 ?1?1?1?1?1?1?1?1?1?1 then it will limit decimals as well as HEX to a maximum of 3 occurrences.

Tried the following but it gave me a syntax error:

mp64 -1 ABCDEF -r 3 -2 ?1?d ?2?2?2?2?2?2?2?2?2?2

My reasoning for "-2 ?1?d" is because I want it to be either a hex or decimal but be able to specify that the HEX chars (ABCDEF) only occur 3 times.

Can anyone help?


Messages In This Thread
RE: How does -q and -r work with maskprocessor? - by timonline86 - 09-03-2015, 02:19 PM