05-17-2012, 11:44 AM
(05-17-2012, 11:39 AM)blaz Wrote: you need to set them all in the one form, ie -1 ?l?u?d ?1?1?1?1?1?1
cudaHashcat-plus64.exe --attack-mode 3 --remove --outfile C:\Users\Nicholas\Desktop\file.txt.out --outfile-format 2 -1 ?u?l?d C:\Users\Nicholas\Desktop\file.txt ?1?1?1?1?1?1
in plus it only runs the length you input, so for the command above it will only run for length 6, it does increment automatically in lite
Hey presto! It works. But, in length I notice it doesn't allow bruteforcing? Only "Rules". I may look into that later, but at the moment I'll just do:
String args = "cudaHashcat-plus64.exe --attack-mode 3 --custom-charset1 ?l?u?d --outfile C:\Users\Nicholas\Desktop\file.txt.out --outfile-format 2 C:\Users\Nicholas\Desktop\file.txt ";
for(int i = 1; i < MAXCHARCTERS; i++) {
args += "?1";
}
startProcess(args);
Or something. Thanks dude