diff --git a/BinaryObjectScanner/Protection/SecuROM.cs b/BinaryObjectScanner/Protection/SecuROM.cs index b8d05c67..3816c026 100644 --- a/BinaryObjectScanner/Protection/SecuROM.cs +++ b/BinaryObjectScanner/Protection/SecuROM.cs @@ -21,7 +21,10 @@ public class SecuROM : IExecutableCheck, IPathCheck name = pex.InternalName; if (name.OptionalEquals("paul.dll", StringComparison.OrdinalIgnoreCase)) - return $"SecuROM Product Activation v{pex.GetInternalVersion()}"; + if (pex.ProductName.OptionalEquals("drEAm")) + return $"SecuROM Product Activation v{pex.GetInternalVersion()} - EA Game Authorization Management"; + else + return $"SecuROM Product Activation v{pex.GetInternalVersion()}"; else if (name.OptionalEquals("paul_dll_activate_and_play.dll")) return $"SecuROM Product Activation v{pex.GetInternalVersion()}"; else if (name.OptionalEquals("paul_dll_preview_and_review.dll"))