diff --git a/BurnOutSharp/ProtectionType/SecuROM.cs b/BurnOutSharp/ProtectionType/SecuROM.cs index 8a605357..4e011ae3 100644 --- a/BurnOutSharp/ProtectionType/SecuROM.cs +++ b/BurnOutSharp/ProtectionType/SecuROM.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Concurrent; using System.Collections.Generic; -using System.Linq; using System.Text; using BurnOutSharp.ExecutableType.Microsoft.PE; using BurnOutSharp.Interfaces; @@ -30,6 +29,10 @@ namespace BurnOutSharp.ProtectionType if (matroschSection) return $"SecuROM Matroschka Package"; + bool dsstextSection = pex.ContainsSection(".dsstext", exact: true); + if (dsstextSection) + return $"SecuROM 8.03.03+"; + // Get the .securom section, if it exists bool securomSection = pex.ContainsSection(".securom", exact: true); if (securomSection)