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

15 lines
343 B
C#

namespace BurnOutSharp.ProtectionType
{
public class Armadillo
{
public static string CheckContents(string fileContent)
{
if (fileContent.Contains(".nicode" + (char)0x00)
|| fileContent.Contains("ARMDEBUG"))
return "Armadillo";
return null;
}
}
}