mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
19 lines
452 B
Text
19 lines
452 B
Text
// DIE's signature file
|
|
|
|
init("packer","EXE Packer");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(MSDOS.compareEP("1E068CC383....2E........B9....8CC88ED88BF14E8BFE"))
|
|
{
|
|
sVersion="7.0";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("EB..1E068CC383....0E1F01......01......BE....B9....FCAD3BC174"))
|
|
{
|
|
sVersion="7.0";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|