mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
16 lines
No EOL
446 B
JavaScript
Executable file
16 lines
No EOL
446 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: horsicq <horsicq@gmail.com>
|
|
|
|
meta("packer", "COMPACK");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("BE....E8....5D83....55505351520E070E1F8BCE")) {
|
|
sVersion = "4.5";
|
|
bDetected = true;
|
|
} else if (MSDOS.compareEP("BD....50068CCB03DD8CD24B8EDBBE....BF....8EC2B9....F3A54A4D75")) {
|
|
sVersion = "5.1";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |