From 655a8adb1c3a3643f65e9dd724bdf9874f0026e4 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 11 Jul 2022 10:08:08 -0700 Subject: [PATCH] Disable `.shr` section for SecuROM for now --- BurnOutSharp/ProtectionType/SecuROM.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/BurnOutSharp/ProtectionType/SecuROM.cs b/BurnOutSharp/ProtectionType/SecuROM.cs index 4e011ae3..e09c8d1c 100644 --- a/BurnOutSharp/ProtectionType/SecuROM.cs +++ b/BurnOutSharp/ProtectionType/SecuROM.cs @@ -39,10 +39,12 @@ namespace BurnOutSharp.ProtectionType return $"SecuROM {GetV7Version(pex)}"; // TODO: This needs a lot of verification, including version - // Get the .shr section, if it exists - bool shrSection = pex.ContainsSection(".shr", exact: true); - if (shrSection) - return $"SecuROM 8 (White Label)"; + // Disabled until overmatching can be solved + + //// Get the .shr section, if it exists + //bool shrSection = pex.ContainsSection(".shr", exact: true); + //if (shrSection) + // return $"SecuROM 8 (White Label)"; // Get the .sll section, if it exists bool sllSection = pex.ContainsSection(".sll", exact: true);