mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
17 lines
No EOL
456 B
JavaScript
Executable file
17 lines
No EOL
456 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("protector", "UnPackStop");
|
|
|
|
function detect() {
|
|
if (Binary.compare("68....c3")) {
|
|
var nOffset = Binary.readWord(1) - 256;
|
|
if (Binary.compare("8bc450be....bf....eb$$b8....501f58eb", nOffset)) {
|
|
sVersion = "0.95";
|
|
sOptions = "by Szaszi (Szabo Laszlo)";
|
|
bDetected = true;
|
|
}
|
|
}
|
|
|
|
return result();
|
|
} |