diff --git a/BinaryObjectScanner/Protection/SecuROM.cs b/BinaryObjectScanner/Protection/SecuROM.cs index 3816c026..0f59c174 100644 --- a/BinaryObjectScanner/Protection/SecuROM.cs +++ b/BinaryObjectScanner/Protection/SecuROM.cs @@ -21,14 +21,20 @@ namespace BinaryObjectScanner.Protection name = pex.InternalName; if (name.OptionalEquals("paul.dll", StringComparison.OrdinalIgnoreCase)) + { 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")) + { return $"SecuROM Product Activation v{pex.GetInternalVersion()}"; + } name = pex.OriginalFilename; if (name.OptionalEquals("paul_dll_activate_and_play.dll"))