Maskprocessor and CudaHashcat - 16 Numbers Bruteforce - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html) +--- Thread: Maskprocessor and CudaHashcat - 16 Numbers Bruteforce (/thread-4796.html) |
Maskprocessor and CudaHashcat - 16 Numbers Bruteforce - Hansla - 11-08-2015 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. RE: Maskprocessor and CudaHashcat - 16 Numbers Bruteforce - Xanadrel - 11-08-2015 How about not using increment mode ? Do you even know what it does ? RE: Maskprocessor and CudaHashcat - 16 Numbers Bruteforce - Hansla - 11-08-2015 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 RE: Maskprocessor and CudaHashcat - 16 Numbers Bruteforce - Xanadrel - 11-08-2015 Code: $ ./mp64.exe ?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d?d -q 3 | head Yeah, sure. RE: Maskprocessor and CudaHashcat - 16 Numbers Bruteforce - Hansla - 11-08-2015 ups, you are right. But what is than my mistake? RE: Maskprocessor and CudaHashcat - 16 Numbers Bruteforce - Xanadrel - 11-08-2015 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. RE: Maskprocessor and CudaHashcat - 16 Numbers Bruteforce - Hansla - 11-08-2015 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 Thanks |