mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
50 lines
1.1 KiB
Text
50 lines
1.1 KiB
Text
// DIE's signature file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("protector","PROTECT! EXE/COM");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(MSDOS.compareEP("FD8A....80....1E80....0E0702F632D280....0E00C11F81......80....26........22ECBF....EB"))
|
|
{
|
|
sVersion="5.5";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("FD1E2Efe......81c5....33ef81fd....13fd0e29d7"))
|
|
{
|
|
sVersion="5.5";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("0e071e0e1fbb"))
|
|
{
|
|
sVersion="5.5";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("0e071e0e1fbd"))
|
|
{
|
|
sVersion="5.5";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("1E0E0E1F07BA"))
|
|
{
|
|
sVersion="5.0";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("1E0E0E1F07BF"))
|
|
{
|
|
sVersion="5.0";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("1E0E0E1F07BE....d1"))
|
|
{
|
|
sVersion="5.0";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("1E0E0E1F07BB....81eb"))
|
|
{
|
|
sVersion="5.0";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|