mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
18 lines
477 B
C#
18 lines
477 B
C#
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
public class ThreePLock
|
|
{
|
|
public static string CheckContents(string fileContent)
|
|
{
|
|
if (fileContent.Contains(".ldr")
|
|
|| fileContent.Contains(".ldt"))
|
|
// || fileContent.Contains("Y" + (char)0xC3 + "U" + (char)0x8B + (char)0xEC + (char)0x83 + (char)0xEC + "0SVW")
|
|
{
|
|
return "3PLock";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|