correct command line - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: correct command line (/thread-6917.html) |
RE: correct command line - iiidefconiii - 12-23-2017 (12-23-2017, 03:15 PM)philsmd Wrote: That's not a contradiction. mm sry never seen that third dash my bad Im think im almost there, i have one more question do: So to create the raw file the command is? (using ddrelease on windows) ddrelease64.exe if=hash.raw of=MyEncrpytionP1.hc bs=512 count=1? Or should it be the other way around? ddrelease64.exe if=MyEncrpytionP1.hc of=hash.raw bs=512 count=1? And i create a file called hash.raw? and finally: hashcat64.exe -m 13721 -a 0 -w 4 --veracrypt-pim 2406 -o hit.txt hash.raw dict.txt RE: correct command line - undeath - 12-23-2017 (12-23-2017, 03:34 PM)iiidefconiii Wrote: Or should it be the other way around? This one. With the other one you might destroy your veracrypt volume. if=input file, of=output file RE: correct command line - iiidefconiii - 12-23-2017 (12-23-2017, 03:43 PM)undeath Wrote:(12-23-2017, 03:34 PM)iiidefconiii Wrote: Or should it be the other way around? thank you so the rest i posted should be ok aswell? hashcat64.exe -m 13721 -a 0 -w 4 --veracrypt-pim 2406 -o hit.txt hash.raw dict.txt instead of running it directly of the veracrypt file? Once agian sorry for all the question just wanne make sure im doing thing as it should, trying this for almost an half year now Without success. Today i just got some extra hope And its also correct to create the hash.raw manually, right? So i should be good to go RE: correct command line - iiidefconiii - 12-25-2017 (12-23-2017, 03:15 PM)philsmd Wrote: That's not a contradiction. here the example shows a = sign. does this mather? --veracrypt-pim | Num | VeraCrypt personal iterations multiplier | --veracrypt-pim=1000 RE: correct command line - royce - 12-25-2017 One-character parameters (single hyphen) don't work with equals signs, but multi-character (two hyphens) should work with equals signs. Code: $ echo blah | hashcat --hash-type=1000 --stdout |