Skip to content
4 changes: 4 additions & 0 deletions BinaryObjectScanner/Protection/SecuROM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ public class SecuROM : IExecutableCheck<PortableExecutable>, IPathCheck
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+";

Expand Down
Loading