mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 13:46:03 +00:00
18 lines
523 B
C#
18 lines
523 B
C#
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
public class EXEStealth
|
|
{
|
|
public static string CheckContents(string fileContent)
|
|
{
|
|
if (fileContent.Contains("??[[__[[_" + (char)0x00 + "{{" + (char)0x0
|
|
+ (char)0x00 + "{{" + (char)0x00 + (char)0x00 + (char)0x00 + (char)0x00 + (char)0x0
|
|
+ (char)0x00 + (char)0x00 + (char)0x00 + (char)0x00 + "?;??;??"))
|
|
{
|
|
return "EXE Stealth";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|