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 (MSDOS.compareEP("b8....8ed88bec81c5....c746......e8$$$$8b46..25....0d....cd218b46..83ed..8946..c3")) {
|
|
sVersion = "2.5.13";
|
|
bDetected = true;
|
|
}
|
|
if (MSDOS.compareEP("b8....8ed88bec81c5....c746......e8$$$$e8$$$$8bc583ed..8946..c3")) {
|
|
sVersion = "2.5.x";
|
|
sOptions = "1994";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |