mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
19 lines
464 B
Text
19 lines
464 B
Text
// DIE's signature file
|
|
|
|
init("protector","ExeLock");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(MSDOS.compareEP("BA....BF....EB..EA........79..7F..7E..1C..4878..E3..4514..5AE9"))
|
|
{
|
|
sVersion="1.5";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("068CC88EC0BE....26....34..26....4681......75..40B3..B3..F3"))
|
|
{
|
|
sVersion="1.0";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|