mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
19 lines
443 B
Text
19 lines
443 B
Text
// DIE's signature file
|
|
|
|
init("packer","COMPACK");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(MSDOS.compareEP("BE....E8....5D83....55505351520E070E1F8BCE"))
|
|
{
|
|
sVersion="4.5";
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("BD....50068CCB03DD8CD24B8EDBBE....BF....8EC2B9....F3A54A4D75"))
|
|
{
|
|
sVersion="5.1";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|