Maskprocessor and CudaHashcat - 16 Numbers Bruteforce
#1
Hello Everybdoy,
I'm trying to brutforce an 16 Numbers Password. The Password has only numbers and a max of 3 double nummbers.
As example, the password couldbe: 1112345556789223

I'm working with Windows 7 x64. I've entered the following:

Code:
"maskprocessor-0.73\mp64.exe" -i --increment=16:16 ?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d -q 3 | "cudaHashcat-1.37\cudaHashcat64.exe" -m 2500 output.hccap

But as far as I can see, it is not starting with 16 numbers length. In the Progress stands 1769472 and so on...
What am I doing wrong?
How can I start with a length of 16 numbers?

Hope you can help me with that. Thanks.
#2
How about not using increment mode ?
Do you even know what it does ?
#3
As Far as I unterstand increment means "start : end"
So Start with 16, end with 16 would be "16:16" ?

Even If i try it without increment mode, it is starting with 8 numbers.
Code:
"maskprocessor-0.73\mp64.exe" ?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d -q 3 | "cudaHashcat-1.37\cudaHashcat64.exe" -m 2500 output.hccap
#4
Code:
$ ./mp64.exe ?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d -q 3 | head 0010010010010010 0010010010010011 0010010010010012 0010010010010013 0010010010010014 0010010010010015 0010010010010016 0010010010010017 0010010010010018 0010010010010019

Yeah, sure.
#5
ups, you are right. But what is than my mistake?

[Image: hashcat.png]
#6
I would guess you stopped cudaHashcat (or it would say exhausted), when you use pipe it doesn't know the keyspace, so it will periodically print how many words it processed.
Looks like there is no real issue here.
#7
Okay, so at this point it has finished with 1867776 operations, but it is not showing the current keypharse.
So, everything is okay. Can be closed at this point Smile

Thanks