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
This commit is contained in:
HeroponRikiBestest
2025-05-06 15:51:40 -04:00
committed by GitHub
parent f87ce49f7e
commit 2311dd9cc8

View File

@@ -21,7 +21,10 @@ namespace BinaryObjectScanner.Protection
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"))