mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-08 18:06:34 +00:00
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:
committed by
GitHub
parent
f87ce49f7e
commit
2311dd9cc8
@@ -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"))
|
||||
|
||||
Reference in New Issue
Block a user