Files
BinaryObjectScanner/BurnOutSharp/ProtectionType/EACdKey.cs
2019-09-27 23:52:24 -07:00

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;
}
}
}