Using hashcat with maskprocessor - here: veracrypt - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html) +--- Thread: Using hashcat with maskprocessor - here: veracrypt (/thread-8575.html) Pages:
1
2
|
Using hashcat with maskprocessor - here: veracrypt - Snoop - 08-18-2019 Hello I have forgotton a part of my password for a VeraCrypt Container. So I want to find it again with the mask processor. For doing that I used following command Code: hashcat -a 3 13711 partIremember?d?s --increment 17:19 /path/to/the/My\Volume For that I've got the following answer Code: hashcat (v5.1.0) starting... Is there anybody who could give me a hint, what I've made wrong? TIA Snoop RE: Using hashcat with maskprocessor - here: veracrypt - royce - 08-18-2019 Is the container mounted? You'll need to provide the path to the raw file, the raw device, or else extract the first 512 bytes and save that to a file to provide to hashcat. Also, from your cmdline ... if you don't remember 17 to 19 additional characters, you won't crack it any time soon. RE: Using hashcat with maskprocessor - here: veracrypt - Snoop - 08-18-2019 Good evening royce ! Thank you for your answer! (08-18-2019, 05:19 PM)royce Wrote: Is the container mounted?No, it isn't mounted. You'll need to provide the path to the raw file, the raw device, or else extract the first 512 bytes and save that to a file to provide to hashcat.[/quote Wrote:How do I extract the first 512 bytes?Oh no, that seems to be one mistake. I don't remember 4 to 6 additional characters. 17 to 19 is the total length . RE: Using hashcat with maskprocessor - here: veracrypt - undeath - 08-18-2019 You're missing "-m" in front of the hash mode and "--increment 17:19" is absolutely the wrong syntax. Where did you find that? RE: Using hashcat with maskprocessor - here: veracrypt - royce - 08-18-2019 Ha! I think I've just always wanted that syntax; didn't even give me pause. RE: Using hashcat with maskprocessor - here: veracrypt - Snoop - 08-19-2019 (08-18-2019, 07:13 PM)undeath Wrote: You're missing "-m" in front of the hash mode and "--increment 17:19" is absolutely the wrong syntax. Where did you find that?Ok, thank you undeath ! I just can't tell you, where I found this. But I've read it in a howto - anywhere. What would be the right syntax, when I'm looking for 4 to 6 unknown characters? TIA Best Snoop RE: Using hashcat with maskprocessor - here: veracrypt - undeath - 08-19-2019 Code: hashcat -h | grep increment RE: Using hashcat with maskprocessor - here: veracrypt - Snoop - 08-19-2019 (08-19-2019, 12:24 PM)undeath Wrote: Code: hashcat -a 3 -m 13711 part_I_remember?a?s --increment-min=4 --increment-max=6 right? Thank you in every case! RE: Using hashcat with maskprocessor - here: veracrypt - philsmd - 08-19-2019 you need to add --increment too the --increment command line switch enables the increment feature (and min/max options are further restrictions/limits) RE: Using hashcat with maskprocessor - here: veracrypt - Snoop - 08-19-2019 (08-19-2019, 01:35 PM)philsmd Wrote: you need to add --increment too Thank you Phil ! Code: hashcat -a 3 -m 13711 part_I_remember?d?s --increment --increment-min=4 --increment-max=6 I'm going to try it! |