mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
18 lines
No EOL
513 B
JavaScript
Executable file
18 lines
No EOL
513 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("compiler", "SP-FORTH");
|
|
|
|
function detect() {
|
|
if (Binary.compare("8b26....8bec83ed..e9$$$$e8$$$$83ed..8976..5eadffe0")) {
|
|
sVersion = "1.01";
|
|
sOptions = "1992 by Stroyprogress Ltd.";
|
|
bDetected = true;
|
|
} else if (Binary.compare("8b26....8bec83ed..e9$$$$e8$$$$87ec5687ec5eadffe0")) {
|
|
sVersion = "1.5";
|
|
sOptions = "1993";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |