mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
19 lines
448 B
Text
19 lines
448 B
Text
// DIE's signature file
|
|
|
|
init("protector","Alex Protector");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(PE.compareEP("60E8000000005D81ED06104000E824000000"))
|
|
{
|
|
sVersion="1.0";
|
|
bDetected=1;
|
|
}
|
|
else if(PE.compareEP("60E801000000C783C40433C9E8010000006883C404E8010000006883C404"))
|
|
{
|
|
sVersion="0.4 beta 1";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|