Detect-It-Easy/db/PE/Software_Compress.2.sg
2024-11-12 20:11:38 +03:00

15 lines
No EOL
407 B
JavaScript

// Detect It Easy: detection rule file
init("packer", "Software Compress");
function detect() {
if (PE.compareEP("E9BE000000608B7424248B7C2428FCB28033DBA4B302E86D0000")) {
sVersion = "1.2";
bDetected = true;
} else if (PE.compareEP("E800000000812C24AA1A41005DE800000000832C246E8B855D1A4100")) {
sVersion = "1.4 LITE";
bDetected = true;
}
return result();
}