Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion BinaryObjectScanner/Protection/SecuROM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ public class SecuROM : IExecutableCheck<PortableExecutable>, 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"))
Expand Down
Loading