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

18 lines
No EOL
498 B
JavaScript
Executable file

// Detect It Easy: detection rule file
// Author: hypn0 <hypn0@mail.ru>
init("compiler", "BAT2EXEC");
function detect() {
if (COM.compare("eb$$fcbd....8b....8b......8b......b44acd21a1....8986")) {
sOptions = "by Douglas Boling";
sVersion = "1.5";
bDetected = true;
} else if (COM.compare("fcbd....8b....8b......8b......b44acd21a1....8986")) {
sOptions = "by Douglas Boling";
sVersion = "1.2";
bDetected = true;
}
return result();
}