mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 21:33:08 +00:00
14 lines
278 B
C#
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;
|
|
}
|
|
}
|
|
}
|