Help with simple mask - 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: Help with simple mask (/thread-5393.html) |
Help with simple mask - mrmike - 04-10-2016 Why is this working? Code: hashcat-cli64.exe --stdout -a 3 -m 0 hash.txt -i -1 ?u ?1?1?1?1?1?1?1?1 It seems to be using the hash as charset RE: Help with simple mask - Xanadrel - 04-10-2016 I don't think you know what --stdout does. RE: Help with simple mask - mrmike - 04-10-2016 Actually, when I remove --stdout it seems to work fine. RE: Help with simple mask - mrmike - 04-10-2016 (04-10-2016, 06:31 PM)Xanadrel Wrote: I don't think you know what --stdout does. Evidently, I thought it was a way to see what is being generated. RE: Help with simple mask - atom - 04-13-2016 No that's not the purpose of --stdout. It's used to pipe or redirect the candidates. In your case the hash is read as maskfile and since it does not include any wildcards it's printed as-is. |