mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
15 lines
No EOL
407 B
JavaScript
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();
|
|
} |