Skip to content

Commit 2311dd9

Browse files
Add EA Game Authorization Management checking to paul.dll (#366)
* Add EA Game Authorization Management checking to paul.dll Checks if PA is using EA Game Authorization Management * Fix if else
1 parent f87ce49 commit 2311dd9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

BinaryObjectScanner/Protection/SecuROM.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ public class SecuROM : IExecutableCheck<PortableExecutable>, IPathCheck
2121

2222
name = pex.InternalName;
2323
if (name.OptionalEquals("paul.dll", StringComparison.OrdinalIgnoreCase))
24-
return $"SecuROM Product Activation v{pex.GetInternalVersion()}";
24+
if (pex.ProductName.OptionalEquals("drEAm"))
25+
return $"SecuROM Product Activation v{pex.GetInternalVersion()} - EA Game Authorization Management";
26+
else
27+
return $"SecuROM Product Activation v{pex.GetInternalVersion()}";
2528
else if (name.OptionalEquals("paul_dll_activate_and_play.dll"))
2629
return $"SecuROM Product Activation v{pex.GetInternalVersion()}";
2730
else if (name.OptionalEquals("paul_dll_preview_and_review.dll"))

0 commit comments

Comments
 (0)