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

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();
}