From fcad7db5ab0cb6e617ab2c8e96357e1922bf686e Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 8 Dec 2022 14:44:15 -0800 Subject: [PATCH] Add note to CD-Lock --- BurnOutSharp/ProtectionType/CDLock.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BurnOutSharp/ProtectionType/CDLock.cs b/BurnOutSharp/ProtectionType/CDLock.cs index 797da301..d66dc6f1 100644 --- a/BurnOutSharp/ProtectionType/CDLock.cs +++ b/BurnOutSharp/ProtectionType/CDLock.cs @@ -34,6 +34,8 @@ namespace BurnOutSharp.ProtectionType if (sections == null) return null; + // TODO: Investigate "VirtualProtect" in Hint/Name table + // Get the .data/DATA section, if it exists var dataSectionRaw = pex.GetFirstSectionData(".data") ?? pex.GetFirstSectionData("DATA"); if (dataSectionRaw != null)