"--stdout" not working in HC 0.39 - 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: "--stdout" not working in HC 0.39 (/thread-1016.html) |
"--stdout" not working in HC 0.39 - M@LIK - 03-28-2012 im not sure... but while im trying this command:: Code: hc64 -m0 h.hash d.dic -rr.rule --stdout Code: Usage: hashcat [options] hashfile [mask|wordfiles|directories] i tried more than once (in different ways) but ": (".. some1 would confirm please?? RE: "--stdout" not working in HC 0.39 - Xanadrel - 03-29-2012 Already noticed this, if you are on linux you can just add "/dev/null /dev/null" (2 times so) at the end of your command line and it will work. derp RE: "--stdout" not working in HC 0.39 - M@LIK - 03-29-2012 nope.. im using windows.. : | RE: "--stdout" not working in HC 0.39 - Xanadrel - 03-29-2012 Then you can make an empty file and append the name of the file 2 times in your command line. Like : Code: hc64 d.dic -rr.rule --stdout empty.txt empty.txt (Also for --stdout -m or the hashfile isn't needed) RE: "--stdout" not working in HC 0.39 - atom - 03-29-2012 Wait! /dev/null exists in windows, too. It is called NUL This is no joke. RE: "--stdout" not working in HC 0.39 - M@LIK - 03-29-2012 thanks 4 the info both of you [Xanadrel, atom]... works Code: hc64 d.dic -rr.rule --stdout NUL NUL |