mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
15 lines
No EOL
401 B
JavaScript
15 lines
No EOL
401 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
init("packer", "EXE Packer");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("1E068CC383....2E........B9....8CC88ED88BF14E8BFE")) {
|
|
sVersion = "7.0";
|
|
bDetected = true;
|
|
} else if (MSDOS.compareEP("EB$$1E068CC383....0E1F011E....011E....BE....B9....FCAD3BC174")) {
|
|
sVersion = "7.0";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |