mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
28 lines
699 B
Text
28 lines
699 B
Text
// DIE's signature file
|
|
|
|
init("protector","CrypKey");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(PE.compareEP("8B1D........83FB00750AE83C000000E8..0A00008B44240850E8..020000A1"))
|
|
{
|
|
bDetected=1;
|
|
}
|
|
else if(PE.compareEP("E8........5883E805505F578BF781EF........83C639BA........8BDFB90B......8B06"))
|
|
{
|
|
sVersion="5.X-6.X";
|
|
bDetected=1;
|
|
}
|
|
else if(PE.compareEP("E8........E8........83F80075076A00E8"))
|
|
{
|
|
sVersion="5.6.X";
|
|
bDetected=1;
|
|
}
|
|
else if(PE.compareEP("833D........00753468........E8"))
|
|
{
|
|
sVersion="6.1X";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|