diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-06-10 18:08:11 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:19:44 +0100 |
commit | f34d894f6e53a033678fe2f9faba0c85e7cb0728 (patch) | |
tree | 9845c3038ca7e411798bc7810de19961a3acbc9d | |
parent | 7875d3ec3fb130e7db586d977c8f4f21f736963d (diff) | |
download | VeraCrypt-f34d894f6e53a033678fe2f9faba0c85e7cb0728.tar.gz VeraCrypt-f34d894f6e53a033678fe2f9faba0c85e7cb0728.zip |
Detect correctly VeraCrypt rescue disk by looking for the little-endian encoding of "Vera" instead of "True".
-rw-r--r-- | src/Boot/Windows/BootMain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Boot/Windows/BootMain.cpp b/src/Boot/Windows/BootMain.cpp index f1df2e93..6df82bda 100644 --- a/src/Boot/Windows/BootMain.cpp +++ b/src/Boot/Windows/BootMain.cpp @@ -1081,7 +1081,7 @@ void main () // Check whether the user is not using the Rescue Disk to create a hidden system
if (ReadWriteMBR (false, BootDrive, true) == BiosResultSuccess
- && *(uint32 *) (SectorBuffer + 6) == 0x65757254
+ && *(uint32 *) (SectorBuffer + 6) == 0x61726556
&& *(uint32 *) (SectorBuffer + 10) == 0x70797243
&& (SectorBuffer[TC_BOOT_SECTOR_CONFIG_OFFSET] & TC_BOOT_CFG_MASK_HIDDEN_OS_CREATION_PHASE) != TC_HIDDEN_OS_CREATION_PHASE_NONE)
{
|