type example.dict
#5
Code:
hashcat64.exe -m 400 example400.hash example.dict

hashcat opens the dictionary, scans it and produces the stats you see.

Code:
type example.dict | hashcat64.exe -m 400 example400.hash

type opens the dictionary and feeds the contents to hashcat. hashcat doesn't know what's coming - it's being fed from stdin.


Messages In This Thread
type example.dict - by freeavastuser - 03-15-2017, 08:19 PM
RE: type example.dict - by rico - 03-15-2017, 09:42 PM
RE: type example.dict - by atom - 03-16-2017, 10:21 AM
RE: type example.dict - by freeavastuser - 03-16-2017, 11:07 AM
RE: type example.dict - by rico - 03-16-2017, 11:49 AM
RE: type example.dict - by freeavastuser - 03-16-2017, 12:36 PM