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

14 lines
278 B
C#

namespace BurnOutSharp.ProtectionType
{
public class PECompact
{
public static string CheckContents(string fileContent)
{
if (fileContent.Contains("PEC2"))
return "PE Compact 2";
return null;
}
}
}