Detect-It-Easy/db/PE/IntelliProtector.2.sg
2024-11-07 00:17:07 +03:00

17 lines
No EOL
594 B
JavaScript
Executable file

// Detect It Easy: detection rule file format
init("protector", "IntelliProtector");
function detect() {
var nLastSectionOffset = PE.section[PE.nLastSection].FileOffset;
if (PE.compare("E9........CC", nLastSectionOffset)) {
var nLastSectionSize = PE.section[PE.nLastSection].FileSize;
var nVersionOffset = PE.findString(nLastSectionOffset, nLastSectionSize, "Protected by IntelliProtector");
if (nVersionOffset != -1) {
sVersion = PE.getString(nVersionOffset + 30);
bDetected = true;
}
}
return result();
}