![]() |
Using DD to get the hash of a non-system partition encrypted by VeraCrypt - 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: Using DD to get the hash of a non-system partition encrypted by VeraCrypt (/thread-9074.html) |
Using DD to get the hash of a non-system partition encrypted by VeraCrypt - stumpped - 03-28-2020 Hello, I am trying to use DD for Windows to obtain the hash of a non-system partition that was encrypted via Veracrypt, but have run into a bit of a problem. The command I used to get the hash of the encrypted partition looks like this Code: dd if=\\?\Device\HarddiskVolume11 of=hash_output.txt bs=512 count=1 And from what I read in the FAQ on your site, this command should create a file called hash_output.txt that contains the encrypted hash that should, for example, look something similar to this: Code: (Šö÷…o¢–n[¨hìùlŒ‡¬»J`<Q›þIšê1ªCúÍbÔcN„ÐŒ3+d.dWr€-¡tä66¶ˆÎ... However, the output I am getting when issuing the DD command above looks more like this: Code: fb55 d397 2879 2f55 7653 24a3 c250 14d3 Some things to note: · I am 100% positive that the drive I am selecting in the DD command is the right drive. · There is only 1 encrypted partition on the drive that spans the entire size of the drive. · There is no physical / functional damage to the drive which would cause this issue. · This on an external 1tb drive that is connected via usb 3.0 (I have tried other cables and ports). · The same DD command worked fine for a test drive that I encrypted using the same parameters that were set for this drive. RE: Using DD to get the hash of a non-system partition encrypted by VeraCrypt - atom - 03-29-2020 You're right the information on the wiki is not fully correct. Use bs=512 count=4097 (not a typo) RE: Using DD to get the hash of a non-system partition encrypted by VeraCrypt - stumpped - 03-29-2020 (03-29-2020, 02:36 AM)atom Wrote: You're right the information on the wiki is not fully correct. Use bs=512 count=4097 (not a typo) Thanks, but that just seems to have created an even bigger file that looks like the hex dump example from before. For example: Code: .... This can't be the right output ..... Right ? RE: Using DD to get the hash of a non-system partition encrypted by VeraCrypt - undeath - 03-29-2020 if your dd in fact spits out ascii-hex it's probably broken |