mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
18 lines
No EOL
498 B
JavaScript
Executable file
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();
|
|
} |