masking
#1
hello there, i like to try all the possible combinations of
  • uppercase letters
  • numbers
  • in a 10 digit code (preset WPA)
  • so instead of making a huge password list i thought i should use hashcat
  • lets say the first 6 chars are known 6ABE43
  • my problem is with masking, can i combine ?d and ?u for the 7th,8th,9th and 10th position?

  • I tried ?ud and it accepts it but i think it accepts ?u and counts "d" as a character and not a  numeric charset

  • hashcat -m 2500 test1.hccap -a 3 6ABE43?ud?ud?ud?ud?ud?ud -session=test1

  • i want to try upper case charset AND numbers for each of the last 4 positions (7,8,9,10)...how can i do it?

  • thanks
#2
You were close:

-1 ?u?d 6ABE43?1?1?1?1?1
#3
(02-15-2016, 11:51 AM)atom Wrote: You were close:

-1 ?u?d 6ABE43?1?1?1?1?1

a hybrid one then, didn't know the ?1 .. thanks a lot