mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
19 lines
No EOL
473 B
JavaScript
Executable file
19 lines
No EOL
473 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("protector", "HackStop");
|
|
|
|
function detect() {
|
|
if (Binary.compare("fabe....ffe6")) {
|
|
sVersion = "1.17cr";
|
|
bDetected = true;
|
|
} else if (Binary.compare("fabd....ffe5")) {
|
|
sVersion = "1.13cs";
|
|
bDetected = true;
|
|
} else if (Binary.compare("fabb....ffe3")) {
|
|
sVersion = "1.14s";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |