mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-04-26 08:10:32 +00:00
Add detection for FrontLine ProActive (#361)
* Add detection for FrontLine ProActive * Wrap samples onto newlines Wrap samples onto newlines
This commit is contained in:
committed by
GitHub
parent
1ff1281c8f
commit
cfe9825af7
@@ -52,6 +52,14 @@ namespace BinaryObjectScanner.Protection
|
||||
return $"StarForce {pex.GetInternalVersion()}";
|
||||
else if (name.OptionalContains("Protection Technology")) // Protection Technology (StarForce)?
|
||||
return $"StarForce {pex.GetInternalVersion()}";
|
||||
|
||||
// FrontLine ProActive (digital activation), samples:
|
||||
//https://dbox.tools/titles/pc/46450FA4/
|
||||
//https://dbox.tools/titles/pc/4F430FA0/
|
||||
//https://dbox.tools/titles/pc/53450FA1/
|
||||
name = pex.GetVersionInfoString(key: "TradeName");
|
||||
if (name.OptionalContains("FL ProActive"))
|
||||
return $"FrontLine ProActive";
|
||||
|
||||
// TODO: Decide if internal name checks are safe to use.
|
||||
name = pex.InternalName;
|
||||
|
||||
Reference in New Issue
Block a user