mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
19 lines
441 B
Text
19 lines
441 B
Text
// DIE's signature file
|
|
|
|
init("compiler","PureBasic");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(PE.compareEP("68....0000680000000068......00E8......0083C40C6800000000E8......00A3"))
|
|
{
|
|
sVersion="4.x";
|
|
bDetected=1;
|
|
}
|
|
else if(PE.compareEP("837C24080175..8B442404A3........E8"))
|
|
{
|
|
sVersion="4.x";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|