mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 13:45:57 +00:00
14 lines
306 B
C#
14 lines
306 B
C#
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
public class EACdKey
|
|
{
|
|
public static string CheckContents(string fileContent)
|
|
{
|
|
if (fileContent.Contains("ereg.ea-europe.com"))
|
|
return "EA CdKey Registration Module";
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|