I need help with syntax - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html) +--- Thread: I need help with syntax (/thread-3668.html) |
RE: I need help with syntax - undeath - 09-13-2014 If you set a threshold the amount of words will be reduced. Markov still kicks in, but will try all possible combinations (tried with highest probability first), if run with the default threshold. Comparable to a smart brute-force. RE: I need help with syntax - Quest - 09-14-2014 ah, I kinda see now. I'm gonna need some advice from the more experimented. What's a good threshold? -t 1, -t 5, -t 267, ? RE: I need help with syntax - epixoip - 09-14-2014 your threshold would need to be less than 26 for this mask for it to have any effect RE: I need help with syntax - Quest - 09-14-2014 look at that now! -t 10 = 3 hours, 57 mins Code: root@The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali):~# cd /usr/share/cudahashcat/ && ./cudaHashcat64.bin -w 3 -t 10 -m 2500 /root/capture.hccap -a 3 /usr/share/cudahashcat/masks/my.hcmask -t 20 = 10 days, 13 hours Code: root@The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali):~# cd /usr/share/cudahashcat/ && ./cudaHashcat64.bin -w 3 -t 20 -m 2500 /root/capture.hccap -a 3 /usr/share/cudahashcat/masks/my.hcmask getting somewhere. thanks!! To see the actual output, how can I invoke maskprocessor? What's the syntax for it to show me the actual generated words? RE: I need help with syntax - epixoip - 09-14-2014 maskprocessor is classic incremental, not markov. so you would want to use statsprocessor to see the actual generated words. RE: I need help with syntax - Quest - 09-14-2014 let me rephrase my question then. How can I see the output generated from CudaHashcat when using the above commands? I'm not a big fan of working blind. RE: I need help with syntax - epixoip - 09-14-2014 oclHashcat generates plaintext candidates on the GPU, and thus is not able to output candidates to stdout. So again, you would use statsprocessor. RE: I need help with syntax - Quest - 09-14-2014 Thanks epixoip. How can I instruct oclHashcat/Markov to never use two or more vowels next to each other, and to never use three or more consonants next to each other?? In other words that would be permitted: Orange44 That would not: Laupnr44 RE: I need help with syntax - epixoip - 09-14-2014 oclHashcat does not have any facilities to support such a feature. RE: I need help with syntax - Quest - 09-14-2014 (09-14-2014, 01:59 PM)epixoip Wrote: oclHashcat does not have any facilities to support such a feature.ouch. Thx. Most human generated passwords are pronounceable words made of vowels and consonants alternatively. Passwords that ppl create are logical, as it will be more difficult to invent an illogical password, and also remember it. Lasors165 Capitalized consonant | vowel | consonant | vowel | consonant | consonant | three digit number. That would be a nice addition if you guys can implement that feature eventually. Markov already does a nice job at eliminating char sets like Gxktui62, but I still see some like Sascll98 from statsprocessor, and that will most likely never be a password, and therefore making the process longer than it has to. |