Detect-It-Easy/db/MSDOS/protector_ComProtector.2.sg
2026-05-25 21:03:46 +03:00

16 lines
No EOL
473 B
JavaScript
Executable file

// Detect It Easy: detection rule file
// Author: horsicq <horsicq@gmail.com>
meta("protector", "ComProtector");
function detect() {
if (MSDOS.compareEP("E9....E8....5E8BEE81......8D......B9....F61446E2..4B")) {
sVersion = "1.0b";
bDetected = true;
} else if (MSDOS.compareEP("E9....B9....BB....BF....2E....34..FEC8C0....2E....2E....2E....4743E2")) {
sVersion = "1.0";
bDetected = true;
}
return result();
}