05-28-2012, 07:16 PM
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.
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.
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.