diff --git a/BinaryObjectScanner/Protection/SecuROM.cs b/BinaryObjectScanner/Protection/SecuROM.cs index af8bcfe2..01b9e828 100644 --- a/BinaryObjectScanner/Protection/SecuROM.cs +++ b/BinaryObjectScanner/Protection/SecuROM.cs @@ -38,6 +38,10 @@ namespace BinaryObjectScanner.Protection if (pex.ContainsSection("matrosch", exact: true)) return $"SecuROM Matroschka Package"; + // Get the rcpacker section, if it exists + if (pex.ContainsSection("rcpacker", exact: true)) + return $"SecuROM Release Control"; + if (pex.ContainsSection(".dsstext", exact: true)) return $"SecuROM 8.03.03+";