mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
19 lines
470 B
Text
19 lines
470 B
Text
// DIE's signature file
|
|
|
|
init("protector","ComProtector");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(MSDOS.compareEP("E9....E8....5E8BEE81......8D......B9....F61446E2..4B"))
|
|
{
|
|
sVersion="1.0b";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("E9....B9....BB....BF....2E....34..FEC8C0....2E....2E....2E....4743E2"))
|
|
{
|
|
sVersion="1.0";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|