Empty hash? "Disk error"
#2
I think the problem is that you are trying to extract the data from a specific partition (e.g. /dev/sda1) while the guide here https://hashcat.net/wiki/doku.php?id=fre...pt_volumes says that you need to extract the data from that specific offset from the start of the whole disk (/dev/sda for instance).
This means that the command should probably look like this:
Code:
dd if=/dev/sda of=/root/Pobrane/hash.txt bs=1 skip=31744 count=512

Furthermore, the data that you have posted does not look encrypted at all, it's the unencrypted version. This could be because the real data is "hidden" within a second ("hidden") partition etc (I'm not totally sure about this, would need to research it).
Are you 100% sure that on startup of this disk you see the VeraCrypt boot loader and need to insert the VeraCrypt password before starting the system? If that's the case, you should follow the faq/guide and extract the data from the volume/disk (and not just from the partition).


Messages In This Thread
Empty hash? "Disk error" - by Trolltramp - 12-29-2017, 04:18 AM
RE: Empty hash? "Disk error" - by philsmd - 12-29-2017, 08:51 AM
RE: Empty hash? "Disk error" - by Trolltramp - 12-29-2017, 01:53 PM