Am I doing something wrong ? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: Am I doing something wrong ? (/thread-1024.html) |
Am I doing something wrong ? - Mem5 - 03-30-2012 Hi, With the latest hashcat-gui version I did (for MD5 hash): Code: hashcat-cli64.exe --attack-mode 3 --output-file C:\Users\M\Desktop\h.txt.out --custom-charset1 azerty --threads 4 C:\Users\M\Desktop\hashes.txt it gives me : Code: Usage: hashcat [options] hashfile [mask|wordfiles|directories] What is wrong ? Thanks RE: Am I doing something wrong ? - Xanadrel - 03-30-2012 The mask is missing in your command line, try with something like : Code: hashcat-cli64.exe --attack-mode 3 --output-file C:\Users\M\Desktop\h.txt.out --custom-charset1 azerty --threads 4 C:\Users\M\Desktop\hashes.txt ?1?1?1?1?1?1?1?1 For length 8 with the charset "azerty". RE: Am I doing something wrong ? - Mem5 - 03-30-2012 Thanks, it works better. But, how can I use at the same time Quote:--bf-pw-min=NUM password length minimum and the mask ? They seem incompatible. For eg, if I want to bruteforce on digits only from 1 to 8 chars : Code: --pw-min=1 --pw-max=8 ?d RE: Am I doing something wrong ? - atom - 03-30-2012 Brute-Force is no longer supported in hashcat since its an outdated technique. Please use mask-attack which replaces it. RE: Am I doing something wrong ? - Mem5 - 03-30-2012 Ok. 1) So --bf-min and --bf-max in the hashcat help are useless ? 2) Incremental switch (-i) has disappeared too ? To 'emulate' bf-min' and 'bf-max' should I write : Quote:hashcat-cli64.exe -m 0 -a 3 -o h.txt.out --custom-charset1 0123456789 hashes.txt ?d? RE: Am I doing something wrong ? - atom - 03-30-2012 yes, exactly |