Stop When Found
#1
I am brute forcing an uppercase password of 8 characters using the code below. I have cut it down for simplicity. I also know that I didn't need to make a custom character set but this is just test code.

Code:
oclHashcat-plus32.exe -a 3 --hash-type 2500 -n 160 -1 ABCDEFGHIJKLMNOPQRSTUVWXYZ test.hccap -o Found.txt ?1?1?1?1?1?1?1A
ECHO A Finished >> 8_Upper.txt
oclHashcat-plus32.exe -a 3 --hash-type 2500 -n 160 -1 ABCDEFGHIJKLMNOPQRSTUVWXYZ test.hccap -o Found.txt ?1?1?1?1?1?1?1B
ECHO B Finished >> 8_Upper.txt
oclHashcat-plus32.exe -a 3 --hash-type 2500 -n 160 -1 ABCDEFGHIJKLMNOPQRSTUVWXYZ test.hccap -o Found.txt ?1?1?1?1?1?1?1C
ECHO C Finished >> 8_Upper.txt

My question is how can I stop oclHashcat-plus from moving on to the next line if say for example the first line finds it ? This will allow me to leave it running without constantly having to check up on it !

Thank you for any suggestions. Smile


Messages In This Thread
Stop When Found - by Hash-IT - 05-28-2012, 07:16 PM
RE: Stop When Found - by undeath - 05-28-2012, 07:23 PM
RE: Stop When Found - by Hash-IT - 05-28-2012, 07:26 PM
RE: Stop When Found - by M@LIK - 05-28-2012, 08:18 PM
RE: Stop When Found - by Hash-IT - 05-28-2012, 10:23 PM
RE: Stop When Found - by M@LIK - 05-28-2012, 10:38 PM
RE: Stop When Found - by Hash-IT - 05-28-2012, 10:48 PM
RE: Stop When Found - by M@LIK - 05-28-2012, 10:55 PM
RE: Stop When Found - by Hash-IT - 05-28-2012, 11:02 PM